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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Exo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #58B02B;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
a:hover {
  color: rgb(57.2602739726, 114.5205479452, 27.9794520548);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #58B02B;
  box-shadow: 0 0 0 2px rgba(88, 176, 43, 0.2);
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

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

.text-right {
  text-align: right;
}

.text-primary {
  color: #58B02B;
}

.text-secondary {
  color: #2c3e50;
}

.text-muted {
  color: rgb(127.5, 127.5, 127.5);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 2rem;
}

html, body {
  overflow-x: hidden;
}

.header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  position: fixed;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 100%;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  min-height: 80px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 0;
}
.header__logo-icon {
  height: 32px;
  width: auto;
}
.header__logo-brandname {
  height: 20px;
  width: auto;
  filter: brightness(0);
  transition: filter 0.3s ease-in-out;
}
.header .menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header .menu-toggle {
    display: none;
  }
}
.header .menu-toggle__bar {
  width: 24px;
  height: 2px;
  background-color: #333;
  margin: 3px 0;
  transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out, background-color 0.3s ease-in-out;
}
.header .menu-toggle--active .menu-toggle__bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.header .menu-toggle--active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle--active .menu-toggle__bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.header__nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 999;
  padding: 2rem 0;
  overflow-y: auto;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.header__nav.nav--open {
  display: block;
  opacity: 1;
  visibility: visible;
}
.header__nav .nav {
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.header__nav .nav__item {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header__nav .nav__item:last-child {
  border-bottom: none;
}
.header__nav .nav__link {
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
  display: block;
}
@media (min-width: 768px) {
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  .header__nav.nav--open {
    display: flex;
  }
  .header__nav .nav {
    flex-direction: row;
    padding: 0;
  }
  .header__nav .nav__item {
    border-bottom: none;
    margin-right: 1rem;
  }
  .header__nav .nav__link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}
.header--dark {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.header--dark .header__logo-brandname {
  filter: brightness(0) invert(1);
}
.header--dark .menu-toggle__bar {
  background-color: white;
}
@media (min-width: 768px) {
  .header--dark .header__nav {
    background: transparent;
  }
  .header--dark .header__nav .nav__link {
    color: white;
  }
  .header--dark .header__nav .nav__link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .header--dark .header__nav .nav__link.nav__link--active {
    color: white;
    border-bottom-color: #22c55e;
  }
}

.main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.footer {
  background-color: #2c3e50;
  color: white;
  padding: 2rem 0;
  margin-top: auto;
}
.footer__container {
  text-align: center;
}
.footer__links {
  margin-bottom: 1rem;
}
.footer__links a {
  color: white;
  margin: 0 0.5rem;
}
.footer__links a:hover {
  color: #58B02B;
}
.footer__copyright {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hero, .home__hero {
  background: linear-gradient(135deg, #58B02B, #2c3e50);
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero__cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Exo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hero__cta {
  background-color: #58B02B;
  color: white;
}
.hero__cta:hover {
  background-color: rgb(67.5068493151, 135.0136986301, 32.9863013699);
}
.hero__cta {
  background-color: white;
  color: #58B02B;
}
.hero__cta:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.section, .home__cta, .home__features {
  padding: 3rem 0;
  overflow-x: hidden;
  position: relative;
}
.section--light {
  background-color: #f0f0f0;
}
.section--white {
  background-color: #ffffff;
}
.section--dark {
  background-color: #000000;
  color: #ffffff;
}
.section--dark .section__title,
.section--dark .section__subtitle {
  color: inherit;
}
.section__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
@media (min-width: 576px) {
  .section__title {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .section__title {
    font-size: 40px !important;
    line-height: 40px;
  }
}
.section__subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: #666666;
  font-size: 1.125rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Exo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn--primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Exo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn--primary {
  background-color: #58B02B;
  color: white;
}
.btn--primary:hover {
  background-color: rgb(67.5068493151, 135.0136986301, 32.9863013699);
}
.btn--secondary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Exo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn--secondary {
  background-color: transparent;
  color: #58B02B;
  border: 2px solid #58B02B;
}
.btn--secondary:hover {
  background-color: #58B02B;
  color: white;
}
.btn--large {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease-in-out;
}
.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card__header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.card__title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.card__content {
  margin-bottom: 1rem;
}
.card__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.container, .header__container, .footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .container, .header__container, .footer__container {
    padding: 0 1.5rem;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}

.col {
  flex: 1;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .col {
    flex: 0 0 50%;
  }
}
@media (min-width: 992px) {
  .col {
    flex: 0 0 33.333%;
  }
}

.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border-left: 4px solid;
}
.alert--success {
  background-color: #d4edda;
  border-color: #28a745;
  color: #155724;
}
.alert--warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}
.alert--error {
  background-color: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
}
.alert--info {
  background-color: #d1ecf1;
  border-color: #17a2b8;
  color: #0c5460;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.15s ease-in-out;
}
.form-control:focus {
  outline: none;
  border-color: #58B02B;
  box-shadow: 0 0 0 2px rgba(88, 176, 43, 0.2);
}

.nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin-right: 1rem;
}
.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
}
.nav__link:hover, .nav__link--active {
  color: #58B02B;
}
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: #22c55e;
}
@media (max-width: 767px) {
  .nav__link--active::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .nav__item:has(.nav__link--active) {
    border-bottom: 3px solid #22c55e;
    border-left: none;
  }
}

.home__features .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .home__features .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .home__features .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.home__cta {
  background: linear-gradient(135deg, #58B02B, #2c3e50);
  color: white;
  text-align: center;
}
.home__cta .btn {
  background-color: white;
  color: #58B02B;
}
.home__cta .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.contact__form {
  max-width: 600px;
  margin: 0 auto;
}
.contact__form .form-group {
  margin-bottom: 1.5rem;
}
.contact__form .btn {
  width: 100%;
}
@media (min-width: 576px) {
  .contact__form .btn {
    width: auto;
  }
}
.contact__info {
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__info {
    text-align: left;
  }
}

.error-404 {
  text-align: center;
  padding: 3rem 0;
}
.error-404__title {
  font-size: 6rem;
  color: #58B02B;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .error-404__title {
    font-size: 4rem;
  }
}
.error-404__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.error-404__description {
  margin-bottom: 2rem;
  color: #666666;
}

a {
  color: #39b2ef;
}

.ascendad-hero {
  background: linear-gradient(135deg, #101c2d 0%, #000000 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: clip;
  padding-top: 100px;
}
.ascendad-hero .hero__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}
.ascendad-hero .hero__bg-icon {
  position: absolute;
  bottom: 0;
  right: -19%;
  height: calc(100% - 80px);
  width: 100%;
  background-image: url("../../src/images/ascendad-icon.svg");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
@media (max-width: 575px) {
  .ascendad-hero .hero__bg-icon {
    mix-blend-mode: screen;
    opacity: 0.5;
    right: -46%;
  }
}
.ascendad-hero .container, .ascendad-hero .header__container, .ascendad-hero .footer__container {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
}
.ascendad-hero .hero__title {
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-align: left;
  max-width: 650px;
}
@media (max-width: 575px) {
  .ascendad-hero .hero__title {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.ascendad-hero .hero__legend {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-align: left;
  max-width: 650px;
}
.ascendad-hero .hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 3rem;
  color: rgb(255, 255, 255);
  max-width: 700px;
  text-align: left;
  opacity: 1;
}
.ascendad-hero .hero__subtitle--strong {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
  color: #fff;
  font-weight: 800;
  max-width: 700px;
  text-align: left;
  opacity: 1;
}
.ascendad-hero .hero__metrics {
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  margin: -1rem 0 2rem;
  padding: 0;
  list-style: none;
  color: #fbbf24;
}
.ascendad-hero .hero__metrics .hero__metric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fbbf24;
}
.ascendad-hero .hero__metrics .hero__metric span {
  color: #fbbf24;
  color: #fff;
}
.ascendad-hero .hero__metrics .hero__metric img {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(75%) sepia(95%) saturate(2000%) hue-rotate(5deg) brightness(1.1);
}
.ascendad-hero .hero__metrics .hero__metric img.flipping {
  animation: flipToCoin 0.6s ease-in-out;
}
.ascendad-hero .hero__metrics .hero__metric img.coin-active {
  filter: brightness(0) saturate(100%) invert(75%) sepia(95%) saturate(2000%) hue-rotate(5deg) brightness(1.1);
}
.ascendad-hero .hero__metrics .hero__metric img.flipping-back {
  animation: flipBack 0.6s ease-in-out;
}
.ascendad-hero .hero__metrics .hero__metric img.bouncing {
  animation: bounce 1s ease;
}
.ascendad-hero .hero__metrics .hero__metric img.bouncing-flip {
  animation: bounceAndFlip 1s ease-out;
}
@media (max-width: 575px) {
  .ascendad-hero .hero__metrics {
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
  }
}
.ascendad-hero .hero__ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 1rem;
}
.ascendad-hero .hero__ctas .btn {
  font-weight: 600;
}
.ascendad-hero .hero__ctas .btn.btn--primary {
  background: linear-gradient(90deg, #1C6B36 0%, #58B02B 100%);
  transition: all 0.3s ease;
}
.ascendad-hero .hero__ctas .btn.btn--primary:hover {
  background: linear-gradient(90deg, #1C6B36 0%, #1C6B36 100%);
  color: #fff;
}
.ascendad-hero .hero__ctas .btn.btn--secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
.ascendad-hero .hero__ctas .btn.btn--secondary:hover {
  background-color: white;
  color: #1a365d;
}

.icon-rotator {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center right;
  -webkit-mask-position: center right;
  mask-size: contain;
  -webkit-mask-size: contain;
  background: transparent;
}

.icon-rotator__layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  animation: icon-rotator-zoom 14s ease-in-out infinite;
  transform-origin: center;
  mask-image: inherit;
  -webkit-mask-image: inherit;
  mask-repeat: inherit;
  -webkit-mask-repeat: inherit;
  mask-position: inherit;
  -webkit-mask-position: inherit;
  mask-size: inherit;
  -webkit-mask-size: inherit;
}

.icon-rotator__layer--visible {
  opacity: 1;
  z-index: 1;
}

@keyframes icon-rotator-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
#engagement {
  position: relative;
  overflow: visible;
  background: linear-gradient(90deg, #1c416b 0%, #2b92b0 100%);
}
#engagement.section, #engagement.home__features, #engagement.home__cta {
  padding: 0;
}
#engagement .container, #engagement .header__container, #engagement .footer__container {
  position: relative;
  z-index: 2;
}
#engagement .engagement-content {
  text-align: center;
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  #engagement .engagement-content {
    padding: 3rem 3rem;
  }
}
#engagement .engagement-content span {
  display: block;
  width: 100%;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.6rem;
  padding-bottom: 10px;
}
#engagement .engagement-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #engagement .engagement-content p {
    font-size: 1.3rem;
  }
}

