* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "ClarityCity", sans-serif;
}

[class*="headline"] > h2 {
  font-size: var(--text-xl);
  color: var(--blue);
  margin-bottom: 1rem;
}

[class*="headline--secondary"] > h2 {
  font-size: clamp(18px, 2vw, 25px);
  color: var(--purple);
  margin-bottom: 2rem;
}

[class*="headline"] h3 {
  font-weight: var(--font-extrabold);
  font-size: var(--text-2xl);
  line-height: clamp(32px, 2.865vw, 55px);
  margin-bottom: 1.62rem;
}

/* Hero Section */
.hero {
  background-image: var(--bg-gradient);
}

.hero__content {
  text-align: center;
  padding: clamp(142px, 13.951vw - 0.86px, 267px) 0 clamp(72px, 7.366vw - 3.43px, 138px) 0;
  height: fit-content;
}

.hero__content h1 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
  font-weight: var(--font-bold);
  color: var(--dark-gray);
}

.hero__wrapper {
  background-color: var(--white);
  padding: 4rem clamp(66px, 6.458vw, 124px);
  border-radius: 15px;
}

.hero__wrapper .hero__description {
  width: clamp(26.125rem, -8.304rem + 53.795vw, 56.25rem);
  margin: auto;
  margin-top: clamp(20px, 0.67vw + 13.14px, 26px);
  /* margin-bottom: clamp(36px, 3.348vw + 1.72px, 66px) !important; */
  margin-bottom: 0 !important;
  line-height: var(--leading-p);
  font-size: var(--text-base);
  margin-bottom: 1rem;
  font-weight: var(--font-light);
  color: var(--gray);
}

.hero__video {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  object-fit: contain;
}

.hero__video video {
  width: 100%;
  margin-top: clamp(42px, 4.167vw, 80px);
  margin-top: clamp(42px, 4.167vw, 80px);
}

.collaborate__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  gap: clamp(18px, 1.667vw, 32px);
}

.collaborate__partner {
  display: flex;
}

.collaborate__partner p {
  font-weight: 700;
  width: fit-content;
  font-size: clamp(8px, 0.893vw - 1.14px, 16px);
  color: var(--dark);
  text-align: start;
  display: flex;
  align-items: center;
  margin-right: clamp(5px, 0.417vw, 8px);
}

.collaborate__partner:nth-child(1) p {
  max-width: clamp(42px, 4.167vw, 80px);
}

.collaborate__partner:nth-child(2) p {
  margin-right: 1rem;
  max-width: clamp(42px, 4.01vw, 77px);
}

.collaborate__partner:nth-child(3) p {
  margin-right: 1rem;
  max-width: clamp(69px, 6.771vw, 130px);
}

.collaborate__partner:nth-child(1) img {
  width: clamp(84.27px, 8.229vw + 0.01px, 158px);
}

.collaborate__partner:nth-child(2) img {
  width: clamp(70.4px, 6.875vw + 0px, 132px);
}

.collaborate__partner:nth-child(3) img {
  width: clamp(41px, 3.906vw + 1px, 76px);
}

/* CTA HERO SECTION */
.cta__hero__content {
  display: flex;
  align-items: center;
  padding: 2rem;
}

.cta__hero__left,
.cta__hero__right {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  overflow: hidden;
  max-height: 500px;
  width: 100%;
}

.cta__hero__left__container,
.cta__hero__right__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.cta__hero__list {
  padding: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  width: 90%;
  /* Responsive width */
  margin: 0 auto;
  color: #383838;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta__hero__list p {
  font-size: 1rem;
  /* Base font size */
  font-weight: 600;
  line-height: 1.5;
}

