@import url(font.css);

:root {
  --black: #0c1017;
  --black-rgb: 29, 35, 35;
  --white: #ffffff;
  --color-secondary: #ED0F84;

  --color-tertiary: #0f0f0f;

  --color-grey: #f5f5f5;
  --color-dark-grey: #5f6060;
  --color-alice-blue: #f5fdff;
  --color-red-rgb: 243, 72, 26;
  --color-midnight-blue: #171a36;
  --color-lavender-blue: #dfe7ff;
  --color-pale-pink: #fce8f2;
  --color-light-sky-blue: #e6f6ff;
  --color-sliver-gray: #c8c8c8;
  --regular-font-p: 'Satoshi';
  --bold-font-h1: 'Aeonik';
  --regular-r-font-p: 'Satoshi Regular';
  --regular-font-p-aeonik: 'Aeonik-regular';
  --font-bold-aeonik: 'Aeonik-Bold';
  --font-meduim-aeonik: 'Aeonik-meduim';
  --font-light-aeonik: 'Aeonik-light';
  --font-regular-satoshi: 'Satoshi-regular';
  --font-bold-satoshi: 'Satoshi-bold';
  --font-light-satoshi: 'Satoshi-light';
  --font-outfit: 'outfit';
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}

/* General */

.inner-take-action-info {
  width: 100%;
  margin: 0 auto;
  max-width: 712px;
  padding: 43px 0px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 12.18px;
}

.product-tag {
  max-width: 128.6px;
  width: 100%;
  padding: 8.8px 15.8px;
  border-radius: 24px;
  border: 1px solid rgba(0, 35, 67, 1);
  font-family: var(--bold-font-h1);
  font-size: 10.69px;
  font-weight: 700;
  line-height: 15.6px;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(0, 35, 67, 1);
}

.inner-take-action-info .product-title {
  font-family: var(--bold-font-h1);
  font-weight: 700;
  font-size: 44px;
  text-align: center;
  line-height: 52.8px;
}

.inner-take-action-info .product-short-info {
  font-family: var(--font-regular-satoshi);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 29.7px;
  max-width: 1121px;
  width: 100%;
  color: rgba(95, 96, 96, 1);
}

.talk-to-us-action-button {
  display: flex;
  justify-content: center;
  gap: 26.58px;
  padding-top: 35.44px;
  text-decoration: none;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.talk-to-us-button-footer {
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(237, 15, 132, 1);
  max-width: 149.6px;
  width: 100%;
  padding: 12.8px 24.8px 12.8px 24.8px;
  color: white; /* Text color */
  text-decoration: none;
  font-family: var(--font-meduim-aeonik);
  font-size: 15.13px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: -0.2px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Ensure text stays above the ripple */
}

.book-demo-button-footer {
  max-width: 179.6px;
  width: 100%;
  padding: 12.8px 24.8px 12.8px 24.8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 35, 67, 1);
  color: rgba(15, 15, 15, 1);
  text-decoration: none;
  font-family: var(--font-meduim-aeonik);
  font-size: 15.13px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: -0.20000000298023224px;
  text-align: center;
  transition:
    color 0.35s ease 0.08s,
    border-color 0.35s ease,
    transform 0.6s ease,
    opacity 0.6s ease;
}

/* .talk-to-us-button {
  max-width: 134.16px;
  background-color: var(--color-secondary);

  font-family: var(--bold-font-h1);
  font-weight: 500;
  font-size: 16.75px;
  line-height: 24.81px;
  letter-spacing: -0.22149531543254852px;
  text-align: center;
  padding: 13.29px 20.58px 13.29px 20.58px;
  gap: 0px;
  border-radius: 8.86px;
  opacity: 0px;
  border-color: transparent;
} */

.talk-to-us-button {
  max-width: 134.16px;
  background-color: var(--color-secondary);
  font-family: var(--bold-font-h1);
  font-weight: 500;
  font-size: 16.75px;
  line-height: 24.81px;
  /* letter-spacing: -0.22149531543254852px; */
  text-align: center;
  padding: 13.29px 20.58px 13.29px 20.58px;
  border-radius: 8.86px;
  opacity: 0px;
  border-color: transparent;
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1; /* Ensure text stays above the ripple */
}

.talk-to-us-button::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(0, 35, 67, 1);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: -1; /* Ensure ripple stays behind the text */
}

.talk-to-us-button:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Primary pink buttons: same ripple as .talk-to-us-button */
.talk-to-us-button-footer,
.modular-solutions-cta,
.get-started-header,
.product-info-section a.get-started,
input[type='submit'] {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.talk-to-us-button-footer::before,
.modular-solutions-cta::before,
.get-started-header::before,
.product-info-section a.get-started::before,
input[type='submit']::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgb(0, 35, 67);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: -1;
  pointer-events: none;
}

.talk-to-us-button-footer:hover::before,
.modular-solutions-cta:hover::before,
.get-started-header:hover::before,
.product-info-section a.get-started:hover::before,
input[type='submit']:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Outline buttons: ripple fill + white label on hover */
.book-demo-button,
.book-demo-button-footer,
.dropdown-header-card-book-demo-header,
.product-info-section a.book-demo {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.book-demo-button::before,
.book-demo-button-footer::before,
.dropdown-header-card-book-demo-header::before,
.product-info-section a.book-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgb(0, 35, 67);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: -1;
  pointer-events: none;
}

.book-demo-button:hover,
.book-demo-button-footer:hover,
.dropdown-header-card-book-demo-header:hover,
.product-info-section a.book-demo:hover {
  color: #fff !important;
  border-color: transparent;
}

.book-demo-button:hover::before,
.book-demo-button-footer:hover::before,
.dropdown-header-card-book-demo-header:hover::before,
.product-info-section a.book-demo:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.book-demo-button {
  max-width: 500.16px;
  background-color: transparent;
  font-family: var(--bold-font-h1);
  font-weight: 500;
  /* font-size: 16.75px; */
  line-height: 24.81px;
  /* letter-spacing: -0.22149531543254852px; */
  text-align: center;
  padding: 13.29px 15.58px 13.29px 15.58px;
  gap: 0px;
  border-radius: 8.86px;
  opacity: 0px;
  border: 1px solid #161516;
  text-decoration: none;
  color: #161516;
  transition: color 0.3s ease-in-out, border-color 0.5s ease-in-out;
}

/* hero-section */