.engagement-content__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .engagement-content__icons {
    gap: 2rem;
    margin-bottom: 1rem;
  }
}
.engagement-content__icons span {
  display: none !important;
}

.engagement-content__icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .engagement-content__icon {
    font-size: 1.1rem;
    font-weight: 800;
  }
}
.engagement-content__icon span {
  display: none !important;
}
.engagement-content__icon img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .engagement-content__icon img {
    width: 32px;
    height: 32px;
  }
}
.engagement-content__icon img.flipping {
  animation: flipToCoin 0.6s ease-in-out;
}
.engagement-content__icon img.coin-active {
  filter: sepia(100%) saturate(800%) hue-rotate(15deg) brightness(2.3) contrast(1.3);
}
.engagement-content__icon img.flipping-back {
  animation: flipBack 0.6s ease-in-out;
}
.engagement-content__icon img.bouncing {
  animation: bounce 1s ease;
}
.engagement-content__icon img.bouncing-flip {
  animation: bounceAndFlip 1s ease-out;
}

#pillars {
  position: relative;
  overflow: visible;
}
#pillars .dots-background {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 500px;
  mask-image: url("../../src/images/dots-wave.svg");
  mask-size: cover;
  mask-position: center top;
  mask-repeat: no-repeat;
}
#pillars .imagewrapper {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 70%;
  top: 15%;
  overflow: visible;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}
#pillars .imagewrapper.icon-rotator {
  mask-position: center right;
  transform: translateX(-5%);
}
#pillars .container, #pillars .header__container, #pillars .footer__container {
  overflow: visible;
  text-align: center;
  position: relative;
  z-index: 1;
}
#pillars .container .section__title, #pillars .header__container .section__title, #pillars .footer__container .section__title {
  display: block;
  margin-top: 1rem;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  color: #333;
}

#people-proud {
  position: relative;
  overflow: visible;
}
#people-proud .dots-background {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 500px;
  mask-image: url("../../src/images/dots-wave.svg");
  mask-size: cover;
  mask-position: center top;
  mask-repeat: no-repeat;
}
#people-proud .imagewrapper {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 70%;
  top: 15%;
  overflow: visible;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}
#people-proud .imagewrapper.icon-rotator {
  mask-position: center right;
  transform: translateX(-5%);
}
#people-proud .container, #people-proud .header__container, #people-proud .footer__container {
  overflow: visible;
  text-align: center;
  position: relative;
  z-index: 1;
}
#people-proud .container .section__title, #people-proud .header__container .section__title, #people-proud .footer__container .section__title {
  display: block;
  margin-top: 1rem;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  color: #333;
}
#people-proud .pillar-card__title, #people-proud .solution-card__title {
  font-size: 2.15rem;
}
#people-proud .people-testimonials {
  position: relative;
  min-height: 400px;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #people-proud .people-testimonials {
    grid-column: 1;
    padding-right: 2rem;
    align-self: center;
  }
}
#people-proud .people-testimonials__content {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#people-proud .people-testimonials__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  z-index: 10;
}
#people-proud .people-testimonials__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
#people-proud .people-testimonials__dots .dot.active {
  background: #333;
  width: 30px;
  border-radius: 5px;
}
#people-proud .people-testimonials__dots .dot:hover {
  background: rgba(51, 51, 51, 0.6);
}
#people-proud .people-testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#people-proud .people-testimonial-item.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
#people-proud .people-testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
#people-proud .people-testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(51, 51, 51, 0.3);
  font-family: Georgia, serif;
}
#people-proud .people-testimonial-quote::after {
  content: '"';
  position: absolute;
  right: 0;
  bottom: -10px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(51, 51, 51, 0.3);
  font-family: Georgia, serif;
}
#people-proud .people-testimonial-author {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#people-proud .people-testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
#people-proud .people-testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#people-proud .people-testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.25rem;
}
#people-proud .people-testimonial-role {
  font-size: 0.95rem;
  color: rgba(51, 51, 51, 0.7);
}

@media screen and (max-width: 768px) {
  #people-proud .imagewrapper.icon-rotator {
    mask-position: center center;
    opacity: 0.15;
    width: 200%;
    left: -50%;
  }
}
@media screen and (max-width: 768px) {
  #pillars .imagewrapper.icon-rotator {
    mask-position: center center;
    opacity: 0.15;
    width: 200%;
    left: -50%;
  }
}
.pillars-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  overflow: visible;
  justify-items: stretch;
}
@media (min-width: 768px) {
  .pillars-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  #people-proud .pillars-layout {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  #people-proud .pillars-layout__content {
    grid-column: 2;
  }
}

.job-section {
  grid-column: 1;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .job-section {
    grid-column: 1/-1;
    margin-top: 3rem;
  }
}

.job-section__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e0f19;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .job-section__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.job-position {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(14, 15, 25, 0.1);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .job-position {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
  }
}
.job-position:hover {
  border-color: #39b2ef;
  box-shadow: 0 4px 12px rgba(57, 178, 239, 0.15);
  transform: translateY(-2px);
}