.image__container {
  display: none;
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

.image__container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chevron-up,
.chevron-down {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

.chevron-up {
  border-bottom: 20px solid var(--main);
  margin: 5px 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.chevron-down {
  border-top: 20px solid var(--main);
  margin: 5px 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.chevron-up:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.chevron-down:hover {
  transform: translateY(5px);
  opacity: 1;
}

/* Take Control Portofolio */
.take__control_portofolio {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  margin-top: clamp(72px, 7.366vw - 3.43px, 138px);
  margin-bottom: clamp(60px, 8.929vw - 31.43px, 140px);
}

.take__control__text {
  text-align: center;
  margin: 3% auto;
  margin-top: 0;
}

.take__control__text h2 {
  color: var(--dark-gray);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: 3%;
}

.take__control__text p {
  font-size: var(--text-xl-2);
  font-weight: var(--font-regular);
  line-height: 25px;
}

.take__control__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
  width: 36%;
}

.take__control__buttons > button:first-child {
  margin-left: 3%;
  padding: 3.5% 7%;
  font-weight: var(--font-semibold) !important;
  box-shadow: 0px 5px 4px rgba(0, 0, 0, 0.25);
}

.take__control__buttons > button:last-child {
  padding: 3.5% 5%;
}

.calculation__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.calculation__text {
  text-align: center;
  background-color: var(--white);
  padding: clamp(20px, 2.679vw - 7.43px, 44px) 2rem;
  border-radius: clamp(10px, 1.116vw - 1.43px, 20px);
  width: 100%;
  border: 2px solid var(--border-blue);
}

.calculation__text h2 {
  color: var(--main);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.calculation__text p {
  font-size: var(--text-base);
  font-weight: var(--font-light);
  line-height: 25px;

}

.calculation__text:hover .line__calculation {
  width: clamp(118px, 8.929vw + 26.57px, 198px);
}

.line__calculation {
  width: clamp(35px, 2.567vw + 8.71px, 58px);
  height: 2px;
  background-color: var(--purple);
  border-radius: 10px;
  margin: clamp(8px, 0.893vw - 1.14px, 16px) auto;
  transition: width 0.3s ease;
}

/* Akila Suite */
.akila__suite__container {
  background-image: var(--bg-gradient);
  padding: 5%;
  border-radius: 20px;
  margin-top: clamp(72px, 7.366vw - 3.43px, 138px) !important;
}

.akila__suite__text {
  width: 100%;
  display: flex;
  gap: 4vw;
}

.akila__suite__text h2 {
  color: var(--dark-gray);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  line-height: clamp(25px, 3.348vw - 9.29px, 55px);
  width: 37%;
}

.akila__suite__content h3 {
  color: var(--main);
  font-size: var(--text-xl);
  font-weight: var(--font-base);
  margin-bottom: 1%;
}

.akila__suite__content p {
  width: 80%;
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  color: var(--black);
  line-height: clamp(15px, 2.232vw - 7.86px, 35px);
}

.akila__suite__card__list {
  display: flex;
  padding-top: 3rem;
  width: fit-content;
  justify-content: space-between;
  width: 100%;
}

.akila__suite__images__card img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.akila__suite__images__card__reverse img {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.akila__suite__card__canvas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  height: clamp(278px, 27.232vw - 0.86px, 522px);
  width: clamp(216px, 21.094vw + 0px, 405px);
}

.akila__suite__images__card,
.akila__suite__images__card__reverse {
  height: 100%;
}

.akila__suite__card__text {
  background-color: var(--white);
  padding: clamp(16px, 1.563vw + 0px, 30px) clamp(14.5px, 1.451vw - 0.36px, 27.5px);
  border-radius: 15px;
  width: 100%;
  margin-top: calc(-1 * clamp(48px, 3.013vw + 0.14px, 58px));
}

.akila__suite__card__text__reverse {
  background-color: var(--white);
  padding: clamp(16px, 1.563vw + 0px, 30px) clamp(14.5px, 1.451vw - 0.36px, 27.5px);
  border-radius: 15px;
  width: 100%;
  margin-bottom: calc(-1 * clamp(48px, 3.013vw + 0.14px, 58px));
  z-index: 99;
}

.akila__suite__card__text p, .akila__suite__card__text__reverse p {
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  color: var(--black);

  line-height: clamp(15px, 1.116vw + 3.57px, 25px);
}

.akila__suite__card__text__icon {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: clamp(8px, 0.781vw + 0px, 15px);
}

.akila__suite__card__text__icon img {
  width: clamp(15px, 1.451vw + 0.14px, 28px);
  height: clamp(15px, 1.451vw + 0.14px, 28px);
  aspect-ratio: 1;
}

.akila__suite__card__text__icon h2 {
  color: var(--blue);
  font-size: var(--text-md);
  font-weight: var(--font-bold);
}

.akila__logo__container {
  overflow: hidden;
  width: 100%;
  padding: clamp(75px, 2.79vw + 46.43px, 100px) 0;
  position: relative;
}

.akila__logo__track {
  display: flex;
  width: fit-content;
  animation: scroll-marquee 10s linear infinite;
  width: max-content;
  gap: 8rem;
  justify-content: space-between;
}

.akila__logo__list__collaborators {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.akila__logo__list__collaborators img {
  max-height: 4rem;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll-marquee {
  to {
    transform: translateX(calc(-48.69% - 8rem));
  }
}

/* Quote Section */
section.quote {
  background-color: var(--white);
  padding: 4rem 0;
  position: relative;
  text-align: center;
}

.quote__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3% 0;
  position: relative;
  z-index: 1;
}

.quote__content h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-regular);
  color: var(--dark-gray);
  margin: 0 0 1rem;
  line-height: 1.5;
  width: 100%;
}

.quote__content h2 span {
  background-color: rgba(34, 109, 255, 0.2);
  padding: 0 0.5%;
}

.quote__author {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(10px, 0.558vw + 4.29px, 15px);
  /* margin-top: 1.5rem; */
  text-align: right;
}

.quote__author h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--purple);
}

.quote__author p {
  font-size: var(--text-sm);
  font-weight: var(--font-light);
  color: var(--dark-gray);
  width: 22%;
  line-height: 1.2;
}

.quote__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  z-index: 0;
  /* Places the image behind the text */
}

