body.preloader-active {
  overflow: hidden;
}

body #preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #000000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

body #preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body #preloader .container-preloader {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 32px;
  background: #000000;
  overflow: hidden;
}

body #preloader .container-preloader::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(62vw, 480px);
  height: min(62vw, 480px);
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translate(-50%, -50%);
  filter: blur(12px);
  animation: brand-preloader-pulse 2s ease-in-out infinite;
}

body #preloader .brand-preloader {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-transform: uppercase;
}

body #preloader .brand-preloader__line {
  overflow: hidden;
}

body #preloader .brand-preloader__word {
  display: block;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.42em;
  opacity: 0;
  transform: translateY(120%);
  will-change: transform, opacity, letter-spacing, color;
}

body #preloader .brand-preloader__word--pattern {
  color: #f4f4f4;
  animation:
    brand-preloader-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards,
    brand-preloader-pattern 0.95s ease 0.95s forwards;
}

body #preloader .brand-preloader__word--group {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 12ch;
  animation:
    brand-preloader-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

body #preloader .brand-preloader__label {
  grid-area: 1 / 1;
  display: block;
  white-space: nowrap;
  transform-origin: center;
  will-change: transform, opacity, letter-spacing, color;
}

body #preloader .brand-preloader__label--group-default {
  color: rgba(255, 255, 255, 0.48);
  animation: brand-preloader-group-default 0.88s ease 1.02s forwards;
}

body #preloader .brand-preloader__label--group-alt {
  color: rgba(255, 255, 255, 0);
  font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 0.28em;
  opacity: 0;
  transform: translateY(18%) scale(0.94);
  animation: brand-preloader-group-alt 0.88s ease 1.02s forwards;
}

body #preloader .brand-preloader__bar {
  position: relative;
  width: min(28vw, 180px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  transform: scaleX(0);
  transform-origin: center;
  animation: brand-preloader-bar 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.24s
    forwards;
}

body #preloader .brand-preloader__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-110%);
  animation: brand-preloader-sheen 0.9s ease 0.72s forwards;
}

body #preloader .container-preloader.loaded .brand-preloader {
  opacity: 0;
  transform: translateY(-14px) scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

@keyframes brand-preloader-reveal {
  from {
    opacity: 0;
    transform: translateY(120%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brand-preloader-bar {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes brand-preloader-sheen {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(110%);
  }
}

@keyframes brand-preloader-pattern {
  0% {
    letter-spacing: 0.52em;
  }

  45% {
    letter-spacing: 0.66em;
  }

  100% {
    letter-spacing: 0.46em;
  }
}

@keyframes brand-preloader-group-default {
  0% {
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.5em;
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }

  45% {
    color: #ffffff;
    letter-spacing: 0.68em;
    opacity: 1;
    transform: translateY(0) scaleX(1.06);
  }

  100% {
    color: rgba(255, 255, 255, 0);
    letter-spacing: 0.82em;
    opacity: 0;
    transform: translateY(-2%) scaleX(1.14);
  }
}

@keyframes brand-preloader-group-alt {
  0% {
    color: rgba(255, 255, 255, 0);
    letter-spacing: 0.28em;
    opacity: 0;
    transform: translateY(18%) scale(0.94);
  }

  44% {
    color: rgba(255, 255, 255, 0);
    letter-spacing: 0.32em;
    opacity: 0;
    transform: translateY(18%) scale(0.94);
  }

  72% {
    color: #ffffff;
    letter-spacing: 0.4em;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.36em;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes brand-preloader-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.92);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@media only screen and (max-width: 767px) {
  body #preloader .brand-preloader {
    gap: 14px;
  }

  body #preloader .brand-preloader__word {
    letter-spacing: 0.28em;
  }

  body #preloader .brand-preloader__word--group {
    min-width: 10ch;
  }

  body #preloader .brand-preloader__bar {
    width: min(42vw, 140px);
  }
}

.service-box {
  position: relative;
}

.service-box .service-box__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.about-outcomes-area {
  padding: 24px 0 110px;
}

.about-outcomes-area-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.about-outcomes-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.about-outcomes-header .text {
  margin: 0 auto;
  max-width: 760px;
}

.about-outcomes-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(420px, 680px) minmax(
      240px,
      1fr
    );
  align-items: center;
  gap: 38px;
}