.jp-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .jp-details {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

.jp-position {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e0f19;
  margin-bottom: 0.5rem;
  text-align: left;
}
@media (min-width: 768px) {
  .jp-position {
    font-size: 1.2rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.jp-info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: rgba(14, 15, 25, 0.7);
}
.jp-info span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(14, 15, 25, 0.3);
}
.jp-info span:first-child {
  display: none;
}
@media (min-width: 768px) {
  .jp-info span:first-child {
    display: block;
  }
}

@media (min-width: 768px) {
  .jp-position + .jp-info {
    margin-left: auto;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  color: #39b2ef;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #39b2ef;
  transition: all 0.3s ease;
  margin-top: 1rem;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .c-button {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}
.c-button:hover {
  background-color: #39b2ef;
  color: #fff;
}
.c-button:hover .c-button-icon::after {
  background-color: #fff;
  transform: translateY(-50%) scaleX(1.3);
}
.c-button:hover .c-button-icon::before {
  transform: translate(3px, -50%) rotate(45deg);
}
.c-button .c-button-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
}
.c-button .c-button-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: #39b2ef;
  transition: transform 0.3s ease-in-out;
  z-index: 2;
}
.c-button .c-button-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: center;
  width: 6px;
  height: 6px;
  border-top: 2px solid #39b2ef;
  border-right: 2px solid #39b2ef;
  transition: all 0.3s ease-in-out;
  z-index: 3;
}
.c-button:hover .c-button-icon::before {
  border-color: #fff;
}

.pillars-layout__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  grid-column: 1;
}
@media (min-width: 768px) {
  .pillars-layout__content {
    grid-column: 2;
  }
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  overflow: visible;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .solutions-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.solutions-layout__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  grid-column: 1;
}

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

.pillars-closing {
  margin-top: 3rem;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 4px;
  position: relative;
  grid-column: 1;
}
.pillars-closing span {
  display: block;
  width: 100%;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.8rem;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .pillars-closing {
    padding: 3rem 3rem;
    margin-top: 3rem;
    grid-column: 1/-1;
  }
}
.pillars-closing__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .pillars-closing__icons {
    gap: 2rem;
    margin-bottom: 1rem;
  }
}
.pillars-closing__icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #39b2ef;
}
@media (min-width: 768px) {
  .pillars-closing__icon {
    font-size: 1.1rem;
    font-weight: 800;
  }
}
.pillars-closing__icon span {
  display: none;
}
.pillars-closing__icon img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .pillars-closing__icon img {
    width: 32px;
    height: 32px;
  }
}
.pillars-closing__icon img.flipping {
  animation: flipToCoin 0.6s ease-in-out;
}
.pillars-closing__icon img.coin-active {
  filter: sepia(100%) saturate(500%) hue-rotate(15deg) brightness(2.2) contrast(1.2);
}
.pillars-closing__icon img.flipping-back {
  animation: flipBack 0.6s ease-in-out;
}
.pillars-closing__icon img.bouncing {
  animation: bounce 1s ease;
}
.pillars-closing__icon img.bouncing-flip {
  animation: bounceAndFlip 1s ease-out;
}
.pillars-closing p {
  font-size: 1.2rem;
  color: rgba(14, 15, 25, 0.85);
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes flipToCoin {
  0% {
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(90deg) scale(1.1);
  }
  100% {
    transform: rotateY(0deg) scale(1);
  }
}
@keyframes flipBack {
  0% {
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(90deg) scale(1.1);
  }
  100% {
    transform: rotateY(0deg) scale(1);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0) scaleY(1);
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  20% {
    transform: translateY(-25px) scaleY(1.05) scaleX(0.95);
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
  }
  40% {
    transform: translateY(0) scaleY(0.9) scaleX(1.05);
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  55% {
    transform: translateY(-12px) scaleY(1.02) scaleX(0.98);
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
  }
  70% {
    transform: translateY(0) scaleY(0.95) scaleX(1.02);
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  85% {
    transform: translateY(-5px) scaleY(1.01) scaleX(0.99);
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
  }
}
@keyframes bounceAndFlip {
  0% {
    transform: translateY(0) scaleY(1) rotateY(0deg);
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  20% {
    transform: translateY(-25px) scaleY(1.05) scaleX(0.95) rotateY(180deg);
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
  }
  40% {
    transform: translateY(0) scaleY(0.9) scaleX(1.05) rotateY(360deg);
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  55% {
    transform: translateY(-12px) scaleY(1.02) scaleX(0.98) rotateY(360deg);
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
  }
  70% {
    transform: translateY(0) scaleY(0.95) scaleX(1.02) rotateY(360deg);
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  85% {
    transform: translateY(-5px) scaleY(1.01) scaleX(0.99) rotateY(360deg);
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1) rotateY(360deg);
  }
}
.pillar-card, .solution-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 2rem 2rem 0;
  text-align: left;
  min-height: 190px;
}

.pillar-card__icon {
  flex: 0 0 88px;
  height: 88px;
  border-radius: 24px;
  display: none;
}

.pillar-card__body, .solution-card__body {
  flex: 1;
  padding-left: 48px;
  position: relative;
}
.pillar-card__body::before, .solution-card__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 32px;
  height: 32px;
  background-image: url("../../src/images/ascendad-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
}

.pillar-card__title, .solution-card__title {
  font-size: 2.15rem;
  font-weight: 900;
  color: #0e0f19;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.pillar-card__title span, .solution-card__title span {
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #39b2ef;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.pillar-card__text, .solution-card__text {
  font-size: 1.2rem;
  color: rgba(14, 15, 25, 0.85);
  margin: 0;
}

#solutions {
  position: relative;
  overflow: visible;
}
#solutions .dots-background {
  transform: scaleX(-1);
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 500px;
  mask-image: url("../../src/images/dots-wave.svg");
  mask-size: cover;
  mask-position: center top;
  mask-repeat: no-repeat;
}
#solutions .imagewrapper {
  position: absolute;
  right: 0;
  top: 15%;
  width: 50%;
  height: 70%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}
#solutions .imagewrapper.icon-rotator {
  mask-position: center left;
  transform: translateX(5%);
}
#solutions .container, #solutions .header__container, #solutions .footer__container {
  position: relative;
  z-index: 1;
  text-align: center;
}
#solutions .container .section__title, #solutions .header__container .section__title, #solutions .footer__container .section__title {
  display: block;
  font-size: 2.6rem;
  color: #333;
  font-weight: 900;
  margin-top: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}
#solutions .solution-card__title {
  font-size: 2.15rem;
}

@media screen and (max-width: 768px) {
  #solutions .imagewrapper.icon-rotator {
    mask-position: center center;
    opacity: 0.15;
    width: 200%;
    left: -50%;
  }
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .solutions-grid {
    gap: 2rem;
  }
}

.solutions-cta {
  text-align: left;
}
.solutions-cta--inline {
  margin-top: 0;
}

#people-proud .btn--primary:hover,
#solutions .btn--primary:hover {
  color: #fff;
}

#technology {
  position: relative;
  overflow: visible;
}
#technology .container, #technology .header__container, #technology .footer__container {
  overflow: visible;
  max-width: 100%;
}
#technology .container h2, #technology .header__container h2, #technology .footer__container h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #333;
  margin-top: 1rem;
}
#technology .btn {
  font-weight: 600;
}
#technology .btn.btn--primary {
  background: linear-gradient(90deg, #1C6B36 0%, #58B02B 100%);
  transition: all 0.3s ease;
}
#technology .btn.btn--primary:hover {
  background: linear-gradient(90deg, #1C6B36 0%, #1C6B36 100%);
  color: #fff;
}

#container-cylinder {
  position: absolute;
  text-align: center;
  padding: 200px 0 100px 25%;
  transform: scale(2.2);
  opacity: 0.3;
  will-change: transform;
}

#frame {
  width: 56.11429px;
  transform-style: preserve-3d;
  transform: rotateX(-6deg) rotateY(20deg) rotateZ(-20deg) translate3d(0px, 0px, 0px);
}

.strips {
  -webkit-animation: spin 45s infinite linear;
  -moz-animation: spin 45s infinite linear;
  -o-animation: spin 45s infinite linear;
  transform-style: preserve-3d;
}