.quote__image img {
  width: 100%;
  height: auto;
}

/* Features Section */
section.features {
  height: fit-content;
  background-image: var(--bg-gradient);
}

.features__container-sm {
  padding: 7.5% 0;
}

.features__headline h2 {
  font-size: var(--text-md);
  color: var(--blue);
  margin-bottom: 1rem;
}

.features__headline--description {
  display: grid;
  color: var(--dark);
  grid-template-columns: 0.45fr 0.55fr;
  gap: 1.5rem;
  height: fit-content;
  align-items: center;
}

.features__headline--description h3 {
  font-weight: var(--font-bold);
  font-size: var(--text-2xl);
  line-height: clamp(32px, 2.679vw + 4.57px, 56px);
  margin: 0;
}

.features__headline--description p {
  font-size: var(--text-base);
  line-height: clamp(15px, 2.79vw - 13.57px, 40px);
  height: fit-content;
  color: var(--dark-gray);
  font-weight: var(--font-light);
}

.features__content {
  display: flex;
  gap: 4rem;
  align-items: stretch;
}

.features__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 30%;
}

.features__item {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 2px solid var(--border-blue);
  border-radius: 10px;
  width: 100%;
  padding: clamp(16px, 1.786vw - 2.29px, 32px) clamp(12.8px, 1.25vw, 24px);
  height: fit-content;
  /* min-height: 85px; */
  overflow: hidden;
  cursor: pointer;
  cursor: pointer;
}

.features__item.active {
  padding: 1.5rem;
  gap: 1rem;
  height: fit-content;
  cursor: auto;
}

.features__item.active .item__headline h4 {
  color: var(--blue);
}


.features__item.active ul {
  max-height: 500px;
  opacity: 1;
}
.features__item.active ul li {
  cursor: pointer;
}

.item__headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* height: 100%; */
}

.item__headline h4 {
  font-weight: var(--font-bold);
  font-size: var(--text-md);
  color: var(--black);
}

.item__headline p {
  font-family: "poppins";
  rotate: 90deg;
}

.item__description {
  display: flex;
  flex-direction: column;
  gap: clamp(12.8px, 0.357vw + 9.14px, 16px);
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.2s ease;
}

.item__description li {
  display: flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: var(--font-light);
  position: relative;
}

.circle {
  width: 0;
  height: 0;
  background-color: var(--purple);
  border-radius: 50%;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: margin-right 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.circle.show {
  width: clamp(8px, 1vw, 11px);
  height: clamp(8px, 1vw, 11px);
  margin-right: 8px;
  opacity: 1;
  transform: scale(1);
}

[class*="mobile-image-base"]{
  display: none;
}

.features__image-base {
  position: relative;
  width: 70%;
  border-radius: 15px;
  padding-top: 1.4rem;
  margin-right: -4vw;
}
.features__image-base img {
  min-height: clamp(21.375rem, 0.018rem + 33.371vw, 40.063rem);
  width: 100%;
}
#image-preview {
  opacity: 0;
  transition: opacity 0.3s ease;
}
#image-preview.show {
  opacity: 1;
}

/* ai-edge */
section.ai-edge {
  height: clamp(292px + 2rem, 18.973vw + 97.71px + 2rem, 462px + 2rem);
  background-color: var(--white);
  position: relative;
  margin: 5% 0;
  padding-bottom: 1rem;
}

.ai-edge__container-sm {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(17px, 8.705vw - 72.14px, 95px);
}

.ai-edge__headline {
  width: clamp(242px, 15.96vw + 78.57px, 385px);
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  position: inherit;
  z-index: 2;
  padding-top: 4%;
}

.ai-edge__headline h2 {
  font-size: var(--text-md);
  color: var(--blue);
  margin-bottom: 2%;
}