.hero-section {
  /* background-color: #fce8f2; Set the background color */

  background: linear-gradient(
      72.03deg,
      rgba(237, 15, 132, 0.2) 7.56%,
      rgba(237, 15, 132, 0.2) 58.61%,
      rgba(132, 37, 195, 0.2) 107.97%
    ),
    url(assets/images/pattern-mask-group.png);

  /* width: 100%;
  margin: 0 auto; */
  /* background-image: url(assets/images/pattern-mask-group.png); Set the background image */
  background-blend-mode: multiply; /* Use blending to combine image and color */
  background-size: cover; /* Ensure the image covers the section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeat */
}

.inner-hero-section {
  /* max-width: 1440px; */
  margin: 0 auto;
}

.fade-slide-in {
  position: relative;
  opacity: 0;
  transform: translateY(-100%); /* Start the element completely off-screen */
  animation: fadeSlideIn 2s ease-out forwards;
}

@keyframes fadeSlideIn {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* .image-container {
  padding-top: 90px;
  width: 100%;
  max-width: 1349.2px;
  margin: 0 auto;
}

.image-container img {
  max-width: 1249.2px;
  object-fit: contain;
  width: 100%;
} */

/* General animation setup for sliding and rotating */
@keyframes slideRotateIn {
  0% {
    transform: translateY(-200px) rotate(-20deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* For the container of the images */
.image-container {
  position: relative;
  width: 100%;
  max-width: 1084px;
  padding-top: 231px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-image: url('assets/images/Frame 1000001388 (1).png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* For the right image */
.right-image {
  position: relative;
  z-index: 1;
  width: 30%;
  right: 75px;
  bottom: 210px;
  animation: slideRotateIn 2s ease-in-out forwards;
  animation-delay: 0.5s; /* Adjust delay if needed */
}

/* For the stacked images container */
.stacked-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  left: 43px;
  top: -70px;
}
/* General animation setup for sliding and rotating */
@keyframes slideRotateIn {
  0% {
    transform: translateY(-200px) rotate(-20deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* For the container of the images */
.image-container {
  position: relative;
  width: 100%;
  max-width: 1084px;
  padding-top: 208px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-image: url('assets/images/section2h.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
}

/* For the right image */
.right-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 359px;
  right: 105px;
  bottom: 171px;
  object-fit: contain;
  animation: slideRotateIn 2s ease-in-out forwards;
  animation-delay: 0.5s; /* Delay to ensure it animates after the left image */
}

/* For the stacked images container */
.stacked-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  left: 41px;
  top: -47px;
}

/* Animation for each stacked image */
.stacked {
  width: 100%;
  max-width: 325.2px;
  object-fit: contain;
  /* height: 97.92px; */
  opacity: 0; /* Start hidden */
  animation: slideRotateIn 1.5s ease-in-out forwards; /* Adjust animation duration */
}

/* Delay for each stacked image to appear one after the other */
.stacked:nth-child(1) {
  animation-delay: 2s; /* First stacked image after 2.5 seconds */
}

.stacked:nth-child(2) {
  animation-delay: 3s; /* Second stacked image after 3 seconds */
}

/* Add a smooth slide and rotation animation for the left-side images */
@keyframes slideRotateLeft {
  0% {
    transform: translateY(-200px) rotate(20deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* Apply the left image animation */
.stacked-images {
  animation: slideRotateLeft 2s ease-in-out forwards;
  animation-delay: 0s; /* Left side images come first */
}

.image-container-mobile {
  display: none;
}

@media screen and (max-width: 1100px) {
  .image-container {
    max-width: 900px;
    padding-top: 152px;
  }
  .right-image {
    bottom: 137px;
    max-width: 300px;
    right: 50px;
  }

  .stacked-images {
    max-width: 264.2px;
    object-fit: contain;
    left: 20px;
    top: -36px;
  }
}

@media screen and (max-width: 900px) {
  .image-container {
    display: none;
  }
  .right-image {
    display: none;
  }

  .stacked-images {
    display: none;
  }

  .image-container-mobile {
    display: block;
  }

  .image-container-mobile img {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    object-fit: cover;
  }
}

/* @media screen and (max-width: 582px) {
  .image-container {
    height: 150px;
  }
}

@media screen and (max-width: 400px) {
  .image-container {
    height: 104px;
  }
} */

.home-trusted-by {
  background: linear-gradient(90.25deg, #ED0F84 33.88%, #36071f 65.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: var(--font-light-aeonik) !important;
  font-size: 21.88px;
  font-weight: 400;
  line-height: 27.35px;
  z-index: 1;
  background-color: white;
}

@media screen and (max-width: 600px) {
  .inner-take-action-info .product-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
  }

  .inner-take-action-info .product-short-info {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
  }
}

/* mida-solution */

.mida-solution {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;

  padding: 121px 140px 121px 140px;
  gap: 10px;
}

h2.our-solution-border-button {
  /* width: Hug (107.6px) px;
  height: Hug (33.6px) px; */
  padding: 8.8px 15.8px 8.8px 15.8px;

  border-radius: 24px;
  border: 1px solid rgba(0, 35, 67, 1);
  font-family: var(--font-bold-aeonik);
  text-transform: uppercase;
  font-size: 10.69px;
  font-weight: 500;
  line-height: 15.6px;
  text-align: left;
  color: rgba(0, 35, 67, 1);
}

.mida-solution-container {
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.mida-solution-title {
  text-align: center;
  color: rgba(15, 15, 15, 1);
  font-family: var(--font-bold-aeonik);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}

.our-mida-solutions-cards {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  grid-template-rows: repeat(
    2,
    auto
  ); /* 2 rows that adjust to the content height */
  gap: 50px; /* Space between the grid items */
}
.mida-solution-card {
  width: 100%;
  /* height: Fixed (325.76px; */
  max-width: 341.07px;
  /* min-height: 268.56px; */
  padding: 40px 38.36px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 26.86px;
  border-radius: 0px 40.28px 40.28px 40.28px;
  border: 1.34px solid rgba(232, 233, 233, 1);
  transition: background-color 0.3s, color 0.3s, transform 0.3s ease-in-out; /* Smooth zoom effect */
  transform: scale(1); /* Initial scale */
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10.41px;
  transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.our-card-solution-text-icon {
  display: flex;
  flex-direction: column;
  gap: 26.86px;
}

.icon-title h2 {
  font-family: var(--font-bold-aeonik);
  font-size: 24px;
  font-weight: 700;
  line-height: 29.23px;
  text-align: left;
}

.our-card-solution-text {
  font-family: var(--font-regular-satoshi);
  font-size: 22px;
  font-weight: 300;
  line-height: 31.1px;
  text-align: left;
}

.our-card-solution-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.our-card-solution-cta a {
  font-family: var(--font-regular-satoshi);
  font-size: 15px;
  font-weight: 400;
  line-height: 20.25px;
  text-align: center;
  color: rgba(75, 72, 72, 1);
  text-decoration: none;
}

.cta-solution-card {
  /* width: Fixed (36px)px;
height: Fixed (36px)px; */
  padding: 12px 16px 12px 16px;
  background-color: rgba(237, 15, 132, 1);
  border-radius: 50%;
}

.cta-solution-card a i {
  color: white;
}

.mida-solution-card:hover {
  background-color: var(--color-secondary); /* Pink background on hover */
  color: white; /* Text turns white */
  transform: scale(1.05);
}

.mida-solution-card:hover .our-card-solution-text,
.mida-solution-card:hover h2,
.mida-solution-card:hover .learn-more,
.icon-title:hover h2 {
  color: white; /* Ensure all text is white on hover */
}

/* .mida-solution-card:hover .icon-title img {
  background-color: white; /* Icon background turns white */
/* filter: brightness(0) saturate(100%) invert(40%) sepia(92%) saturate(4030%)
    hue-rotate(319deg) brightness(95%) contrast(107%); 
  /* Icon turns pink on hover 
} */

.mida-solution-card:hover .cta-solution-card {
  background-color: white; /* Div around the icon turns white */
  border-radius: 50%; /* Make it circular if you want */
  padding: 12px 13px 12px 13px;
  transition: background-color 0.3s, padding 0.3s; /* Smooth transition */
}

.mida-solution-card:hover .cta-solution-card a i {
  color: var(--color-secondary);
}

.mida-solution-last-card {
  width: 100%;
  max-width: 346px;
  /* height: Fixed (326px) px; */
  padding: 25px 40px 40px 40px;
  border-radius: 24px;
  background: linear-gradient(136.07deg, #d80b95 9.28%, #8824c1 119%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
}

.mida-solution-last-card-title {
  font-family: var(--font-meduim-aeonik);
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: left;
}

.mida-solution-last-card-text {
  font-family: var(--font-regular-satoshi);
  font-size: 19px;
  font-weight: 400;
  line-height: 29.7px;
  text-align: left;
}

.mida-solution-last-card-cta {
  max-width: 132px;
  width: 100%;
  padding: 12px 24px 12px 24px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 1);
}

.mida-solution-last-card-cta a {
  text-decoration: none;
  font-family: Inter;
  font-size: 15.38px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: -0.20000000298023224px;
  text-align: center;
  color: rgba(28, 25, 26, 1);
}

@media screen and (max-width: 1000px) {
  .mida-solution {
    padding: 70px 20px;
  }
  .our-mida-solutions-cards {
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    grid-template-rows: repeat(
      3,
      auto
    ); /* 2 rows that adjust to the content height */
    gap: 57px; /* Space between the grid items */
  }
}

@media (max-width: 650px) {
  .mida-solution {
    padding: 70px 20px;
  }

  .mida-solution-card,
  .mida-solution-last-card {
    max-width: 100%;
  }

  .our-mida-solutions-cards {
    grid-template-columns: 1fr; /* 1 column */
    grid-template-rows: auto; /* Rows adjust to content height */
    gap: 66px; /* Space between the grid items */
  }
  .mida-solution-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    text-align: center;
  }
  .icon-title h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 32.23px;
    text-align: left;
  }
}

/* Unified platform section (index) — full-bleed #f9fafb */
.mida-solution.mida-solution--unified {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  background-color: #f9fafb;
  padding: 80px 24px 96px;
  gap: 24px;
  box-sizing: border-box;
}

.mida-solution-unified-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #002343;
  background: transparent;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #002343;
  text-align: center;
}

.mida-solution-unified-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.mida-solution-unified-title {
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #0c1017;
  max-width: 920px;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 44px;
  word-wrap: break-word
}

.mida-solution-unified-highlight {
  display: block;
  color: #ED0F84;
}

@media screen and (min-width: 768px) {
  .mida-solution-unified-highlight {
    display: inline;
  }
}

.mida-solution-unified-desc {
  font-family: var(--font-regular-satoshi);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 29.7px;
    max-width: 1121px;
    width: 100%;
    color: rgba(95, 96, 96, 1);
}

.mida-solution-unified-diagram {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mida-solution-unified-diagram--interactive .unified-platform-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 0;
}

.mida-solution-unified-diagram--interactive .unified-platform-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
}

.mida-solution-unified-diagram--interactive .unified-platform-stage--feature-diagram {
  line-height: normal;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

@media screen and (max-width: 767px) {
  .mida-solution-unified-diagram--interactive .unified-platform-stage--feature-diagram {
    overflow-y: visible;
    overflow-x: auto;
    padding-bottom: 48px;
  }

  .mida-solution-unified-diagram {
    padding-bottom: 24px;
    min-height: 320px;
  }
}

/* Interactive feature diagram (replaces unified-platform.png) */
.unified-feature-diagram {
  position: relative;
  width: 100%;
  max-width: 1000px;
  min-width: min(100%, 620px);
  margin: 0 auto;
  aspect-ratio: 1000 / 600;
  min-height: 240px;
  box-sizing: border-box;
  container-type: inline-size;
  container-name: unified-feature;
}

.unified-feature-diagram__hub.central-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56%;
  aspect-ratio: 1;
  max-height: 93.333%;
  z-index: 5;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  outline: none;
}

.unified-feature-diagram__hub:focus-visible {
  outline: 2px solid #ed0f84;
  outline-offset: 4px;
  border-radius: 50%;
}

/* Reset state (off-screen): replay entrance on next --play */
.unified-feature-diagram--idle .outer-ring,
.unified-feature-diagram--idle .inner-ring,
.unified-feature-diagram--idle .white-circle {
  animation: none !important;
  transition: none;
}

.unified-feature-diagram--idle .outer-ring {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.unified-feature-diagram--idle .inner-ring {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.unified-feature-diagram--idle .white-circle {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.unified-feature-diagram--idle .logo-img,
.unified-feature-diagram--idle .connectors-bg,
.unified-feature-diagram--idle .feature-label {
  opacity: 0;
  animation: none !important;
}

.unified-feature-diagram--idle .connectors-bg {
  transform: translate(-50%, -50%);
}

.unified-feature-diagram--idle .feature-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: none !important;
}

.unified-feature-diagram--idle .feature-card {
  transform: scale(0);
  animation: none !important;
}

.unified-feature-diagram--idle .inner-ring::after {
  animation: none !important;
}

.unified-feature-diagram--idle .unified-feature-diagram__hub,
.unified-feature-diagram--idle .feature-wrapper {
  pointer-events: none;
  visibility: hidden;
}

.unified-feature-diagram--play .unified-feature-diagram__hub,
.unified-feature-diagram--play .feature-wrapper,
.unified-feature-diagram--settled .unified-feature-diagram__hub,
.unified-feature-diagram--settled .feature-wrapper {
  pointer-events: auto;
  visibility: visible;
}

/* Reduced motion / settled: always show final layout */
.unified-feature-diagram--settled .outer-ring,
.unified-feature-diagram--settled .inner-ring,
.unified-feature-diagram--settled .white-circle {
  animation: none !important;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.unified-feature-diagram--settled .logo-img,
.unified-feature-diagram--settled .connectors-bg,
.unified-feature-diagram--settled .feature-label {
  opacity: 1;
  animation: none !important;
}

.unified-feature-diagram--settled .feature-wrapper {
  opacity: 1;
  transform: translateY(0);
  animation: none !important;
}

.unified-feature-diagram--settled .feature-card {
  transform: scale(1);
  animation: none !important;
}

.unified-feature-diagram .outer-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fbf2f8;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  pointer-events: none;
}

.unified-feature-diagram--play .outer-ring {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: unified-feature-scaleIn 0.6s ease-out forwards;
}

.unified-feature-diagram__hub:hover .outer-ring {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 60px rgba(247, 145, 198, 0.4);
}

.unified-feature-diagram .inner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  width: 54.2857%;
  height: 54.2857%;
  border-radius: 50%;
  background: #f791c6;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  pointer-events: none;
}

.unified-feature-diagram--play .inner-ring {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: unified-feature-scaleIn 0.6s ease-out 0.2s forwards;
}

.unified-feature-diagram__hub:hover .inner-ring {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 50px rgba(247, 145, 198, 0.6);
}

.unified-feature-diagram .white-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  width: 29.5%;
  height: 29.5%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  pointer-events: none;
}

.unified-feature-diagram--play .white-circle {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: unified-feature-scaleIn 0.6s ease-out 0.4s forwards;
}

.unified-feature-diagram__hub:hover .white-circle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
}

.unified-feature-diagram .logo-img {
  width: 45%;
  max-width: 100px;
  height: auto;
  opacity: 1;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.unified-feature-diagram--play .logo-img {
  opacity: 0;
  animation: unified-feature-fadeIn 0.5s ease-out 0.7s forwards;
}

.unified-feature-diagram__hub:hover .logo-img {
  transform: scale(1.12) rotate(5deg);
}

.unified-feature-diagram .connectors-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76%;
  height: 90%;
  z-index: 10;
  opacity: 1;
  transition: transform 0.5s ease, filter 0.5s ease;
  pointer-events: none;
}

.unified-feature-diagram--play .connectors-bg {
  opacity: 0;
  animation: unified-feature-fadeIn 0.8s ease-out 0.8s forwards;
}

.unified-feature-diagram .connectors-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.unified-feature-diagram__hub:hover ~ .connectors-bg {
  transform: translate(-50%, -50%) scale(1.02);
  filter: brightness(1.05);
}

.unified-feature-diagram .feature-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  outline: none;
  max-width: 28%;
}

.unified-feature-diagram--play .feature-wrapper {
  opacity: 0;
  transform: translateY(20px);
}

.unified-feature-diagram .feature-wrapper:hover {
  transform: translateY(-8px) scale(1.05);
}

.unified-feature-diagram .feature-wrapper:focus-visible {
  outline: 2px solid #ed0f84;
  outline-offset: 4px;
  border-radius: 12px;
}

.unified-feature-diagram .feature-card {
  width: clamp(62px, 11cqw, 110px);
  height: clamp(62px, 11cqw, 110px);
  min-width: 62px;
  min-height: 62px;
  max-width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  box-sizing: border-box;
}

.unified-feature-diagram--play .feature-card {
  transform: scale(0);
  animation: unified-feature-popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.unified-feature-diagram .feature-wrapper:hover .feature-card {
  box-shadow: 0 15px 40px rgba(247, 145, 198, 0.35);
  border: 2px solid #f791c6;
}

.unified-feature-diagram .feature-icon {
  width: 62%;
  height: 62%;
  max-width: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.unified-feature-diagram .feature-wrapper:hover .feature-icon {
  transform: scale(1.2) rotate(-5deg);
}

.unified-feature-diagram .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.unified-feature-diagram .feature-label {
  font-family: var(--font-regular-satoshi), var(--regular-font-p), -apple-system, sans-serif;
  font-size: clamp(9px, 2.5cqw, 12px);
  color: #333;
  text-align: center;
  line-height: 1.35;
  font-weight: 700;
  margin-top: clamp(5px, 1cqw, 14px);
  opacity: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.unified-feature-diagram--play .feature-label {
  opacity: 0;
  animation: unified-feature-fadeIn 0.4s ease-out forwards;
}

.unified-feature-diagram .feature-wrapper:hover .feature-label {
  color: #f791c6;
  transform: translateY(-3px);
  font-weight: 700;
}

.unified-feature-diagram .wrapper-1 {
  top: 4.1667%;
  left: 2.5%;
}

.unified-feature-diagram .wrapper-2 {
  top: 40.833%;
  left: 2.5%;
}

.unified-feature-diagram .wrapper-3 {
  top: 77.5%;
  left: 2.5%;
}

.unified-feature-diagram .wrapper-4 {
  top: 4.1667%;
  right: 2.5%;
  left: auto;
}

.unified-feature-diagram .wrapper-5 {
  top: 40.833%;
  right: 2.5%;
  left: auto;
}

.unified-feature-diagram .wrapper-6 {
  top: 77.5%;
  right: 2.5%;
  left: auto;
}

.unified-feature-diagram--play .wrapper-1 {
  animation: unified-feature-slideUpFade 0.5s ease-out 1s forwards;
}

.unified-feature-diagram--play .wrapper-1 .feature-card {
  animation-delay: 1s;
}

.unified-feature-diagram--play .wrapper-1 .feature-label {
  animation-delay: 1.3s;
}

.unified-feature-diagram--play .wrapper-2 {
  animation: unified-feature-slideUpFade 0.5s ease-out 1.15s forwards;
}

.unified-feature-diagram--play .wrapper-2 .feature-card {
  animation-delay: 1.15s;
}

.unified-feature-diagram--play .wrapper-2 .feature-label {
  animation-delay: 1.45s;
}

.unified-feature-diagram--play .wrapper-3 {
  animation: unified-feature-slideUpFade 0.5s ease-out 1.3s forwards;
}

.unified-feature-diagram--play .wrapper-3 .feature-card {
  animation-delay: 1.3s;
}

.unified-feature-diagram--play .wrapper-3 .feature-label {
  animation-delay: 1.6s;
}

.unified-feature-diagram--play .wrapper-4 {
  animation: unified-feature-slideUpFade 0.5s ease-out 1.45s forwards;
}

.unified-feature-diagram--play .wrapper-4 .feature-card {
  animation-delay: 1.45s;
}

.unified-feature-diagram--play .wrapper-4 .feature-label {
  animation-delay: 1.75s;
}

.unified-feature-diagram--play .wrapper-5 {
  animation: unified-feature-slideUpFade 0.5s ease-out 1.6s forwards;
}

.unified-feature-diagram--play .wrapper-5 .feature-card {
  animation-delay: 1.6s;
}

.unified-feature-diagram--play .wrapper-5 .feature-label {
  animation-delay: 1.9s;
}

.unified-feature-diagram--play .wrapper-6 {
  animation: unified-feature-slideUpFade 0.5s ease-out 1.75s forwards;
}

.unified-feature-diagram--play .wrapper-6 .feature-card {
  animation-delay: 1.75s;
}

.unified-feature-diagram--play .wrapper-6 .feature-label {
  animation-delay: 2.05s;
}

@keyframes unified-feature-scaleIn {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes unified-feature-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes unified-feature-popIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes unified-feature-slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes unified-feature-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(247, 145, 198, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(247, 145, 198, 0);
  }
}

.unified-feature-diagram .inner-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  animation: none;
}

.unified-feature-diagram--play .inner-ring::after {
  animation: unified-feature-pulse 2s ease-in-out infinite;
  animation-delay: 2.2s;
}

/* Static diagram when JavaScript is disabled */
html:not(.js) #unified-feature-diagram-root .outer-ring,
html:not(.js) #unified-feature-diagram-root .inner-ring,
html:not(.js) #unified-feature-diagram-root .white-circle {
  animation: none !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

html:not(.js) #unified-feature-diagram-root .logo-img,
html:not(.js) #unified-feature-diagram-root .connectors-bg,
html:not(.js) #unified-feature-diagram-root .feature-label {
  opacity: 1 !important;
  animation: none !important;
}

html:not(.js) #unified-feature-diagram-root .feature-wrapper {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
}

html:not(.js) #unified-feature-diagram-root .feature-card {
  transform: scale(1) !important;
  animation: none !important;
}

html:not(.js) #unified-feature-diagram-root .inner-ring::after {
  animation: unified-feature-pulse 2s ease-in-out infinite;
  animation-delay: 2s;
}

html:not(.js) #unified-feature-diagram-root .unified-feature-diagram__hub,
html:not(.js) #unified-feature-diagram-root .feature-wrapper {
  pointer-events: auto !important;
  visibility: visible !important;
}

@media (prefers-reduced-motion: reduce) {
  .unified-feature-diagram *,
  .unified-feature-diagram *::before,
  .unified-feature-diagram *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .unified-feature-diagram .outer-ring,
  .unified-feature-diagram .inner-ring,
  .unified-feature-diagram .white-circle {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1 !important;
  }

  .unified-feature-diagram .logo-img,
  .unified-feature-diagram .connectors-bg,
  .unified-feature-diagram .feature-label {
    opacity: 1 !important;
  }

  .unified-feature-diagram .feature-card {
    transform: scale(1) !important;
  }

  .unified-feature-diagram .feature-wrapper {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram *,
#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram *::before,
#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram *::after {
  animation: none !important;
  transition-duration: 0.15s !important;
}

#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .outer-ring,
#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .inner-ring,
#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .white-circle {
  transform: translate(-50%, -50%) scale(1) !important;
  opacity: 1 !important;
}

#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .logo-img,
#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .connectors-bg,
#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .feature-label {
  opacity: 1 !important;
}

#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .feature-card {
  transform: scale(1) !important;
}

#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .feature-wrapper {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#unified-platform-diagram.unified-platform--reduce-motion .unified-feature-diagram .inner-ring::after {
  animation: none !important;
}