.strips div {
  position: absolute;
  background: url("../images/3d-text.svg");
  width: 56.11429px;
  height: 154px;
}

.strips .strip-1 {
  background-position: 0 0;
  -moz-transform: rotateY(0deg) translateZ(307.58031px);
  -ms-transform: rotateY(0deg) translateZ(307.58031px);
  -webkit-transform: rotateY(0deg) translateZ(307.58031px);
  transform: rotateY(0deg) translateZ(307.58031px);
}

.strips .strip-2 {
  background-position: 925.88571px 0;
  -moz-transform: rotateY(10.28571deg) translateZ(307.58031px);
  -ms-transform: rotateY(10.28571deg) translateZ(307.58031px);
  -webkit-transform: rotateY(10.28571deg) translateZ(307.58031px);
  transform: rotateY(10.28571deg) translateZ(307.58031px);
}

.strips .strip-3 {
  background-position: 869.77143px 0;
  -moz-transform: rotateY(20.57143deg) translateZ(307.58031px);
  -ms-transform: rotateY(20.57143deg) translateZ(307.58031px);
  -webkit-transform: rotateY(20.57143deg) translateZ(307.58031px);
  transform: rotateY(20.57143deg) translateZ(307.58031px);
}

.strips .strip-4 {
  background-position: 813.65714px 0;
  -moz-transform: rotateY(30.85714deg) translateZ(307.58031px);
  -ms-transform: rotateY(30.85714deg) translateZ(307.58031px);
  -webkit-transform: rotateY(30.85714deg) translateZ(307.58031px);
  transform: rotateY(30.85714deg) translateZ(307.58031px);
}

.strips .strip-5 {
  background-position: 757.54286px 0;
  -moz-transform: rotateY(41.14286deg) translateZ(307.58031px);
  -ms-transform: rotateY(41.14286deg) translateZ(307.58031px);
  -webkit-transform: rotateY(41.14286deg) translateZ(307.58031px);
  transform: rotateY(41.14286deg) translateZ(307.58031px);
}

.strips .strip-6 {
  background-position: 701.42857px 0;
  -moz-transform: rotateY(51.42857deg) translateZ(307.58031px);
  -ms-transform: rotateY(51.42857deg) translateZ(307.58031px);
  -webkit-transform: rotateY(51.42857deg) translateZ(307.58031px);
  transform: rotateY(51.42857deg) translateZ(307.58031px);
}

.strips .strip-7 {
  background-position: 645.31429px 0;
  -moz-transform: rotateY(61.71429deg) translateZ(307.58031px);
  -ms-transform: rotateY(61.71429deg) translateZ(307.58031px);
  -webkit-transform: rotateY(61.71429deg) translateZ(307.58031px);
  transform: rotateY(61.71429deg) translateZ(307.58031px);
}

.strips .strip-8 {
  background-position: 589.2px 0;
  -moz-transform: rotateY(72deg) translateZ(307.58031px);
  -ms-transform: rotateY(72deg) translateZ(307.58031px);
  -webkit-transform: rotateY(72deg) translateZ(307.58031px);
  transform: rotateY(72deg) translateZ(307.58031px);
}

.strips .strip-9 {
  background-position: 533.08571px 0;
  -moz-transform: rotateY(82.28571deg) translateZ(307.58031px);
  -ms-transform: rotateY(82.28571deg) translateZ(307.58031px);
  -webkit-transform: rotateY(82.28571deg) translateZ(307.58031px);
  transform: rotateY(82.28571deg) translateZ(307.58031px);
}

.strips .strip-10 {
  background-position: 476.97143px 0;
  -moz-transform: rotateY(92.57143deg) translateZ(307.58031px);
  -ms-transform: rotateY(92.57143deg) translateZ(307.58031px);
  -webkit-transform: rotateY(92.57143deg) translateZ(307.58031px);
  transform: rotateY(92.57143deg) translateZ(307.58031px);
}

.strips .strip-11 {
  background-position: 420.85714px 0;
  -moz-transform: rotateY(102.85714deg) translateZ(307.58031px);
  -ms-transform: rotateY(102.85714deg) translateZ(307.58031px);
  -webkit-transform: rotateY(102.85714deg) translateZ(307.58031px);
  transform: rotateY(102.85714deg) translateZ(307.58031px);
}

.strips .strip-12 {
  background-position: 364.74286px 0;
  -moz-transform: rotateY(113.14286deg) translateZ(307.58031px);
  -ms-transform: rotateY(113.14286deg) translateZ(307.58031px);
  -webkit-transform: rotateY(113.14286deg) translateZ(307.58031px);
  transform: rotateY(113.14286deg) translateZ(307.58031px);
}

.strips .strip-13 {
  background-position: 308.62857px 0;
  -moz-transform: rotateY(123.42857deg) translateZ(307.58031px);
  -ms-transform: rotateY(123.42857deg) translateZ(307.58031px);
  -webkit-transform: rotateY(123.42857deg) translateZ(307.58031px);
  transform: rotateY(123.42857deg) translateZ(307.58031px);
}

.strips .strip-14 {
  background-position: 252.51429px 0;
  -moz-transform: rotateY(133.71429deg) translateZ(307.58031px);
  -ms-transform: rotateY(133.71429deg) translateZ(307.58031px);
  -webkit-transform: rotateY(133.71429deg) translateZ(307.58031px);
  transform: rotateY(133.71429deg) translateZ(307.58031px);
}

.strips .strip-15 {
  background-position: 196.4px 0;
  -moz-transform: rotateY(144deg) translateZ(307.58031px);
  -ms-transform: rotateY(144deg) translateZ(307.58031px);
  -webkit-transform: rotateY(144deg) translateZ(307.58031px);
  transform: rotateY(144deg) translateZ(307.58031px);
}

.strips .strip-16 {
  background-position: 140.28571px 0;
  -moz-transform: rotateY(154.28571deg) translateZ(307.58031px);
  -ms-transform: rotateY(154.28571deg) translateZ(307.58031px);
  -webkit-transform: rotateY(154.28571deg) translateZ(307.58031px);
  transform: rotateY(154.28571deg) translateZ(307.58031px);
}

.strips .strip-17 {
  background-position: 84.17143px 0;
  -moz-transform: rotateY(164.57143deg) translateZ(307.58031px);
  -ms-transform: rotateY(164.57143deg) translateZ(307.58031px);
  -webkit-transform: rotateY(164.57143deg) translateZ(307.58031px);
  transform: rotateY(164.57143deg) translateZ(307.58031px);
}

.strips .strip-18 {
  background-position: 28.05714px 0;
  -moz-transform: rotateY(174.85714deg) translateZ(307.58031px);
  -ms-transform: rotateY(174.85714deg) translateZ(307.58031px);
  -webkit-transform: rotateY(174.85714deg) translateZ(307.58031px);
  transform: rotateY(174.85714deg) translateZ(307.58031px);
}

.strips .strip-19 {
  background-position: -28.05714px 0;
  -moz-transform: rotateY(185.14286deg) translateZ(307.58031px);
  -ms-transform: rotateY(185.14286deg) translateZ(307.58031px);
  -webkit-transform: rotateY(185.14286deg) translateZ(307.58031px);
  transform: rotateY(185.14286deg) translateZ(307.58031px);
}

.strips .strip-20 {
  background-position: -84.17143px 0;
  -moz-transform: rotateY(195.42857deg) translateZ(307.58031px);
  -ms-transform: rotateY(195.42857deg) translateZ(307.58031px);
  -webkit-transform: rotateY(195.42857deg) translateZ(307.58031px);
  transform: rotateY(195.42857deg) translateZ(307.58031px);
}

.strips .strip-21 {
  background-position: -140.28571px 0;
  -moz-transform: rotateY(205.71429deg) translateZ(307.58031px);
  -ms-transform: rotateY(205.71429deg) translateZ(307.58031px);
  -webkit-transform: rotateY(205.71429deg) translateZ(307.58031px);
  transform: rotateY(205.71429deg) translateZ(307.58031px);
}