.ai-edge__headline h3 {
  width: clamp(164px, 10.714vw + 54.29px, 260px);
  margin-bottom: clamp(20px, 0.67vw + 13.14px, 26px);
  color: var(--dark-gray);
}

.ai-edge__headline p {
  line-height: var(--leading-p);
}

.ai-edge__headline--description {
  color: var(--dark);
  line-height: 1.5rem;
  font-size: var(--text-base);
  padding-top: 6%;
}

.ai-edge__headline--description p {
  color: var(--dark-gray);
  font-size: var(--text-base);
  font-weight: var(--font-light);
}

.ai-edge__slider-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 3%;
}

.ai-edge__sliders {
  width: clamp(604px, 59.821vw - 8.57px, 1140px);
  position: relative;
  display: flex;
  align-items: center;
  right: 0;
  padding: 0.8%;
  background-color: var(--dark);
  padding-right: 0;
  border-radius: clamp(0.625rem, 1.964rem + -1.116vw, 1.25rem) 0 0 clamp(0.625rem, 1.964rem + -1.116vw, 1.25rem);
}

.sliders__wrapper {
  width: 100%;
  border-radius: 16px 0 0 16px;
}

.swiper-wrapper {
  height: fit-content;
  width: stretch;
}

.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  aspect-ratio: 1;
  border: 2px solid var(--main);
  background-color: transparent;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--main);
}

.slide {
  width: 61%;
  height: fit-content;
}

.play-button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(40px, 4.167vw + 0.01px, 75px);
  height: clamp(40px, 4.167vw + 0.01px, 75px);
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: clamp(266px, 17.411vw + 87.71px, 422px);
  object-fit: cover;
  border-radius: 16px;
}

.ai-edge__bullets {
  bottom: -14% !important;
  padding-left: 20vw;
  opacity: 1;
}

.swiper-pagination-bullet {
  width: 18px;
  height: 18px;
}

/* CTA Send Email */
.cta__send__email {
  background-image: var(--bg-gradient);
  padding-top: 6.9%;
}

.cta__send__email-container-sm {
  position: relative;
  margin-bottom: 11% !important;
}

.cta__send__email-container-sm img {
  position: absolute;
  width: 100%;
}

.cta__send__email__top {
  position: inherit;
  width: 45%;
}

.cta__send__email__top__content {
  padding-top: clamp(46px, 4.576vw - 0.86px, 87px);
  padding-left: clamp(53px, 5.246vw - 0.71px, 100px);
}

.cta__send__email__heading h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: clamp(20px, 4.688vw - 28px, 62px);
  color: var(--dark);
}

.cta__send__email__heading p {
  font-size: var(--text-base);
  font-size: var(--text-base);
  color: var(--dark);
  margin-bottom: clamp(45px, 1.674vw + 27.86px, 62px);
  font-weight: var(--font-light);
  line-height: 1.5;
}

.cta__send__email__form {
  display: grid;
  box-shadow: inset 0 0 1px 1px var(--dark);
  border-radius: 5px;
  grid-template-columns: 55% 1fr;
  width: 100%;
}

.cta__send__email__form input {
  padding: clamp(9px, 0.781vw + 1px, 16px) clamp(12px, 1.339vw - 1.71px, 24px);
  border: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  outline: none;
  color: var(--dark);
  background-color: transparent;
  /* width: 50%; */
  font-size: var(--text-base);
  font-weight: var(--font-regular);
}

.cta__send__email__form input::placeholder {
  color: var(--gray);
  font-size: var(--text-base);
}

.cta__send__email__form button {
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  /* width: 50%; */
}

.line__send__email {
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  border-radius: 10px;
}

.news {
  margin-top: 9.3%;
  margin-bottom: clamp(75px, 6.138vw + 12.14px, 130px);
}

.news__headline h2 {
  margin-bottom: 2% !important;
  color: var(--purple);
}

.news__headline h3 {
  font-weight: var(--font-bold);
  margin-bottom: 2.7%;
  font-size: var(--text-2xl) !important;
}

.news__content {
  overflow: hidden;
}

.news__wrapper {
  position: relative;
}

.news__content-wrapper {
  padding: 10px 0;
}

.news__content-wrapper--item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transform: perspective(1000px) translateZ(0);
  box-shadow: 0 2px 6px -4px rgba(0, 0, 0, 0.1); 
  will-change: transform, box-shadow;
  margin-bottom: 20px;
  background: white; 
}

.news__content-wrapper--item:hover {
  transform: perspective(1000px) translateY(-8px) translateZ(20px);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.2);
}