.unified-platform-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.unified-hotspot {
  position: absolute;
  pointer-events: auto;
  text-decoration: none;
  color: inherit;
  z-index: 2;
  outline: none;
  box-sizing: border-box;
}

/* Rounded-rect hit areas matching diagram boxes (position/size via inline %) */
.unified-hotspot--box {
  margin: 0;
  overflow: visible;
}

/* Circular hub over center logo */
.unified-hotspot--hub {
  left: 50%;
  top: 50%;
  width: 15.5%;
  aspect-ratio: 1;
  max-width: 168px;
  margin: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.unified-hotspot-surface {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.unified-hotspot--hub .unified-hotspot-surface {
  border-radius: 50%;
}

.unified-hotspot:hover .unified-hotspot-surface,
.unified-hotspot:focus-visible .unified-hotspot-surface {
  background-color: transparent;
  box-shadow: none;
}

.unified-hotspot:focus-visible {
  outline: 2px solid #ED0F84;
  outline-offset: 3px;
}

.unified-hotspot-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 8px 14px;
  background: #fff;
  color: #0f0f0f;
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 5;
}

.unified-hotspot--hub .unified-hotspot-label {
  bottom: auto;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-4px);
}

.unified-hotspot:hover .unified-hotspot-label,
.unified-hotspot:focus-visible .unified-hotspot-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.unified-hotspot--hub:hover .unified-hotspot-label,
.unified-hotspot--hub:focus-visible .unified-hotspot-label {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .unified-hotspot-label {
    font-size: 11px;
    padding: 6px 10px;
    max-width: min(220px, 70vw);
    white-space: normal;
    text-align: center;
  }
}