.strips .strip-22 {
  background-position: -196.4px 0;
  -moz-transform: rotateY(216deg) translateZ(307.58031px);
  -ms-transform: rotateY(216deg) translateZ(307.58031px);
  -webkit-transform: rotateY(216deg) translateZ(307.58031px);
  transform: rotateY(216deg) translateZ(307.58031px);
}

.strips .strip-23 {
  background-position: -252.51429px 0;
  -moz-transform: rotateY(226.28571deg) translateZ(307.58031px);
  -ms-transform: rotateY(226.28571deg) translateZ(307.58031px);
  -webkit-transform: rotateY(226.28571deg) translateZ(307.58031px);
  transform: rotateY(226.28571deg) translateZ(307.58031px);
}

.strips .strip-24 {
  background-position: -308.62857px 0;
  -moz-transform: rotateY(236.57143deg) translateZ(307.58031px);
  -ms-transform: rotateY(236.57143deg) translateZ(307.58031px);
  -webkit-transform: rotateY(236.57143deg) translateZ(307.58031px);
  transform: rotateY(236.57143deg) translateZ(307.58031px);
}

.strips .strip-25 {
  background-position: -364.74286px 0;
  -moz-transform: rotateY(246.85714deg) translateZ(307.58031px);
  -ms-transform: rotateY(246.85714deg) translateZ(307.58031px);
  -webkit-transform: rotateY(246.85714deg) translateZ(307.58031px);
  transform: rotateY(246.85714deg) translateZ(307.58031px);
}

.strips .strip-26 {
  background-position: -420.85714px 0;
  -moz-transform: rotateY(257.14286deg) translateZ(307.58031px);
  -ms-transform: rotateY(257.14286deg) translateZ(307.58031px);
  -webkit-transform: rotateY(257.14286deg) translateZ(307.58031px);
  transform: rotateY(257.14286deg) translateZ(307.58031px);
}

.strips .strip-27 {
  background-position: -476.97143px 0;
  -moz-transform: rotateY(267.42857deg) translateZ(307.58031px);
  -ms-transform: rotateY(267.42857deg) translateZ(307.58031px);
  -webkit-transform: rotateY(267.42857deg) translateZ(307.58031px);
  transform: rotateY(267.42857deg) translateZ(307.58031px);
}

.strips .strip-28 {
  background-position: -533.08571px 0;
  -moz-transform: rotateY(277.71429deg) translateZ(307.58031px);
  -ms-transform: rotateY(277.71429deg) translateZ(307.58031px);
  -webkit-transform: rotateY(277.71429deg) translateZ(307.58031px);
  transform: rotateY(277.71429deg) translateZ(307.58031px);
}

.strips .strip-29 {
  background-position: -589.2px 0;
  -moz-transform: rotateY(288deg) translateZ(307.58031px);
  -ms-transform: rotateY(288deg) translateZ(307.58031px);
  -webkit-transform: rotateY(288deg) translateZ(307.58031px);
  transform: rotateY(288deg) translateZ(307.58031px);
}

.strips .strip-30 {
  background-position: -645.31429px 0;
  -moz-transform: rotateY(298.28571deg) translateZ(307.58031px);
  -ms-transform: rotateY(298.28571deg) translateZ(307.58031px);
  -webkit-transform: rotateY(298.28571deg) translateZ(307.58031px);
  transform: rotateY(298.28571deg) translateZ(307.58031px);
}

.strips .strip-31 {
  background-position: -701.42857px 0;
  -moz-transform: rotateY(308.57143deg) translateZ(307.58031px);
  -ms-transform: rotateY(308.57143deg) translateZ(307.58031px);
  -webkit-transform: rotateY(308.57143deg) translateZ(307.58031px);
  transform: rotateY(308.57143deg) translateZ(307.58031px);
}

.strips .strip-32 {
  background-position: -757.54286px 0;
  -moz-transform: rotateY(318.85714deg) translateZ(307.58031px);
  -ms-transform: rotateY(318.85714deg) translateZ(307.58031px);
  -webkit-transform: rotateY(318.85714deg) translateZ(307.58031px);
  transform: rotateY(318.85714deg) translateZ(307.58031px);
}

.strips .strip-33 {
  background-position: -813.65714px 0;
  -moz-transform: rotateY(329.14286deg) translateZ(307.58031px);
  -ms-transform: rotateY(329.14286deg) translateZ(307.58031px);
  -webkit-transform: rotateY(329.14286deg) translateZ(307.58031px);
  transform: rotateY(329.14286deg) translateZ(307.58031px);
}

.strips .strip-34 {
  background-position: -869.77143px 0;
  -moz-transform: rotateY(339.42857deg) translateZ(307.58031px);
  -ms-transform: rotateY(339.42857deg) translateZ(307.58031px);
  -webkit-transform: rotateY(339.42857deg) translateZ(307.58031px);
  transform: rotateY(339.42857deg) translateZ(307.58031px);
}

.strips .strip-35 {
  background-position: -925.88571px 0;
  -moz-transform: rotateY(349.71429deg) translateZ(307.58031px);
  -ms-transform: rotateY(349.71429deg) translateZ(307.58031px);
  -webkit-transform: rotateY(349.71429deg) translateZ(307.58031px);
  transform: rotateY(349.71429deg) translateZ(307.58031px);
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotateY(0);
  }
  to {
    -moz-transform: rotateY(-360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotateY(0);
  }
  to {
    -webkit-transform: rotateY(-360deg);
  }
}
@keyframes spin {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(-360deg);
  }
}
.tech-timeline {
  --timeline-gap: clamp(32px, 5vw, 96px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--timeline-gap) minmax(0, 1fr);
  column-gap: 0;
  padding: 3rem 0;
  max-width: 900px;
  margin: 0 auto;
}
.tech-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: calc(1rem + 10px);
  left: 50%;
  width: 2px;
  background: rgba(34, 197, 94, 0.5);
  transform: translateX(-50%);
}
.tech-timeline::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  width: 20px;
  height: 20px;
  background-image: url("../../src/images/chevron.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(-50%) rotate(90deg);
  filter: brightness(0) saturate(100%) invert(58%) sepia(95%) saturate(1200%) hue-rotate(90deg) brightness(0.9);
}

.tech-timeline__column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.tech-timeline__column--left {
  grid-column: 1;
}
.tech-timeline__column--left .tech-icon-mask {
  margin-left: auto;
}

.tech-timeline__column--right {
  grid-column: 3;
}

.tech-timeline__item {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #000;
  border-radius: 4px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #000;
  backdrop-filter: blur(6px);
}
.tech-timeline__item .tech-icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  width: 100%;
  display: block;
}
.tech-timeline__item .tech-icon-mask {
  width: 50px;
  height: 50px;
  background-color: #000;
  mask-repeat: no-repeat;
  mask-position: center;
  flex-grow: 0;
  flex-shrink: 0;
}
.tech-timeline__item .tech-icon-mask.bid-engine {
  mask-image: url("../../src/images/icons/arrows.svg");
  mask-size: 70%;
}
.tech-timeline__item .tech-icon-mask.data-processing {
  mask-image: url("../../src/images/icons/arrow-center.svg");
  mask-size: 80%;
}
.tech-timeline__item .tech-icon-mask.prevention-layer {
  mask-image: url("../../src/images/icons/police.svg");
  mask-size: 70%;
}
.tech-timeline__item .tech-icon-mask.creative-management {
  mask-image: url("../../src/images/icons/lightbulb.svg");
  mask-size: 60%;
}
.tech-timeline__item .tech-icon-mask.instant-analytics {
  mask-image: url("../../src/images/icons/analytics.svg");
  mask-size: 80%;
}
.tech-timeline__item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  color: #000;
}
.tech-timeline__item p {
  margin: 0;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.85);
}

@media screen and (max-width: 768px) {
  .tech-timeline__item .tech-icon-mask {
    width: 32px;
    height: 32px;
  }
}
.tech-timeline__column--left .tech-timeline__item {
  text-align: right;
  padding-right: 1.5rem;
}
.tech-timeline__column--left .tech-timeline__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-0.5 * var(--timeline-gap));
  width: calc(0.5 * var(--timeline-gap) + 1px);
  height: 2px;
  background: rgba(34, 197, 94, 0.85);
}