.news__content-wrapper--item img {
  width: 100%;
  height: auto;
  margin-bottom: clamp(15px, 1.451vw + 0.14px, 28px);
  transition: transform 0.4s ease;
  display: block;
  aspect-ratio: 9.1 / 6.3;
  object-fit: cover;
}

.news__content-wrapper--item:hover img {
  transform: scale(1.03);
}

.news__content-wrapper--item h2 {
  font-size: var(--text-base);
  line-height: var(--leading-p);
  color: var(--gray);
  font-weight: var(--font-regular);
  padding: 0 15px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.news__content-wrapper--item:hover h2 {
  color: var(--dark-gray); 
}

.news__content-wrapper--item div {
  margin-top: 3%;
  padding: 5%;
  border-top: 2px solid #f4f4f4;
  transition: border-color 0.3s ease;
}


.news__content-wrapper--item div a {
  text-decoration: none;
  color: var(--dark);
  font-weight: var(--font-medium);
  font-size: var(--text-lg);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.news__content-wrapper--item:hover div a {
  color: var(--purple);
  transform: translateX(4px);
}

a.news__content-wrapper--item-link {
  text-decoration: none;
  cursor: pointer;
  display: block;
  color: inherit;
}
/* Footer */

.footer {
  background-image: var(--bg-gradient);
  padding: 4% 0 2%;
}

.footer__logo {
  width: 50%;
}

.footer__logo img {
  width: 100%;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border-radius: 15px;
  margin: 0 auto;
}

.footer__top img {
  width: 50%;
  object-fit: cover;
  background-repeat: no-repeat;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.footer__top__content {
  padding: 2rem 0 0 5rem;
  width: 50%;
}

.footer__heading h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: 2rem;
  color: var(--dark);
  width: 80%;
}

.footer__heading p {
  font-size: var(--text-base);
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 2rem;
}

.footer__cta {
  display: flex;
  border: 1px solid var(--dark);
  margin-bottom: 40px;
  border-radius: 10px;
}

.footer__cta input {
  padding: 1rem;
  border: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 50%;
}

.footer__cta input::placeholder {
  color: var(--dark);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.footer__cta button {
  cursor: pointer;
  font-size: var(--text-md);
  font-weight: var(--font-semibold);
  width: 50%;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.line {
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  border-radius: 10px;
  margin: 5rem 0;
}

.footer__logo-section {
  width: 30%;
}

.footer__social {
  display: flex;
  justify-self: start;
  flex-direction: column;
  margin-top: 13%;
}

.footer__social a {
  margin-right: 1%;
  color: #333;
  text-decoration: none;
  width: fit-content;
  height: 100%;
}

.footer__social span {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: var(--dark);
  margin-bottom: 10%;
}

.footer__social-icons {
  display: flex;
  gap: clamp(1rem, 0rem + 1.563vw, 1.875rem);
  width: 100%;
  height: clamp(1.125rem, -0.089rem + 1.897vw, 2.188rem);
}

.footer__social-icons > a > img {
  width: fit-content;
  height: 100%;
}

.footer__columns {
  display: flex;
  width: 65.8%;
  gap: 5vw;
  justify-content: space-between;
  margin: 1% 0 0px;
}

.footer__column h3 {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: var(--dark);
}

/* .footer__columns > .footer__column:nth-child(3) > h3 {
  margin-bottom: 23%;
} */

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45vw;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 2.3vw;
}

.footer__column li {
  margin-bottom: 14%;
}

.footer__column a {
  font-size: var(--text-base);
  font-weight: var(--font-reguler);
  color: var(--dark);
  text-decoration: none;
}

.footer__bottom {
  padding: 9.4% 0 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  color: var(--dark);
  font-size: var(--text-md);
  font-weight: var(--font-semibold);
}

.footer__legal {
  display: flex;
  gap: 0.3vw;
}

.footer__legal a {
  color: var(--dark);
  font-size: var(--text-md);
  font-weight: var(--font-semibold);
  text-decoration: none;
}

.footer__legal p {
  color: var(--dark);
  font-size: var(--text-md);
  font-weight: var(--font-semibold);
}

/* Resposive Design */
@media (max-width: 767px) {
  .hero__content {
    padding: 100px 0 4rem 0;
  }

  .hero__wrapper {
    padding: 50px clamp(7px, 5.714vw - 13.57px, 23px);
  }

  .hero__wrapper .hero__description {
    width: 100%;
    text-align: center;
    margin: auto 0;
  }

  .hero__content h1 {
    font-size: var(--text-xl);
  }

  .hero__video video {
    width: 100%;
  }

  .collaborate__wrapper {
    flex-direction: column;
    gap: clamp(20px, 2.857vw + 9.71px, 28px);
  }
  .collaborate__partner {
    flex-direction: column;
    align-items: center;
  }

  .collaborate__partner p {
    margin-right: 0 !important;
    margin-bottom: clamp(10px, 2.143vw + 2.29px, 16px);
    text-align: center;
    max-width: fit-content !important;
    font-size: var(--text-sm);
  }

  .collaborate__partner:nth-child(1) img {
    width: clamp(113px, 14.286vw + 61.57px, 153px);
  }

  .collaborate__partner:nth-child(2) img {
    width: clamp(94px, 21.071vw + 18.14px, 153px);
  }

  .collaborate__partner:nth-child(3) img {
    width: clamp(64px, 17.5vw + 1px, 113px);
  }

  /* CTA */
  .cta__send__email {
    padding: 13.5% 0 1%;
  }

  .cta__hero__content {
    flex-direction: column;
  }

  .cta__send__email-container-sm {
    max-width: 640px !important;
    width: 86.11% !important;
    margin-bottom: 20% !important;
  }

  .line__send__email {
    display: none;
  }

  .cta__send__email__top {
    width: 100% !important;
  }

  .cta__send__email__top__content {
    padding: 71% 0 0 7% !important;
    width: 90%;
  }

  .cta__send__email__heading h2 {
    font-size: var(--text-lg);
    width: 80%;
    margin-bottom: 7% !important;
  }

  .cta__send__email__heading p {
    font-size: var(--text-base);
    margin-bottom: 7% !important;
    line-height: 1.2;
    width: 100%;
  }

  .cta__send__email__form input::placeholder {
    color: var(--gray);
    font-size: var(--text-xs);
  }

  .cta__send__email__form button {
    font-size: var(--text-xs);
  }

  .cta__send__email__form {
    width: 100%;
  }

  .cta__hero__left,
  .cta__hero__right {
    width: 100%;
    max-height: 200px;
    gap: 1rem;
  }

  .cta__hero__list {
    width: 90%;
  }

  /* Take Control */
  section.take__control_portofolio {
    margin-bottom: clamp(31px, -1.071vw + 34.86px, 28px);
    margin-top: 6%;
  }

  .take__control__text {
    text-align: center;
    margin: 9% auto 3%;
  }

  .take__control__text h2 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    width: 72%;
    justify-self: center;
    margin-bottom: 3.5%;
  }

  .take__control__text p {
    font-size: var(--text-md);
    font-weight: var(--font-regular);
    line-height: 1.3;
    width: 67%;
    justify-self: center;
  }

  .take__control__buttons {
    gap: 1rem;
    width: 68%;
  }

  .take__control__buttons button {
    font-size: var(--text-sm);
  }

  .calculation__content {
    display: flex;
    /* Ensure it's a flex container */
    flex-wrap: wrap;
    /* Allow items to wrap */
    gap: 5.5vw;
    /* Add spacing between items */
    justify-content: center;
    /* Center-align items horizontally */
  }

  .calculation__text {
    padding: 4% !important;
    border-radius: 10px;
    width: 89%;
    text-align: center;
    background-color: #fff;
    border: 1px solid #226dff;
  }

  .calculation__text h2 {
    font-size: var(--text-lg);
    /* Adjust font size for readability */
    font-weight: var(--font-bold);
    white-space: nowrap;
    /* Prevent text from wrapping */
    overflow: hidden;
    /* Hide overflow if it's too long */
    text-overflow: ellipsis;
    /* Add ellipsis (...) for overflow cases */
    margin-bottom: 0;
  }

  .calculation__text p {
    font-size: var(--text-base);
    /* Adjust font size for paragraph */
    font-weight: var(--font-regular);
    line-height: 1.3 !important;
    /* Improved readability */
    margin: 0;
    /* Reset margin */
  }

  .line__calculation {
    width: 50%;
    /* Fixed width for the divider */
    height: 2px;
    /* Thickness of the line */
    background-color: #f3eefc;
    /* Line color */
    margin: 5% auto 3% !important;
    /* Center alignment */
  }

  /* Akila Suite */
  .akila__suite__container {
    background-image: var(--bg-gradient);
    padding: 1% 6%;
    border-radius: 20px;
    margin-top: 8% !important;
  }
  .akila__suite__content {
    flex-direction: column;
    gap: 0;
    margin-top: 9%;
  }

  .akila__suite__card__canvas {
    width: 100% !important;
    height: 100% !important;
  }

  .akila__suite__content h3 {
    font-size: var(--text-md);
    margin-bottom: 4%;
  }

  .akila__suite__text {
    flex-direction: column;
    gap: 2vw;
  }
  .akila__suite__text h2 {
    width: 100%;
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
  }

  .akila__suite__text p {
    line-height: var(--leading-p);
    width: 100%;
  }

  .akila__suite__card__content {
    margin-top: 9%;
  }

  .akila__suite__card__swiper {
    padding-bottom: 8%;
    margin-bottom: 5%;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .akila__suite__card__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-top: 10%;
  }

  .akila__suite__card__text {
    padding: 4% 7%;
    margin-top: -7%;
    margin-bottom: 10px;
  }

  .akila__suite__card__text__reverse {
    padding: 1rem;
    margin-bottom: -10px;
    z-index: 99;
  }

  .akila__suite__card__text p, .akila__suite__card__text__reverse p {
    font-size: var(--text-base);
    font-weight: var(--font-light);
    line-height: 1.2 !important;
  }

  .akila__suite__card__text__icon {
    gap: 2vw;
  }

  .akila__suite__card__text__icon h2 {
    font-size: var(--text-md);
    font-weight: var(--font-bold);
  }

  .akila__suite__card__text__icon img {
    width: 20px;
    height: 20px;
  }

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

  .swiper .akila__suite__card__swiper {
    display: block;
  }

  .swiper {
    width: 100%;
    height: auto;
  }

  /* Akila Logo */
  .akila__logo__container {
    padding: 10% 0 0;
  }

  .akila__logo__list__collaborators {
    gap: 4vw;
    justify-content: space-between;
  }

  .akila__logo__list__collaborators img {
    max-height: 30% !important;
  }

  /* Quotes */
  section.quote {
    text-align: start;
    padding: 7% 0;
  }

  .quote__content {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    padding: 1rem 0 0;
  }

  .quote__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    z-index: 0;
  }

  .quote__image img {
    width: 80%;
  }

  .quote__content h2 {
    font-size: var(--text-lg);
    font-weight: var(--font-light);
    color: var(--dark-gray);
    margin: 1rem 0 0.5rem;
    line-height: 1.2;
    width: 90%;
  }

  .quote__author p {
    font-size: var(--text-base);
    width: 68%;
  }

  .quote__author {
    margin-top: 0;
  }

  .quote__author h3 {
    font-size: var(--text-md);
  }

  /* Features */
  .features__headline h2 {
    margin-bottom: 4%;
  }

  .features__headline--description {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    gap: 2vw;
    align-items: baseline;
  }

  .features__headline--description h3 {
    line-height: 1;
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    width: 90%;
  }

  .features__headline--description p {
    font-size: var(--text-base);
    line-height: 1.4;
  }

  .features__items{
    width: 100%;
  }
  
  [class*="mobile-image-base"]{
    display: none;
    width: 100%;
  }
  [class*="mobile-image-base"].active{
    display: flex;
  }
  [class*="mobile-image-base"] img {
    width: 106%;
  }

  .features__image-base{
    display: none;
  }

  /* Ai Edge */
  section.ai-edge {
    /* padding-bottom: 100%; */
    height: fit-content;
    margin: 9.5% 0 22% !important;
  }

  .ai-edge__container-sm {
    padding: 0.5% 0;
    align-items: baseline;
    height: fit-content;
  }

  .ai-edge__headline {
    width: 100% !important;
  }

  .ai-edge__headline h2 {
    margin-bottom: 0.5rem;
  }

  .ai-edge__headline--description h3 {
    font-weight: var(--font-bold);
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.2;
    margin-bottom: 5.5%;
  }

  .ai-edge__headline--description p {
    font-size: var(--text-base);
    line-height: 1.2;
  }

  .ai-edge__slider-wrapper {
    position: relative;
  }

  .ai-edge__sliders {
    width: 100% !important;
    border-radius: 0;
    padding: 8px 0;
    padding-left: 0;

  }
  .ai-edge__sliders > .sliders__wrapper{
    border-radius: 0;
  }

  .slide img {
    height: clamp(11.313rem, 2.744rem + 38.084vw, 21rem) !important;
    max-width: 640px;
    width: 100%;
  }
  
  .ai-edge__bullets {
    padding-left: 0;
    bottom: -7% !important;
  }

  .swiper-pagination-bullet {
    border: 1px solid var(--blue);
  }

  /* News */
  .news {
    margin-top: 9.3%;
    margin-bottom: 17%;
  }
  .news__headline h2 {
    font-size: var(--text-md);
    margin-bottom: 5% !important;
  }

  .news__headline h3 {
    font-size: var(--text-lg) !important;
  }

  .news__content-wrapper--item div a {
    font-size: var(--text-md);
  }

  .news__content-wrapper--item div {
    padding: 3%;
  }

  .news__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .news__wrapper > .news__content:last-child {
    margin-top: 3%;
  }

  .news__wrapper > .news__content:last-child > .swiper-pagination {
    bottom: -3%;
  }



  /* Footer */
  .footer {
    padding: 11% 0 0;
  }

  .footer__top {
    /* flex-direction: column-reverse; */
    align-items: center;
  }

  .footer__top img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .footer__top__content {
    width: 100%;
    padding: 2rem 0;
    text-align: center;
  }

  .footer__main {
    flex-direction: column;
    align-items: center;
    padding: 0 8%;
  }

  .footer__social span {
    margin-bottom: 13%;
    font-size: var(--text-base);
  }

  .footer__social-icons {
    gap: 4.5vw;
    height: fit-content;
    align-items: center;
  }
  .footer__social-icons a {
    width: fit-content;
  }
  .footer__social-icons a img {
    width: fit-content;
    height: clamp(1.625rem, 0.5rem + 5vw, 2.5rem);
  }

  .footer__logo-section {
    width: 100%;
  }

  .footer__social {
    margin-top: 5%;
  }

  .footer__social a {
    width: 31%;
  }

  .footer__columns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: start;
    margin-top: 16%;
    gap: 10vw;
  }

  .footer__column {
    width: fit-content;
  }

  .footer__column li {
    margin-bottom: 1%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 2.5vw;
    padding-bottom: 7%;
  }

  .footer__legal {
    gap: 1vw;
  }
}