@media screen and (max-width: 650px) {
  .mida-solution.mida-solution--unified {
    padding: 56px 20px 96px;
  }
}

/* ========== Modular solutions (tabbed) — index ========== */
.modular-solutions {
  width: 100%;
  background: #ffffff;
  padding: 72px 24px 88px;
  box-sizing: border-box;
}

/* Anchor scroll: clear fixed/sticky header */
#our-solutions {
  scroll-margin-top: clamp(72px, 12vh, 120px);
}

.modular-solutions-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.modular-solutions-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #002343;
  background: transparent;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #002343;

  
}

.modular-solutions-title {
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #0c1017;
  max-width: 920px;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 44px;
  word-wrap: break-word;
}

.modular-solutions-lead {
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  color: #5c6370;
  max-width: 640px;
  margin: 0 0 8px;
}

.modular-solutions-panel {
  width: 100%;
  margin-top: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04); */
  overflow: hidden;
}

.modular-solutions-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #e8eaed;
  box-sizing: border-box;
}

.modular-solutions-tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 10px 14px;
  margin: 0;
  border: none;
  background: none;
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modular-solutions-tab:hover {
  color: #0c1017;
}

.modular-solutions-tab.is-active {
  color: #000000;
}

.modular-solutions-tab.is-active::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 3px;
  background: #ED0F84;
  border-radius: 2px 2px 0 0;
}