.tech-timeline__column--right .tech-timeline__item {
  text-align: left;
  padding-left: 1.5rem;
}
.tech-timeline__column--right .tech-timeline__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(-0.5 * var(--timeline-gap));
  width: calc(0.5 * var(--timeline-gap) + 1px);
  height: 2px;
  background: rgba(34, 197, 94, 0.85);
}
@media (min-width: 768px) {
  .tech-timeline__column--right .tech-timeline__item:first-child {
    top: 18%;
  }
}
@media (min-width: 768px) {
  .tech-timeline__column--right .tech-timeline__item:nth-child(2) {
    top: 18%;
  }
}

.tech-cta {
  text-align: center;
  margin-top: 3rem;
  z-index: 2;
  position: relative;
}

@media (max-width: 768px) {
  .tech-timeline {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    --timeline-gap: $spacing-lg;
  }
  .tech-timeline::before {
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
  }
  .tech-timeline::after {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .tech-timeline__column {
    grid-column: 1;
  }
  .tech-timeline__column--left .tech-timeline__item,
  .tech-timeline__column--right .tech-timeline__item {
    flex-direction: row;
    text-align: left;
    padding-left: 1.5rem;
    padding-right: 0;
  }
  .tech-timeline__column--left .tech-timeline__item::after,
  .tech-timeline__column--right .tech-timeline__item::after {
    display: none;
  }
}
.ai-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 3rem;
  align-items: center;
}

.ai-content {
  position: relative;
  z-index: 2;
}

.ai-visual {
  position: absolute;
  min-height: 420px;
  width: 600px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.5);
}
.ai-visual .ai-icon-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.ai-icon-rotator__shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1C6B36 0%, #000 100%);
  mask-position: center right;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center right;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.ai-icon-rotator__shape.is-active {
  opacity: 1;
}

.ai-icon-rotator__shape.flag {
  mask-image: url("../../src/images/icons/flag.svg");
  -webkit-mask-image: url("../../src/images/icons/flag.svg");
}

.ai-icon-rotator__shape.laurel {
  mask-image: url("../../src/images/icons/laurel.svg");
  -webkit-mask-image: url("../../src/images/icons/laurel.svg");
}

.ai-icon-rotator__shape.shield {
  mask-image: url("../../src/images/icons/shield.svg");
  -webkit-mask-image: url("../../src/images/icons/shield.svg");
}

.ai-icon-rotator__shape.person {
  mask-image: url("../../src/images/icons/person.svg");
  -webkit-mask-image: url("../../src/images/icons/person.svg");
}

.ai-icon-rotator__shape.head-gear {
  mask-image: url("../../src/images/icons/head-gear.svg");
  -webkit-mask-image: url("../../src/images/icons/head-gear.svg");
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 1.5rem;
  text-align: left;
  position: relative;
}
.ai-grid::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
}

.ai-item {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  backdrop-filter: blur(6px);
  text-align: left;
}
.ai-item .ai-icon-mask {
  width: 52px;
  height: 52px;
  background-color: #fff;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 70%;
}
.ai-item .ai-icon-mask.human-factor {
  mask-image: url("../../src/images/icons/person.svg");
}
.ai-item .ai-icon-mask.full-service {
  mask-image: url("../../src/images/icons/flag.svg");
}
.ai-item .ai-icon-mask.niche-mastery {
  mask-image: url("../../src/images/icons/laurel.svg");
}
.ai-item .ai-icon-mask.vertical-knowledge {
  mask-image: url("../../src/images/icons/head-gear.svg");
}
.ai-item .ai-icon-mask.no-risk {
  mask-image: url("../../src/images/icons/shield.svg");
}
.ai-item h4 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  color: white;
}
.ai-item p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .ai-layout {
    grid-template-columns: 1fr;
  }
  .ai-visual {
    min-height: 320px;
  }
  .ai-icon-rotator {
    width: min(280px, 70vw);
  }
}
@media (max-width: 575px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .ai-grid::before {
    display: none;
  }
}
#clients {
  position: relative;
  overflow: visible;
}
#clients .container, #clients .header__container, #clients .footer__container {
  position: relative;
  overflow: visible;
}
#clients .container h2, #clients .header__container h2, #clients .footer__container h2 {
  text-align: left;
  font-size: 58px;
  font-weight: 900;
}

.clients-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .clients-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.clients-content {
  position: relative;
  z-index: 2;
}
.clients-content .section__title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.clients-content p {
  color: #ffffff;
  text-align: left;
  line-height: 1.6;
}

.clients-visual {
  position: absolute;
  min-height: 420px;
  width: 600px;
  left: 0;
  bottom: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: scale(1.5);
}
.clients-visual .clients-icon {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.clients-icon__shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1C6B36 0%, #000 100%);
  mask-image: url("../../src/images/icons/hand-shake.svg");
  -webkit-mask-image: url("../../src/images/icons/hand-shake.svg");
  mask-position: center right;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center right;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  opacity: 1;
}

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

.client-frame {
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: background 1s ease;
  backdrop-filter: blur(6px);
}
.client-frame:hover {
  background: rgba(255, 255, 255, 0.15);
}
.client-frame.client-888.highlight {
  background: #7BF037;
}
.client-frame.client-888.highlight .client-logo {
  filter: brightness(0) invert(0);
}
.client-frame.client-bybit.highlight {
  background: #000;
}
.client-frame.client-bybit.highlight .client-logo {
  filter: none;
}
.client-frame.client-exness.highlight {
  background: #FFDA2F;
}
.client-frame.client-exness.highlight .client-logo {
  filter: brightness(0) invert(0);
}
.client-frame.client-bolt.highlight {
  background: #2B9C64;
}
.client-frame.client-bolt.highlight .client-logo {
  filter: brightness(0) invert(1);
}
.client-frame.client-kraken.highlight {
  background: #7132f5;
}
.client-frame.client-kraken.highlight .client-logo {
  filter: brightness(0) invert(1);
}
.client-frame.client-outlier.highlight {
  background: linear-gradient(180deg, #FA8072 0%, #00FFFF 100%);
}
.client-frame.client-outlier.highlight .client-logo {
  filter: brightness(0) invert(0);
}
.client-frame.client-pointsbet.highlight {
  background: #fff;
}
.client-frame.client-pointsbet.highlight .client-logo {
  filter: none;
}
.client-frame.client-wolt.highlight {
  background: #00c2e8;
}
.client-frame.client-wolt.highlight .client-logo {
  filter: brightness(0) invert(1);
}
.client-frame.client-fiverr.highlight {
  background: #fff;
}
.client-frame.client-fiverr.highlight .client-logo {
  filter: none;
}
.client-frame.client-lighttricks.highlight {
  background: #000;
}
.client-frame.client-lighttricks.highlight .client-logo {
  filter: brightness(0) invert(1);
}

.client-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  max-width: 80%;
  max-height: 80%;
  transition: filter 1s ease;
}

#clients-test {
  position: relative;
  overflow: visible;
}
#clients-test .container, #clients-test .header__container, #clients-test .footer__container {
  position: relative;
  overflow: visible;
}
#clients-test .container h2, #clients-test .header__container h2, #clients-test .footer__container h2 {
  text-align: left;
  font-size: 58px;
  font-weight: 900;
}

.clients-test-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .clients-test-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.clients-test-content {
  position: relative;
  z-index: 2;
}
.clients-test-content .section__title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.clients-test-content p {
  color: #ffffff;
  text-align: left;
  line-height: 1.6;
}

.clients-test-visual {
  position: absolute;
  min-height: 420px;
  width: 600px;
  left: 0;
  bottom: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: scale(1.2);
}
.clients-test-visual .clients-test-icon {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.clients-test-icon__shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1C6B36 0%, #000 100%);
  mask-image: url("../../src/images/icons/hand-shake.svg");
  -webkit-mask-image: url("../../src/images/icons/hand-shake.svg");
  mask-position: center right;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center right;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  opacity: 1;
}