.about-outcomes-column {
  display: grid;
  gap: 36px;
}

.about-outcomes-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.about-outcomes-metric {
  position: relative;
  max-width: 320px;
}

.about-outcomes-column--left .about-outcomes-metric {
  justify-self: end;
  text-align: left;
}

.about-outcomes-column--right .about-outcomes-metric {
  justify-self: start;
  text-align: left;
}

.about-outcomes-metric::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 110px;
  height: 2px;
  background: rgba(17, 17, 17, 0.7);
}

.about-outcomes-column--left .about-outcomes-metric::after {
  right: -118px;
  transform-origin: right center;
}

.about-outcomes-column--left
  .about-outcomes-metric:first-child::after {
  transform: rotate(44deg);
}

.about-outcomes-column--left
  .about-outcomes-metric:last-child::after {
  transform: rotate(-20deg);
}

.about-outcomes-column--right .about-outcomes-metric::after {
  left: -118px;
  transform-origin: left center;
}

.about-outcomes-column--right
  .about-outcomes-metric:first-child::after {
  transform: rotate(-44deg);
}

.about-outcomes-column--right
  .about-outcomes-metric:last-child::after {
  transform: rotate(18deg);
}

.about-outcomes-metric__value {
  display: inline-block;
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 14px;
}

.about-outcomes-metric__title {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 14px;
}

.about-outcomes-metric__text {
  color: #bdbdbd;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.about-outcomes-metric--blue .about-outcomes-metric__value,
.about-outcomes-badge--blue .about-outcomes-badge__eyebrow {
  color: #2957c8;
}

.about-outcomes-metric--green .about-outcomes-metric__value,
.about-outcomes-badge--green .about-outcomes-badge__eyebrow {
  color: #17c45c;
}

.about-outcomes-diagram {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1.04;
}

.about-outcomes-diagram::before {
  content: "";
  position: absolute;
  inset: 18% 16%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.86) 0%,
    rgba(255, 255, 255, 0) 72%
  );
  filter: blur(10px);
}

.about-outcomes-circle {
  position: absolute;
  top: 12%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18%;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.08);
  text-align: center;
}

.about-outcomes-circle span {
  color: #111111;
  font-size: clamp(24px, 2.8vw, 48px);
  font-weight: 500;
  line-height: 1.18;
  max-width: 12ch;
}

.about-outcomes-circle--left {
  left: 5%;
  background: radial-gradient(
    circle at 28% 28%,
    rgba(80, 171, 245, 0.96) 0%,
    rgba(109, 181, 238, 0.78) 35%,
    rgba(123, 192, 242, 0.18) 100%
  );
}

.about-outcomes-circle--right {
  right: 5%;
  background: radial-gradient(
    circle at 72% 28%,
    rgba(83, 227, 152, 0.94) 0%,
    rgba(64, 214, 135, 0.78) 38%,
    rgba(130, 228, 176, 0.18) 100%
  );
}

.about-outcomes-overlap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  min-width: min(44vw, 270px);
  padding: 18px 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.about-outcomes-overlap span {
  color: #111111;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}

.about-outcomes-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 720px);
}

.about-outcomes-badge {
  position: relative;
  padding: 26px 24px 0;
  text-align: center;
}

.about-outcomes-badge::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 2px;
  height: 48px;
  background: rgba(17, 17, 17, 0.7);
  transform: translateX(-50%) rotate(8deg);
}

.about-outcomes-badge--green::before {
  transform: translateX(-50%) rotate(-8deg);
}