/* Narrow: two rows of three, still evenly spread */
@media screen and (max-width: 720px) {
  .modular-solutions-tabs {
    flex-wrap: wrap;
  }

  .modular-solutions-tab {
    flex: 1 1 33.333%;
    max-width: 33.333%;
    font-size: 13px;
    padding: 14px 8px 12px;
    white-space: normal;
    line-height: 1.25;
  }
}

.modular-solutions-panes {
  padding: 0;
}

.modular-solutions-pane {
  padding: 40px 40px 44px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modular-solutions-pane[hidden] {
  display: none !important;
}

.modular-solutions-pane.modular-pane--exit {
  display: block !important;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

.modular-solutions-pane.modular-pane--enter {
  opacity: 0;
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  .modular-solutions-pane {
    transition: none;
  }

  .modular-solutions-pane.modular-pane--exit,
  .modular-solutions-pane.modular-pane--enter {
    opacity: 1;
    transform: none;
  }
}

.modular-solutions-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: center;
}

.modular-solutions-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.modular-product-wordmark {
  margin: 0;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.modular-product-wordmark__mida {
  color: #0c1017;
  text-transform: lowercase;
}

.modular-product-wordmark__accent {
  color: #ED0F84;
  text-transform: lowercase;
}

.modular-product-wordmark--tyche .modular-product-wordmark__tyche {
  color: #0c1017;
  font-size: 32px;
}

.modular-solutions-subtitle {
  margin: 0;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
}

.modular-solutions-desc {
  margin: 0;
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #5c6370;
  max-width: 420px;
}

.modular-solutions-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  background: #ED0F84;
  color: #fff !important;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.modular-solutions-cta:hover {
  color: #fff !important;
}

.modular-solutions-visual {
  min-width: 0;
}

.modular-solutions-visual-frame {
  /* border-radius: 14px;
  background: linear-gradient(160deg, #e8f4fc 0%, #d4e8f7 45%, #cfe5f5 100%); */
  padding: 20px 16px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modular-solutions-visual-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

@media screen and (max-width: 900px) {
  .modular-solutions-pane-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .modular-solutions-visual {
    order: -1;
  }

  .modular-solutions-pane {
    padding: 28px 20px 36px;
  }

  .modular-solutions-copy {
    align-items: center;
    text-align: center;
  }

  .modular-solutions-desc {
    max-width: none;
  }
}

@media screen and (max-width: 500px) {
  .modular-solutions {
    padding: 48px 16px 64px;
  }

  .modular-solutions-tab {
    font-size: 12px;
    padding: 12px 6px 10px;
  }
}

/* ========== Who we work with (index) ========== */
.who-we-work {
  width: 100%;
  background: #f0f4ff;
  padding: 72px 24px 88px;
  box-sizing: border-box;
}

.who-we-work-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.who-we-work-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #002343;
  background: transparent;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #002343;
}

.who-we-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  width: 100%;
  align-items: start;
}