.clients-test-grid {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  --spacing-lg: 1.5rem;
}
@media (min-width: 768px) {
  .clients-test-grid {
    aspect-ratio: 1/1;
  }
}

.clients-test-carousel {
  display: flex;
  flex-direction: column;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.clients-test-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  flex-shrink: 0;
  width: 100%;
  height: calc((100% - 1.5rem) / 2);
  margin-bottom: 1.5rem;
}
.clients-test-row:last-child {
  margin-bottom: 0;
}

.client-test-frame {
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
  width: 100%;
  height: 100%;
}
.client-test-frame.client-test-888 {
  background: #7BF037;
}
.client-test-frame.client-test-888 .client-test-logo {
  filter: brightness(0) invert(0);
}
.client-test-frame.client-test-bybit {
  background: #000;
}
.client-test-frame.client-test-bybit .client-test-logo {
  filter: none;
}
.client-test-frame.client-test-exness {
  background: #FFDA2F;
}
.client-test-frame.client-test-exness .client-test-logo {
  filter: brightness(0) invert(0);
}
.client-test-frame.client-test-bolt {
  background: #2B9C64;
}
.client-test-frame.client-test-bolt .client-test-logo {
  filter: brightness(0) invert(1);
}
.client-test-frame.client-test-kraken {
  background: #7132f5;
}
.client-test-frame.client-test-kraken .client-test-logo {
  filter: brightness(0) invert(1);
}
.client-test-frame.client-test-outlier {
  background: linear-gradient(180deg, #FA8072 0%, #00FFFF 100%);
}
.client-test-frame.client-test-outlier .client-test-logo {
  filter: brightness(0) invert(0);
}
.client-test-frame.client-test-pointsbet {
  background: #fff;
}
.client-test-frame.client-test-pointsbet .client-test-logo {
  filter: none;
}
.client-test-frame.client-test-wolt {
  background: #00c2e8;
}
.client-test-frame.client-test-wolt .client-test-logo {
  filter: brightness(0) invert(1);
}
.client-test-frame.client-test-fiverr {
  background: #fff;
}
.client-test-frame.client-test-fiverr .client-test-logo {
  filter: none;
}
.client-test-frame.client-test-lighttricks {
  background: #000;
}
.client-test-frame.client-test-lighttricks .client-test-logo {
  filter: brightness(0) invert(1);
}

.client-test-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  max-width: 80%;
  max-height: 80%;
  transition: filter 1s ease;
}

#mmp {
  position: relative;
  overflow: visible;
}
#mmp .container, #mmp .header__container, #mmp .footer__container {
  position: relative;
  overflow: visible;
  text-align: center;
}
#mmp .section__title--mmp {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 3rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  #mmp .section__title--mmp {
    font-size: 2rem;
  }
}

.mmp-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .mmp-grid {
    gap: 2rem;
  }
}

.mmp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  width: 180px;
  height: 80px;
  flex-shrink: 0;
}

.mmp-logo__img {
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 120px;
  max-height: 60px;
}
@media (min-width: 576px) {
  .mmp-logo__img {
    max-width: 140px;
    max-height: 70px;
  }
}
@media (min-width: 768px) {
  .mmp-logo__img {
    max-width: 160px;
    max-height: 80px;
  }
}

#case-studies {
  position: relative;
  padding: 0;
}
#case-studies .container, #case-studies .header__container, #case-studies .footer__container {
  max-width: none;
  width: 100%;
  position: relative;
  padding: 0;
}
#case-studies .section__title {
  position: absolute;
  top: 50px;
  z-index: 1;
  text-align: center;
  width: 100%;
  font-weight: 900;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study-card {
  text-align: left;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  text-decoration: none;
  cursor: pointer;
}
.case-study-card .case-study-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: grayscale(80%);
  opacity: 0.3;
  transition: transform 0.3s ease-in-out;
  transform: scale(1);
}
.case-study-card:hover .case-study-bg {
  transform: scale(1.05) rotate(2deg);
}
.case-study-card:hover .case-study-cta__arrow {
  transform: translateX(4px) translateZ(0);
}
.case-study-card .case-study-logo {
  width: 200px;
  height: 100px;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  margin-bottom: 50px;
  margin-top: 90px;
  position: relative;
  z-index: 1;
  align-self: flex-start;
}
.case-study-card h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  align-self: flex-start;
  margin-bottom: 90px;
}
.case-study-card .case-study-cta {
  display: inline-flex;
  align-items: center;
  gap: calc(0.5rem + 10px);
  padding: 0.5rem 2rem;
  background-color: transparent;
  color: #39b2ef;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  align-self: flex-end;
  margin-top: auto;
  pointer-events: none;
}
.case-study-card .case-study-cta__arrow-wrapper {
  position: relative;
  display: inline-block;
}
.case-study-card .case-study-cta__arrow-wrapper::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  width: 16px;
  height: 2px;
  background-color: #39b2ef;
  transition: transform 0.3s ease-in-out;
  z-index: 2;
  backface-visibility: hidden;
  will-change: transform;
}
.case-study-card .case-study-cta__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease-in-out;
  display: block;
  backface-visibility: hidden;
  will-change: transform;
}

.case-study-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.case-study-lightbox.active {
  display: flex;
}
.case-study-lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.case-study-lightbox__content {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  max-height: 90vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.case-study-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
}
.case-study-lightbox__close:hover {
  opacity: 0.7;
}
.case-study-lightbox__pdf {
  width: 100%;
  height: 100%;
  background: white;
  border: none;
}

#careers {
  display: none;
}

.careers-content {
  text-align: center;
  padding: 3rem 0;
}
.careers-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #333;
}

#testimonials {
  display: none;
  position: relative;
  padding: 0;
}
#testimonials .container, #testimonials .header__container, #testimonials .footer__container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: auto;
  position: relative;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    min-height: 600px;
    gap: 0;
  }
}

.testimonial-item {
  position: relative;
  overflow: hidden;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  height: auto;
}
@media (min-width: 768px) {
  .testimonial-item {
    height: 100%;
    flex-direction: row;
  }
}
.testimonial-item .testimonial-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  min-height: 300px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .testimonial-item .testimonial-photo {
    height: 100%;
    min-height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(0.8);
  }
}
.testimonial-item .testimonial-content {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .testimonial-item .testimonial-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 2;
    pointer-events: none;
  }
}
@media (min-width: 768px) {
  .testimonial-item.is-active {
    z-index: 1;
  }
  .testimonial-item.is-active .testimonial-photo {
    opacity: 1;
    filter: grayscale(0);
  }
  .testimonial-item.is-active .testimonial-content {
    opacity: 0;
    visibility: hidden;
  }
  .testimonial-item.is-inactive .testimonial-photo {
    opacity: 0.3;
  }
}

.active-testimonial-overlay {
  display: none;
}
@media (min-width: 768px) {
  .active-testimonial-overlay {
    display: flex;
    position: absolute;
    top: 0;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    background: transparent;
    z-index: 3;
    pointer-events: none;
    text-align: center;
    color: #0e0f19;
  }
  .active-testimonial-overlay[data-active-index="0"] {
    left: 33.333%;
    width: 66.666%;
  }
  .active-testimonial-overlay[data-active-index="1"][data-position=left] {
    left: 0;
    width: 33.333%;
  }
  .active-testimonial-overlay[data-active-index="1"][data-position=right] {
    left: 66.666%;
    width: 33.333%;
  }
  .active-testimonial-overlay[data-active-index="2"] {
    left: 0;
    width: 66.666%;
  }
  .active-testimonial-overlay .testimonial-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0e0f19;
  }
  .active-testimonial-overlay .testimonial-content--author-only .testimonial-quote {
    display: none;
  }
  .active-testimonial-overlay .testimonial-content--quote-only .testimonial-author {
    display: none;
  }
}

.testimonial-author {
  margin-bottom: 1.5rem;
}
.testimonial-author .testimonial-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .testimonial-author .testimonial-name {
    font-size: 1.75rem;
  }
}
.testimonial-author .testimonial-role {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}
@media (min-width: 768px) {
  .testimonial-author .testimonial-role {
    font-size: 1.125rem;
  }
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  max-width: 500px;
}
@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.125rem;
  }
}
.testimonial-quote::before, .testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  line-height: 0;
  opacity: 0.5;
}