@media (max-width: 1024px) {
  [class*="headline"] h3 {
    line-height: clamp(28px, 1.556vw + 16.06px, 32px);
  }

  .cta__hero__content {
    flex-direction: row;
    /* Row layout for medium screens */
  }

  .cta__hero__left,
  .cta__hero__right {
    width: 70%;
    /* Adjust width for medium screens */
  }

  .cta__hero__list {
    width: 90%;
    /* Adjusted width for lists */
  }

  /* Take Control */
  .calculation__text {
    padding: 1rem;
  }

  .calculation__text h2 {
    margin-bottom: 0;
  }

  .calculation__text p {
    line-height: clamp(18.8px, 2.431vw + 0.13px, 25px);
  }

  .line__calculation {
    margin: clamp(6px, 0.781vw + 0px, 8px) auto;
  }

  /* Quotes */
  section.quote {
    padding: 0 0 4%;
  }

  /* Akila Suite */
  .akila__suite__card__canvas {
    height: clamp(209px, 27.059vw + 1.19px, 278px);
    width: clamp(162px, 21.176vw - 0.64px, 216px);
  }

  .akila__suite__card__text p,
  .akila__suite__card__text__reverse p {
    line-height: clamp(10px, 1.961vw - 5.06px, 15px);
  }

  /* Akila Suite */
  .akila__logo__list__collaborators img {
    max-height: clamp(32px, 6.226vw - 15.75px, 20px);
  }

  /* Ai-edge */
  section.ai-edge {
    /* height: clamp(182px + 2rem, 28.646vw - 1.33px + 2rem, 292px + 2rem); */
    margin: 9.5% 0;
  }

  .ai-edge__headline {
    /* width: 100% !important; */
  }

  .ai-edge__headline--description {
    padding-top: 4%;
  }

  .ai-edge__headline {
    width: clamp(182px, 23.346vw + 2.93px, 242px);
  }

  .ai-edge__headline h3 {
    width: 100%;
  }

  .ai-edge__sliders {
    width: clamp(378px, 58.854vw + 1.33px, 604px);
  }

  .ai-edge__bullets {
    bottom: -5%;
  }

  .slide img {
    height: clamp(166px, 26.042vw - 0.67px, 266px);
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  /* CTA */
  .cta__send__email {
    padding-top: 6.5%;
  }

  .cta__send__email__top__content {
    padding-top: clamp(34px, 4.669vw - 1.81px, 46px);
    padding-left: clamp(40px, 5.058vw + 1.2px, 53px);
  }

  .cta__send__email__heading h2 {
    margin-bottom: clamp(15px, 1.946vw + 0.08px, 20px);
  }

  .cta__send__email__heading p {
    margin-bottom: 7%;
  }

  /* News */
  .news__content-wrapper--item h2 {
    font-size: var(--text-md);
  }

  /* Footer */
  .footer__social a {
    width: fit-content;
  }
}