.about-outcomes-badge__eyebrow {
  display: block;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

.about-outcomes-badge__text {
  color: #bdbdbd;
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

@media only screen and (max-width: 1399px) {
  .about-outcomes-layout {
    grid-template-columns: minmax(220px, 1fr) minmax(360px, 560px) minmax(
        220px,
        1fr
      );
    gap: 26px;
  }

  .about-outcomes-metric {
    max-width: 290px;
  }

  .about-outcomes-metric__text {
    font-size: 18px;
  }

  .about-outcomes-metric::after {
    width: 84px;
  }

  .about-outcomes-column--left .about-outcomes-metric::after {
    right: -92px;
  }

  .about-outcomes-column--right .about-outcomes-metric::after {
    left: -92px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-outcomes-area {
    padding: 10px 0 100px;
  }

  .about-outcomes-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-outcomes-center {
    order: -1;
  }

  .about-outcomes-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .about-outcomes-column--left .about-outcomes-metric,
  .about-outcomes-column--right .about-outcomes-metric {
    justify-self: stretch;
    max-width: none;
  }

  .about-outcomes-metric::after {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .about-outcomes-area {
    padding: 0 0 84px;
  }

  .about-outcomes-area-inner {
    gap: 48px;
  }

  .about-outcomes-header {
    max-width: 680px;
  }

  .about-outcomes-diagram {
    max-width: 560px;
  }

  .about-outcomes-circle span {
    font-size: clamp(22px, 4.1vw, 36px);
  }

  .about-outcomes-bottom {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .about-outcomes-area {
    padding: 0 0 72px;
  }

  .about-outcomes-header {
    align-items: flex-start;
    text-align: left;
  }

  .about-outcomes-header .text {
    max-width: none;
  }

  .about-outcomes-layout {
    gap: 42px;
  }

  .about-outcomes-column {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-outcomes-diagram {
    aspect-ratio: 1;
    max-width: 100%;
  }

  .about-outcomes-circle {
    top: 16%;
    width: 56%;
    padding: 16%;
  }

  .about-outcomes-circle--left {
    left: 0;
  }

  .about-outcomes-circle--right {
    right: 0;
  }

  .about-outcomes-overlap {
    min-width: auto;
    width: calc(100% - 72px);
    padding: 16px 18px;
  }

  .about-outcomes-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-outcomes-badge {
    padding-top: 18px;
  }

  .about-outcomes-badge::before {
    display: none;
  }

  .about-outcomes-metric__text,
  .about-outcomes-badge__text {
    font-size: 17px;
  }
}

.about-outcomes-area {
  padding: 0 0 100px;
}

.about-outcomes-layout {
  grid-template-columns: minmax(240px, 1fr) minmax(380px, 560px) minmax(
      240px,
      1fr
    );
  gap: 26px;
}

.about-outcomes-metric {
  max-width: 290px;
}

.about-outcomes-metric__value {
  font-size: clamp(54px, 5vw, 78px);
}

.about-outcomes-metric__title {
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.06;
}

.about-outcomes-metric__text {
  font-size: 17px;
  line-height: 1.55;
}

.about-outcomes-diagram {
  width: min(100%, 540px);
  aspect-ratio: 1 / 1;
}

.about-outcomes-circle {
  top: 50%;
  width: 58%;
  padding: 0 12%;
  box-sizing: border-box;
  transform: translateY(-50%);
}

.about-outcomes-circle span {
  font-size: clamp(15px, 1.35vw, 24px);
  line-height: 1.08;
  max-width: 6ch;
}

.about-outcomes-circle--left {
  justify-content: flex-start;
  left: 1%;
  padding-left: 10%;
  padding-right: 24%;
}

.about-outcomes-circle--right {
  justify-content: flex-end;
  right: 3%;
  padding-left: 24%;
  padding-right: 12%;
}

.about-outcomes-circle--left span {
  text-align: left;
}

.about-outcomes-circle--right span {
  text-align: right;
}

.about-outcomes-overlap {
  width: min(42%, 180px);
  min-width: 0;
  padding: 14px 16px;
}

.about-outcomes-overlap span {
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.1;
}

.about-outcomes-bottom {
  gap: 18px;
  width: min(100%, 640px);
}

.about-outcomes-badge {
  padding-top: 12px;
}

.about-outcomes-badge__eyebrow {
  font-size: clamp(22px, 2.2vw, 36px);
}

.about-outcomes-badge__text {
  font-size: 16px;
}

@media only screen and (max-width: 1399px) {
  .about-outcomes-layout {
    grid-template-columns: minmax(220px, 1fr) minmax(340px, 500px) minmax(
        220px,
        1fr
      );
  }

  .about-outcomes-metric::after {
    width: 76px;
  }

  .about-outcomes-column--left .about-outcomes-metric::after {
    right: -84px;
  }

  .about-outcomes-column--right .about-outcomes-metric::after {
    left: -84px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-outcomes-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-outcomes-center {
    order: 0;
  }

  .about-outcomes-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .about-outcomes-area {
    padding: 0 0 70px;
  }

  .about-outcomes-diagram {
    max-width: 420px;
  }

  .about-outcomes-circle {
    width: 60%;
    padding: 0 11%;
  }

  .about-outcomes-circle span {
    font-size: clamp(13px, 3.5vw, 18px);
    max-width: 6ch;
  }

  .about-outcomes-circle--left {
    padding-left: 10%;
    padding-right: 26%;
  }

  .about-outcomes-circle--right {
    padding-left: 26%;
    padding-right: 10%;
  }

  .about-outcomes-overlap {
    width: min(46%, 190px);
    padding: 14px 16px;
  }

  .about-outcomes-overlap span {
    font-size: clamp(12px, 3vw, 15px);
  }

  .about-outcomes-column {
    grid-template-columns: 1fr;
  }

  .about-outcomes-bottom {
    grid-template-columns: 1fr;
  }
}

.header-area .main-menu .menu-item-has-children {
  position: relative;
}

.header-area .main-menu .menu-item-has-children::before {
  content: "";
  height: 24px;
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  width: 240px;
}

.header-area .main-menu .menu-item-has-children > a {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.header-area .main-menu .menu-item-has-children > a::after {
  content: "+";
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-area .main-menu .menu-item-has-children:hover > a::after,
.header-area .main-menu .menu-item-has-children:focus-within > a::after {
  opacity: 1;
  transform: rotate(45deg);
}

.header-area .main-menu .sub-menu {
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.18);
  left: 50%;
  list-style: none;
  margin: 0;
  min-width: 220px;
  opacity: 0;
  padding: 12px 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  transform: translate(-50%, 10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  visibility: hidden;
  z-index: 20;
}

.header-area .main-menu .menu-item-has-children:hover > .sub-menu,
.header-area .main-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.header-area .main-menu .sub-menu li {
  width: 100%;
}

.header-area .main-menu .sub-menu li a {
  color: #ffffff;
  display: block;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  text-transform: none;
  white-space: nowrap;
}

.header-area .main-menu .sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.offcanvas-3__menu .menu-item-has-children > a::after {
  content: " +";
}

.offcanvas-3__menu .sub-menu {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.offcanvas-3__menu .sub-menu::before {
  display: none;
}

.offcanvas-3__menu .sub-menu li {
  margin-bottom: 12px !important;
  padding-inline-start: 0;
}

.offcanvas-3__menu .sub-menu li::before {
  display: none;
}

.offcanvas-3__menu .sub-menu li a {
  background-image: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.8vh, 24px);
  line-height: 1.2;
  padding: 0;
  text-transform: none;
  -webkit-text-fill-color: initial;
  transform: none;
}

.offcanvas-3__menu .sub-menu li a:hover {
  color: #ffffff;
  letter-spacing: 0;
}

@media only screen and (max-width: 1199px) {
  .header-area .main-menu .sub-menu {
    display: none;
  }
}

.insights-page {
  padding-bottom: 110px;
}

.insights-hero {
  padding: 180px 0 60px;
}

.insights-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.insights-hero__eyebrow,
.insights-card__eyebrow,
.insights-cta__eyebrow {
  color: #17c45c;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insights-hero__title {
  color: #111111;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.95;
  margin: 0;
  text-transform: none;
}

.insights-hero__text {
  color: #4c4c4c;
  font-size: 20px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 700px;
}

.insights-grid-section {
  padding: 20px 0 40px;
}

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

.insights-card {
  background: #f6f7f8;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 34px 32px;
  scroll-margin-top: 130px;
}

.insights-card--blue {
  background: linear-gradient(180deg, #f6fbff 0%, #eef5ff 100%);
}

.insights-card--dark {
  background: linear-gradient(180deg, #181818 0%, #222222 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.insights-card--dark .insights-card__title,
.insights-card--dark .insights-card__text,
.insights-card--dark .insights-card__list li,
.insights-card--dark .insights-card__cta {
  color: #ffffff;
}

.insights-card--green {
  background: linear-gradient(180deg, #f3fff7 0%, #ebfff2 100%);
}

.insights-card--light {
  background: linear-gradient(180deg, #faf8f4 0%, #f6f1e7 100%);
}

.insights-card__title {
  color: #111111;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}

.insights-card__text {
  color: #3f3f3f;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

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

.insights-card__list li {
  color: #222222;
  font-size: 17px;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.insights-card__list li::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0.7em;
  width: 6px;
}

.insights-card__list li + li {
  margin-top: 10px;
}

.insights-card__cta {
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: auto;
  text-transform: uppercase;
}

.insights-cta {
  padding-top: 30px;
}

.insights-cta__inner {
  align-items: center;
  background: #111111;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 52px 24px;
  text-align: center;
}

.insights-cta__title {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  margin: 0;
  max-width: 860px;
  text-transform: none;
}

@media only screen and (max-width: 991px) {
  .insights-hero {
    padding: 150px 0 40px;
  }

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

  .insights-hero__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .insights-page {
    padding-bottom: 80px;
  }

  .insights-hero {
    padding: 130px 0 30px;
  }

  .insights-hero__inner {
    align-items: flex-start;
    text-align: left;
  }

  .insights-hero__text {
    margin: 0;
  }

  .insights-card {
    border-radius: 22px;
    padding: 28px 22px;
  }

  .insights-card__text,
  .insights-card__list li {
    font-size: 16px;
  }

  .insights-cta__inner {
    align-items: flex-start;
    border-radius: 26px;
    padding: 40px 22px;
    text-align: left;
  }
}

.technology-showcase {
  padding: 180px 0 54px;
}

.technology-showcase__inner {
  display: flex;
  flex-direction: column;
  gap: 68px;
}

.technology-showcase__intro {
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  padding-top: 28px;
}

.technology-showcase__lead,
.technology-showcase__aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.technology-showcase__eyebrow {
  color: #17c45c;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-showcase__eyebrow::before {
  background: currentColor;
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: 14px;
  margin-top: 4px;
  width: 10px;
}

.technology-showcase__title {
  color: #111111;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  margin: 0;
  max-width: 780px;
  text-transform: none;
}

.technology-showcase__text {
  color: #2e2e34;
  font-size: 21px;
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}

.technology-showcase__text strong {
  color: #111111;
  font-weight: 700;
}

.technology-showcase__cta {
  padding-top: 10px;
}

.technology-card-grid {
  border-left: 1px dashed rgba(17, 17, 17, 0.14);
  border-top: 1px dashed rgba(17, 17, 17, 0.14);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.technology-card {
  background: #ffffff;
  border-bottom: 1px dashed rgba(17, 17, 17, 0.14);
  border-right: 1px dashed rgba(17, 17, 17, 0.14);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 220px;
  padding: 28px 24px 24px;
  position: relative;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.technology-card:hover {
  background: #f7f8ff;
  transform: translateY(-4px);
}

.technology-card__arrow {
  align-self: flex-end;
  color: #17c45c;
  font-size: 28px;
  line-height: 1;
}

.technology-card__logo {
  align-items: center;
  color: #101010;
  display: flex;
  font-size: 50px;
  height: 64px;
  justify-content: flex-start;
}

.technology-card__logo .fa-leaf {
  color: #2d9f52;
}

.technology-card__logo--badge {
  font-size: 0;
}

.technology-card__badge {
  align-items: center;
  background: #17c45c;
  border-radius: 16px;
  color: #ffffff;
  display: inline-flex;
  font-size: 22px;
  font-weight: 700;
  height: 56px;
  justify-content: center;
  letter-spacing: -0.03em;
  min-width: 56px;
  padding: 0 14px;
}

.technology-card__badge--wide {
  min-width: 76px;
}

.technology-card__name {
  color: #101010;
  font-size: 18px;
  line-height: 1.1;
  margin: auto 0 0;
  text-transform: none;
}

.technology-tabs-section {
  padding: 12px 0 120px;
}

.technology-tabs-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.technology-tabs-section__title {
  color: #111111;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 0.98;
  margin: 0;
  max-width: 880px;
  text-transform: none;
}

.technology-tabs-nav {
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 24px;
  padding: 0 0 24px;
}

.technology-tabs-nav--skills {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.technology-tabs-nav .nav-item {
  margin: 0;
}

.technology-tabs-nav__button {
  background: #f3f3f3;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  box-shadow: none;
  color: #161616;
  display: block;
  font-size: 18px;
  line-height: 1.1;
  min-height: 106px;
  padding: 24px 18px;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  width: 100%;
}

.technology-tabs-nav__button.active,
.technology-tabs-nav__button:hover {
  background: #17c45c;
  border-color: #17c45c;
  color: #ffffff;
}

.technology-tabs-content .tab-pane {
  display: none;
}

.technology-tabs-content .tab-pane.active,
.technology-tabs-content .tab-pane.show {
  display: block;
}

.technology-tab-panel {
  background-color: #ffffff;
  background-image: radial-gradient(
    rgba(63, 69, 82, 0.16) 0.8px,
    transparent 0.8px
  );
  background-size: 18px 18px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 24px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  padding: 36px;
}

.technology-tab-panel__main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  padding: 18px 16px 18px 10px;
}

.technology-tab-panel__icon {
  align-items: center;
  background: #131313;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-size: 30px;
  height: 76px;
  justify-content: center;
  width: 76px;
}

.technology-tab-panel__title {
  color: #131313;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 0.98;
  margin: 0;
  text-transform: none;
}

.technology-tab-panel__subtitle {
  color: #2a2f3b;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}

.technology-tab-panel__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.technology-tab-panel__list li {
  align-items: flex-start;
  color: #1f2530;
  display: flex;
  font-size: 22px;
  gap: 18px;
  line-height: 1.55;
}

.technology-tab-panel__list-icon {
  align-items: center;
  background: #17c45c;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 18px;
  height: 44px;
  justify-content: center;
  margin-top: 2px;
  width: 44px;
}

.technology-tab-panel__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.technology-tab-panel__fact {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  gap: 20px;
  min-height: 132px;
  padding: 28px 26px;
}

.technology-tab-panel__fact-icon {
  align-items: center;
  border: 2px solid #17c45c;
  color: #17c45c;
  display: inline-flex;
  flex: 0 0 40px;
  font-size: 20px;
  height: 40px;
  justify-content: center;
  margin-top: 6px;
  width: 40px;
}

.technology-tab-panel__fact p {
  color: #212735;
  font-size: 21px;
  line-height: 1.6;
  margin: 0;
}

@media only screen and (max-width: 1399px) {
  .technology-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .technology-card__name {
    font-size: 24px;
  }

  .technology-tabs-nav__button {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1199px) {
  .technology-showcase {
    padding-top: 155px;
  }

  .technology-showcase__intro,
  .technology-tab-panel {
    grid-template-columns: 1fr;
  }

  .technology-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .technology-tabs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-tab-panel__main {
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .technology-showcase {
    padding: 130px 0 40px;
  }

  .technology-showcase__inner {
    gap: 42px;
  }

  .technology-showcase__intro {
    gap: 28px;
    padding-top: 20px;
  }

  .technology-showcase__text {
    font-size: 18px;
  }

  .technology-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-card {
    gap: 18px;
    min-height: 180px;
    padding: 22px 18px 20px;
  }

  .technology-card__arrow {
    font-size: 22px;
  }

  .technology-card__logo {
    font-size: 42px;
    height: 52px;
  }

  .technology-card__badge {
    font-size: 18px;
    height: 48px;
    min-width: 48px;
  }

  .technology-card__badge--wide {
    min-width: 66px;
  }

  .technology-card__name {
    font-size: 22px;
  }

  .technology-tabs-section {
    padding-bottom: 80px;
  }

  .technology-tabs-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 18px;
    scrollbar-width: none;
  }

  .technology-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .technology-tabs-nav .nav-item {
    flex: 0 0 250px;
  }

  .technology-tabs-nav__button {
    font-size: 20px;
    min-height: 88px;
    padding: 18px 16px;
  }

  .technology-tab-panel {
    border-radius: 18px;
    padding: 22px 18px;
  }

  .technology-tab-panel__icon {
    font-size: 24px;
    height: 62px;
    width: 62px;
  }

  .technology-tab-panel__subtitle {
    font-size: 21px;
  }

  .technology-tab-panel__list li,
  .technology-tab-panel__fact p {
    font-size: 18px;
  }

  .technology-tab-panel__list-icon {
    flex-basis: 38px;
    font-size: 16px;
    height: 38px;
    width: 38px;
  }

  .technology-tab-panel__fact {
    min-height: auto;
    padding: 20px 18px;
  }

  .technology-tab-panel__fact-icon {
    flex-basis: 34px;
    font-size: 16px;
    height: 34px;
    margin-top: 4px;
    width: 34px;
  }
}