#contact {
  position: relative;
  overflow: visible;
}
#contact .container, #contact .header__container, #contact .footer__container {
  z-index: 1;
  position: relative;
}
#contact .container h2, #contact .header__container h2, #contact .footer__container h2 {
  font-weight: 900;
  font-size: 2.6rem;
  margin-top: 1rem;
}
#contact .dots-background {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 500px;
  mask-image: url("../../src/images/dots-wave.svg");
  mask-size: cover;
  mask-position: center top;
  mask-repeat: no-repeat;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 3rem;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.contact-form .form-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  margin: 0;
  font-weight: 600;
  color: #1a365d;
  pointer-events: none;
  padding: 0 0.25rem;
  transition: all 0.3s ease-in-out;
}
.contact-form .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  padding: 1.5rem 1rem 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease-in-out;
}
.contact-form .form-control:focus {
  border-color: #39b2ef;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}
.contact-form select.form-control {
  cursor: pointer;
}
.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-group.is-select .form-label {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}
.contact-form .form-group.is-textarea .form-label {
  top: 0.5rem;
  transform: translateY(0);
}
.contact-form .form-group.is-focused .form-label,
.contact-form .form-group.has-value .form-label {
  top: 0.5rem;
  transform: translateY(0);
  font-size: 0.85rem;
  color: #39b2ef;
}
.contact-form .form-group.has-error .form-label {
  top: 0.5rem;
  transform: translateY(0);
  font-size: 0.85rem;
  color: #dc3545;
}
.contact-form .btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
}
.contact-form .btn.js-submit-form, .contact-form .btn.js-validate-captcha {
  background: linear-gradient(135deg, #101c2d 0%, #000000 100%);
  color: #fff;
  border: none;
}
.contact-form .btn.js-submit-form:hover, .contact-form .btn.js-validate-captcha:hover {
  opacity: 0.9;
}
.contact-form #captcha-section {
  margin-top: 1.5rem;
}
.contact-form #captcha-section #captcha {
  margin-bottom: 1rem;
  display: block;
}
.contact-form #captcha-section #captcha canvas {
  display: block;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}
.contact-form #captcha-section #captchaTextBox {
  margin-bottom: 0.5rem;
}
.contact-form #captcha-section .js-validate-captcha {
  margin-top: 1rem;
}
.contact-form .help-block {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}
.contact-form .help-block.text-danger {
  color: #dc3545 !important;
}
.contact-form .help-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-form .help-block ul li {
  color: #dc3545;
  margin: 0;
}
.contact-form .has-error .form-control {
  border-color: #dc3545;
}
.contact-form .has-error .form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.contact-form .has-success .form-control {
  border-color: #28a745;
}
.contact-form .has-success .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}
.contact-form .text-danger {
  color: #dc3545 !important;
}
.contact-form .js-mail-response {
  margin-top: 1rem;
}
.contact-form .js-mail-response .alert-success {
  color: #155724;
  background-color: #d4edda;
}
.contact-form .js-mail-response .alert-failure {
  color: #721c24;
  background-color: #f8d7da;
}

#events {
  padding: 0;
  position: relative;
  overflow: visible;
  z-index: 1;
}
#events .events-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
#events .events-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
#events .events-slider__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
#events .events-slider__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#events .events-slider__dots .dot.active {
  background: white;
  width: 30px;
  border-radius: 5px;
}
#events .event-item {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#events .event-item__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(50%) brightness(0.4);
  z-index: 0;
}
#events .event-item__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 1.5rem;
  width: 100%;
}
#events .event-item__intro {
  font-size: 1.125rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  margin-top: 20px;
}
#events .event-item__logo {
  width: 300px;
  height: 150px;
  max-width: 100%;
  margin: 0 auto 1rem;
  display: block;
  background-color: white;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
#events .event-item__logo:hover {
  opacity: 0.8;
}
#events .event-item__date {
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: white;
}
#events .event-item__place {
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}
#events .events-slider:has(.event-item:only-child) .events-slider__dots {
  display: none;
}

#ai-optimization h2 {
  text-align: left;
  font-size: 58px;
  font-weight: 900;
}
#ai-optimization h3 {
  text-align: left;
  color: #fff;
}
#ai-optimization p.section__subtitle {
  text-align: left;
  width: 100%;
  max-width: 600px;
}

.events-footer-wrapper {
  position: relative;
  overflow: visible;
}
.events-footer-wrapper__bg-icon {
  position: absolute;
  bottom: 0;
  right: -19%;
  height: calc(100% - 80px);
  width: 100%;
  background-image: url("../../src/images/ascendad-icon.svg");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
}

@media screen and (max-width: 880px) {
  .events-footer-wrapper__bg-icon {
    mix-blend-mode: screen;
    opacity: 0.5;
  }
}
@media screen and (max-width: 650px) {
  .events-footer-wrapper__bg-icon {
    height: 300px;
  }
}
.footer {
  background: #000;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.footer .footer__container {
  position: relative;
  z-index: 3;
}
.footer .footer__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer .footer__brand {
  text-align: left;
}
.footer .footer__brand-logo {
  height: auto;
  width: auto;
  max-width: 200px;
  margin-bottom: 0.5rem;
  display: block;
}
.footer .footer__brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.footer .footer__links {
  text-align: left;
}
.footer .footer__links a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0.5rem 0 0;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer .footer__links a:hover {
  color: white;
}
.footer .footer__social {
  text-align: left;
}
.footer .footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer .footer__social-link:hover {
  color: white;
}
.footer .footer__social-link:hover .footer__social-icon {
  background-color: #0077b5;
}
.footer .footer__social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: white;
  mask-image: url("../images/icons/linkedin.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/icons/linkedin.svg");
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  transition: background-color 0.3s ease-in-out;
}
.footer .footer__copyright {
  text-align: left;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-page .legal-page__logo {
  display: flex;
  justify-content: center;
  padding: 48px 0 16px;
  background: transparent;
}
.legal-page .legal-page__logo a {
  display: inline-flex;
  align-items: center;
}
.legal-page .legal-page__logo img {
  height: 40px;
  max-width: 220px;
  object-fit: contain;
  background: transparent;
}
.legal-page > section:first-child {
  padding-top: 140px;
}

@media (max-width: 575px) {
  .ascendad-hero {
    padding-top: 0px;
  }
  .ascendad-hero .container, .ascendad-hero .header__container, .ascendad-hero .footer__container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .ascendad-hero .container h1.hero__title, .ascendad-hero .header__container h1.hero__title, .ascendad-hero .footer__container h1.hero__title {
    font-size: 2.5rem !important;
    line-height: 2.5rem !important;
  }
  .ascendad-hero .container h2.hero__legend, .ascendad-hero .header__container h2.hero__legend, .ascendad-hero .footer__container h2.hero__legend {
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
  }
  .ascendad-hero .container .hero__subtitle, .ascendad-hero .header__container .hero__subtitle, .ascendad-hero .footer__container .hero__subtitle {
    font-size: 1.25rem !important;
    line-height: 1.5rem !important;
  }
  .ascendad-hero .container .hero__ctas, .ascendad-hero .header__container .hero__ctas, .ascendad-hero .footer__container .hero__ctas {
    margin-top: auto;
  }
  .ascendad-hero .container, .ascendad-hero .header__container, .ascendad-hero .footer__container {
    padding-top: 100px;
  }
  .ascendad-hero {
    align-items: flex-start;
  }
  .ascendad-hero .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .tech-stack {
    grid-template-columns: 1fr;
  }
  .ai-grid {
    grid-template-columns: 1fr;
  }
}
.gdpr-key {
  font-weight: 700;
}

span.gdpr-key {
  display: none;
}

.gdpr-table td {
  padding: 10px;
  vertical-align: top;
  border: 1px solid #eee;
}

@media screen and (max-width: 600px) {
  .gdpr-table tr td:first-child {
    display: none;
  }
  span.gdpr-key {
    display: block;
    clear: both;
  }
}

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