.who-we-work-feature {
  background: #fff;
  border-radius: 20px;
  padding: 32px 32px 28px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  box-sizing: border-box;
}

.who-we-work-feature-title {
  margin: 0;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: #0c1017;
}

.who-we-work-feature-text {
  margin: 0;
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #5c6370;
}

.who-we-work-feature-media {
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.who-we-work-feature-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.who-we-work-segments {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.who-we-work-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 22px 22px 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  box-sizing: border-box;
}

.who-we-work-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(237, 15, 132, 0.1);
  color: #ED0F84;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.who-we-work-card-body {
  min-width: 0;
}

.who-we-work-card-title {
  margin: 0 0 8px;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #0c1017;
}

.who-we-work-card-desc {
  margin: 0;
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #5c6370;
}

@media screen and (max-width: 900px) {
  .who-we-work-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .who-we-work-feature {
    padding: 28px 22px 24px;
  }
}

@media screen and (max-width: 500px) {
  .who-we-work {
    padding: 52px 16px 64px;
  }

  .who-we-work-inner {
    gap: 28px;
  }

  .who-we-work-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .who-we-work-card-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ========== Platform architecture (index) ========== */
.platform-architecture {
  width: 100%;
  background: #a80a52;
  padding: 72px 20px 88px;
  box-sizing: border-box;
  color: #fff;
}

.platform-architecture-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.platform-architecture-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: transparent;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.platform-architecture-title {
  margin: 8px 0 0;
  max-width: 720px;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.platform-architecture-lead {
  margin: 0 0 16px;
  max-width: 520px;
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.platform-architecture-flow {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0 4px;
  row-gap: 20px;
}

.platform-architecture-step {
  flex: 0 1 auto;
  width: 140px;
  max-width: 28vw;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0 4px;
}

.platform-architecture-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.platform-architecture-icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.platform-architecture-step-title {
  margin: 0 0 6px;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.platform-architecture-step-desc {
  margin: 0;
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

/* Same height as .platform-architecture-icon-wrap — aligns → with icon row */
.platform-architecture-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 1.25rem;
  height: 60px;
  margin: 0 2px;
  padding: 0 4px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  font-weight: 300;
  user-select: none;
}

@media screen and (max-width: 1100px) {
  .platform-architecture-flow {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .platform-architecture-step {
    width: 120px;
    max-width: 30%;
  }

  .platform-architecture-arrow {
    display: none;
  }

  .platform-architecture-flow {
    row-gap: 28px;
    column-gap: 12px;
  }
}

@media screen and (max-width: 600px) {
  .platform-architecture {
    padding: 56px 16px 72px;
  }

  .platform-architecture-flow {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
  }

  .platform-architecture-step {
    width: 100%;
    max-width: 280px;
  }

  .platform-architecture-arrow {
    display: flex;
    align-self: center;
    width: auto;
    height: auto;
    min-height: 2rem;
    margin: 2px 0 6px;
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
}

/* home accordion */
.mida-end-to-end-solution {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 121px 82px;
  gap: 10px;
}

/* Why Choose Mida (index — replaces accordion in .mida-end-to-end-solution) */
.mida-end-to-end-solution.mida-why-choose {
  display: block;
  background: transparent;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 80px 24px 100px;
  box-sizing: border-box;
}

.mida-why-choose-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.mida-why-choose-header {
  text-align: left;
  margin: 0 0 56px;
  max-width: 680px;
}

.mida-why-choose-title {
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #0c1017;
  margin: 0 0 16px;
}

.mida-why-choose-intro {
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #5c6370;
  margin: 0;
}

.mida-why-choose-rows {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.mida-why-choose-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: center;
}

.mida-why-choose-row--reverse .mida-why-choose-copy {
  order: 2;
}

.mida-why-choose-row--reverse .mida-why-choose-visual {
  order: 1;
}

.mida-why-choose-copy {
  min-width: 0;
}

.mida-why-choose-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 18px 9px 14px;
  width: fit-content;
  max-width: 100%;
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c1017;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  box-shadow:
    0 4px 14px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04);
}

.mida-why-choose-label img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.mida-why-choose-headline {
  font-family: var(--font-bold-aeonik), var(--bold-font-h1), sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.28;
  color: #0c1017;
  margin: 0 0 18px;
}

.mida-why-choose-accent {
  color: #ED0F84;
}

.mida-why-choose-body {
  font-family: var(--font-regular-satoshi), var(--regular-font-p), sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #5c6370;
  margin: 0;
  max-width: 540px;
}

.mida-why-choose-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mida-why-choose-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.mida-why-choose-visual--framed {
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.mida-why-choose-visual--framed img {
  border-radius: 12px;
}

@media screen and (max-width: 900px) {
  .mida-end-to-end-solution.mida-why-choose {
    padding: 56px 20px 72px;
  }

  .mida-why-choose-rows {
    gap: 48px;
  }

  .mida-why-choose-row,
  .mida-why-choose-row--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mida-why-choose-row .mida-why-choose-visual,
  .mida-why-choose-row--reverse .mida-why-choose-visual {
    order: -1;
  }

  .mida-why-choose-row--reverse .mida-why-choose-copy {
    order: 0;
  }

  .mida-why-choose-copy {
    text-align: center;
    margin: 0 auto;
  }

  .mida-why-choose-label {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .mida-why-choose-body {
    max-width: none;
  }
}

.mida-end-to-end-solution-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 1230px;
  align-items: flex-start;
}

.accordion-section-home {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1272.68px;
  gap: 60px;
  align-items: center;
  /* padding: 0 60px; */
}

.our-end-to-end-border-button {
  max-width: 159.6px;
  padding: 8.8px 15.8px 8.8px 15.8px;
  border-radius: 24px;
  border: 1px solid rgba(226, 226, 226, 1);
  font-family: var(--bold-font-h1);
  font-size: 10.69px;
  font-weight: 500;
  line-height: 15.6px;
  text-align: left;
  color: rgba(22, 23, 25, 1);
}

.end-to-end-solution-title {
  font-family: var(--bold-font-h1);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  color: rgba(22, 23, 25, 1);
}

.end-to-end-solution-text {
  font-family: var(--font-regular-satoshi);
  font-size: 22px;
  font-weight: 400;
  line-height: 29.7px;
  text-align: left;
  color: rgba(95, 96, 96, 1);
}

.accordion {
  max-width: 500px;
  width: 100%;
}

.accordion-item {
  background-color: #fff;
  /* border-bottom: 1px solid #E1E6ED; */
}

.accordion-item.active {
  background: linear-gradient(102.8deg, #fce8f2 4%, #fce8f2 100%);
  border-radius: 24px;

  /* Background color when active */
}

.accordion-item-header {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 1.5rem 3rem 0.5rem 1rem;
  min-height: 2.5rem;
  line-height: 1.25rem;
  position: relative;
  cursor: pointer;
}

.accordion-item-header h3 {
  font-family: var(--bold-font-h1);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: rgba(172, 172, 172, 1);
}

.accordion-item.active > .accordion-item-header h3 {
  color: rgba(1, 28, 57, 1);
}

.accordion-item-header::after {
  content: '\2193';
  font-size: 1rem;
  color: rgba(172, 172, 172, 1);
  position: absolute;
  right: 1rem;
}

.accordion-item-header span img {
  display: none;
}
.accordion-item.active > .accordion-item-header span {
  width: 44px;
  height: 44px;
  padding: 12px 7px 12px 10px;
  gap: 10px;
  border-radius: 22px;
  background-color: rgba(251, 203, 212, 1);
  display: flex;
  align-items: center;
}
.accordion-item.active > .accordion-item-header span img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.accordion-item.active > .accordion-item-header::after {
  content: '\2192';
  color: rgba(237, 15, 132, 1);
  font-weight: 700;
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  /* width: 479.68px;
height: 168px; */
  border-radius: 24px;
}

.accordion-item.active .accordion-item-body {
  background: linear-gradient(102.8deg, #fce8f2 4%, #fce8f2 100%);
  border-radius: 24px;
  /* Background color when active */
}

.accordion-item.active {
  margin-top: 30px;
  margin-bottom: 30px;
}

.accordion-item-body-content p {
  padding: 25px 30px;

  font-family: var(--font-regular-satoshi);
  font-size: 17px;
  font-weight: 400;
  line-height: 22.95px;
  text-align: left;
}

.accordion-image-container {
  width: 100%;
  /* max-width: 709px; */
  display: block;
  height: 629px;
  /* padding: 47px 0px 0px 104.32px; */
}

.accordion-image-container img {
  max-width: 509px;
  height: 629px;
  object-fit: contain;
}

.accordion-image-container-mobile {
  margin-top: 10px;
  display: block;
  overflow-x: hidden;
  display: none;
  /* Fix: Hide horizontal scroll on mobile */
  /* padding: 0 20px; */
  /* Add padding on mobile */
}

.accordion-image-container-mobile img {
  width: 100%;
  height: auto;
  /* max-width: 709px; */
  /* Maintain aspect ratio */
}

.our-end-to-end-solution-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .mida-end-to-end-solution {
    padding: 60px 40px;
  }

  .mida-end-to-end-solution.mida-why-choose {
    padding: 56px 24px 72px;
  }
  .accordion-section {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
  .accordion-section-home {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .accordion {
    width: 100%;
  }
  .accordion-wrapper {
    border-bottom: 1px solid #e1e6ed;
  }
  .accordion-item {
    border-bottom: 0;
  }

  /* .accordion-item-header::after {
    content: '\279C';
    font-size: 1rem;
    color: #398dfa;
    position: absolute;
    right: 1rem;
  } */

  .accordion-image-container {
    display: none;
  }

  .accordion-image-container-mobile {
    margin-top: 10px;
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .mida-end-to-end-solution-container {
    align-items: center;
  }

  .end-to-end-solution-title {
    text-align: center;
  }
  .end-to-end-solution-text {
    text-align: center;
  }
  .mida-end-to-end-solution {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mida-end-to-end-solution.mida-why-choose {
    padding: 48px 18px 64px;
  }

  .our-end-to-end-solution-mobile {
    padding-top: 30px;
    display: block;
  }
  .end-to-end-solution-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    text-align: center;
  }

  .end-to-end-solution-text {
    font-size: 22px;
    font-weight: 400;
    line-height: 29.7px;
    text-align: center;
  }

  .mida-end-to-end-solution-container {
    align-items: center;
  }

  .accordion-section-home {
    display: none;
  }

  .mobile-card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .inner-mobile-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(102.8deg, #fce8f2 4%, #fce8f2 100%);
    width: 100%;
    /* max-width: 345px; */
    /* height: 193px; */
    padding: 9.98px 26px 30.6px 14.97px;
    border-radius: 17.11px;
    gap: 20px;
  }

  .mobile-card-icon-title span {
    width: 44px;
    height: 44px;
    padding: 12px 7px 12px 10px;
    gap: 10px;
    border-radius: 22px;
    background-color: rgba(251, 203, 212, 1);
    display: flex;
    align-items: center;
  }

  .mobile-card-icon-title span img {
    width: 27px;
    height: 27px;
    object-fit: cover;
  }

  .mobile-card-icon-title h3 {
    font-family: var(--bold-font-h1);
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: rgba(1, 28, 57, 1);
    padding-bottom: 10px;
  }

  .mobile-card-info-text {
    font-family: var(--font-regular-satoshi);
    font-size: 17px;
    font-weight: 400;
    line-height: 22.95px;
    text-align: left;
    color: rgba(45, 52, 67, 1);
  }
}

.testimonial {
  max-width: 934px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0px 50px 121px 50px;
  gap: 50px;
  align-items: center;
}

.upper-testimonial {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-section-title {
  font-family: var(--font-regular-satoshi);
  font-size: 12px;
  font-weight: 700;
  line-height: 16.2px;
  text-align: center;
  color: rgba(21, 21, 22, 1);
}

.what-client-says {
  font-family: var(--font-bold-aeonik);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  color: rgba(26, 26, 26, 1);
}

/* .swiper-wrapper {
  height: 400px !important;
} */

.swiper-pagination {
  margin-top: 80px !important; /* Adjust the value as needed */
}

.swiper {
  max-width: 834px;
  width: 100%;
  /* padding: 121px 182px; */

  /* height: 100%; */
}

/* Non-active pagination bullets */
.swiper-pagination-bullet {
  background-color: rgba(255, 206, 232, 1) !important;
  opacity: 1 !important; /* Ensure the color is fully visible */
  width: 14px !important;
  /* max-width: 24px !important; */
  height: 14px !important;
}

/* Active pagination bullet */
.swiper-pagination-bullet-active {
  background-color: rgba(237, 15, 132, 1) !important;
  width: 17px !important;
  /* max-width: 24px !important; */
  height: 17px !important;
}

/* .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
      } */
.testimonial-card {
  display: flex;
  flex-direction: column;
  margin-right: 20px; /* Maintain consistent gap */
  padding-right: 0px;
  padding-left: 10px;
  margin-bottom: 40px;
}

.testimonial-text {
  background-color: rgba(13, 12, 13, 1);
  font-size: 24px;
  text-align: center;
  padding: 90px 85px;
  color: white;
  border-radius: 24px 24px 0 0;
  font-family: var(--font-regular-satoshi);
  font-size: 20px;
  font-weight: 500;
  line-height: 28.4px;
  text-align: center;
  flex-grow: 1; /* Make this area grow to fill extra space*/
}

.testimonial-testifier-info {
  background-color: rgba(242, 218, 255, 1);
  padding: 20px 50px 30px 50px;
  text-align: center;
  border-radius: 0 0 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-testifier-info h2 {
  font-family: var(--font-bold-aeonik);
  font-size: 28px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: center;
}

.testimonial-testifier-info .postion {
  font-family: var(--font-regular-satoshi);
  font-size: 13px;
  font-weight: 400;
  line-height: 20.25px;
  text-align: center;
  color: rgba(58, 58, 58, 1);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  .testimonial {
    padding: 71px 15px;
    gap: 40px;
  }

  .swiper-slide {
    margin-right: 0px;
  }
  .testimonial-text {
    font-size: 18px;
    line-height: 27.3px;
    padding: 50px 25px;
  }

  .testimonial-testifier-info h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
  }

  .testimonial-testifier-info .postion {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
  }
  .what-client-says {
    font-size: 36px;
    max-width: 255px;
    line-height: 43.2px;
    text-align: center;
  }
}
