.home-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.btn-client {
	width: 200px !important;
}

.content-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg-mobile {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 170px;
}

#hero-title {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: -6px -2px 20px rgb(0 0 0);
}

#typed-home {
  font-size: 20px;
  text-shadow: 11px -6px 20px rgb(0 0 0);
}

.subtitle-typed {
  margin-top: -20px;
}

.content-arrow-down {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: content-arrow-down-animation 2.5s ease-in-out infinite;
}

.content-arrow-down:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 28px 0 rgba(0, 0, 0, 0.3);
}

.content-arrow-down img {
  width: 32px;
  height: 32px;
  display: block;
}

@keyframes content-arrow-down-animation {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }

  100% {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin: 0;
    text-align: start;
    align-items: start;
    max-width: none;
    position: absolute;
    bottom: 80px;
    padding: 0 24px;
    gap: 80px;
  }

  .hero-bg {
    display: none;
  }

  .hero-bg-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .content-arrow-down {
    display: none;
  }

  #hero-title {
    font-size: 32px;
  }

  #typed-home {
    font-size: 16px;
  }
}

.content-about-system {
  max-width: 1220px;
  margin: auto;
  padding-top: 120px;
}

.about-system {
  padding: 0 24px;
  background-color: var(--color-primary-base);
}

.title-about-system {
  text-align: center;
  padding-top: 24px;
  margin-bottom: 15px;
  color: var(--color-background-base);
}

.subtitle-about-system {
  text-align: center;
}

.content-partners {
  width: 100%;
}

.content-cards-system {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 60px;
  margin-bottom: 80px;
}

.card-system {
  width: 289px;
  padding: 40px 24px;
  border-radius: 26px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 9px 10px 20px #0000001a, inset -11px -8px 20px rgb(255 255 255 / 9%);
  transition: .5s;
}

.card-system:hover {
  background-color: #F8FAFC33;
  transition: .5s;
}

.icon-card-system {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.icon-card-system img {
  width: 56px;
  height: 56px;
}

.card-system h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f1f5fb;
}

.card-system p {
  font-size: 16px;
  color: #d4dbea;
}

.button-view-solutions {
  justify-self: center;
  padding-bottom: 70px;
}

.integration-system {
  background-color: var(--color-background-dark);
  padding-top: 80px;
  height: 411px;
}

.title-integration-system {
  padding: 0 24px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--color-background-base);
}

.slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 64px;
  margin-bottom: 100px;
}

.slider-mobile {
  display: none;
}

.slide-track {
  display: flex;
  width: max-content;
  gap: 40px;
  margin-bottom: 100px;
  animation: scroll 100s linear infinite;
}

.item {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.explore-integrations {
  max-width: 1220px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  background-color: #F8FAFC33;
  padding: 170px 110px 30px 110px;
  margin-top: -95px;
  border-radius: 16px;
  backdrop-filter: blur(2px);
  box-shadow: inset 18px 20px 20px -22px rgb(0 0 0 / 11%);
}

.top-card-explore-integrations {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.top-card-explore-integrations h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 32px;
  color: #1E2F6F;
}

.btn-explore {
  display: inline-block;
  width: 280px;
  height: 53px;
  background: #F8FAFC;
  border: 2px solid #1E2F6F;
  border-radius: 40px;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1E2F6F;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-explore:hover {
  background: #1E2F6F;
  color: #F8FAFC;
  border-color: #1E2F6F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 47, 111, 0.2);
}

.explore-integrations-mobile {
  margin-top: 60px;
  padding: 0 24px;
  display: none;
}

.top-card-explore-integrations-mobile {
  padding: 24px 24px 40px 24px;
  background-color: var(--color-background-dark);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.top-card-explore-integrations-mobile h2 {
  color: var(--color-background-base);
  text-align: center;
}

.bottom-card-explore-integrations-mobile {
  max-width: 100%;
  margin-top: -1px;
}

.bottom-card-explore-integrations-mobile img {
  max-width: -webkit-fill-available;
  height: 382px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.your-business {
  margin: auto;
}

.title-your-business {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 15px;
}

.tabs {
  display: flex;
  gap: 33px;
  border-bottom: 2px solid transparent;
  justify-content: center;
}

.tab {
  background: none;
  border: none;
  padding: 10px 0;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-secondary);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.tab.active {
  font-weight: 700;
  color: var(--color-text-primary);
}

.tab-content-dekstop {
  display: flex;
  gap: 100px;
}

.tab-content-mobile {
  display: none;
}

.tab-infos {
  position: relative;
}

.tab-info-img {
  width: 610px;
}

.tab-info-img img {
  width: 610px;
  height: 420px;
  margin-top: 20px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.description-client {
  margin-bottom: 5px;
  font-weight: 700;
  padding-right: 110px;
}

.list-assessment {
  padding: 0 16px;
  line-height: 27px;
}

.buttons-actions-your-business {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 5px;
}

.buttons-actions-your-business-mobile {
  margin-top: 25px;
  display: none;
}

.glass-border {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
}

.glass-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.text-integration-highlight {
  color: var(--color-primary-light);
}

.star-rating {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  user-select: none;
  color: var(--color-secondary-dark);
  margin-bottom: 20px;
  margin-top: 20px;
}

.asset-assessment {
  width: 100%;
  height: 382px;
  margin-top: 20px;
  border-radius: 20px;
}

.customer-position {
  margin-bottom: 20px;
  color: var(--color-text-muted);
}

.all-about-system {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.button-arrow-down {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: inset -1px -2px 5px #ffffff;
  position: absolute;
  right: 0px;
  bottom: 24px;
}

.icon-button-arrow-down {
  font-size: 30px;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-content {
    margin: 0;
    text-align: start;
    align-items: start;
    max-width: none;
    position: absolute;
    bottom: 80px;
    padding: 0 24px;
    gap: 80px;
  }

  .hero-bg {
    display: none;
  }

  .integration-system {
    height: 700px;
  }

  .slider {
    margin: 0px;
  }

  .slide-track {
    margin: 0px;
  }

  .slider-mobile {
    display: block;
  }

  .hero-bg-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .content-cards-system {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 35px;
    margin-bottom: 60px;
  }

  .content-partners {
    display: flex;
    width: auto;
    justify-content: center;
    padding-top: 12px;
  }

  .tab-content-mobile {
    display: block;
  }

  .tab-content-dekstop {
    gap: 0;
    flex-direction: column;
  }

  .buttons-actions-your-business-mobile {
    display: block;
    text-align: center;
  }

  .buttons-actions-your-business {
    display: none;
  }

  .subtitle-typed {
    margin-top: -62px;
    margin-bottom: -38px;
    height: 51px;
  }

  .content-arrow-down {
    display: none;
  }

  .title-about-system {
    font-size: 30px;
  }

  .content-about-system {
    padding-top: 72px;
  }

  .title-integration-system {
    font-size: 30px;
  }

  .explore-integrations {
    flex-direction: column-reverse;
    padding: 110px 24px;
    margin: -63px 24px 0 24px;
  }

  .top-card-explore-integrations {
    width: 100%;
    text-align: center;
  }

  .top-card-explore-integrations h2 {
    font-size: 24px;
  }

  .bottom-card-explore-integrations {
    margin-top: 70px;
    text-align: center;
  }

  .tab-info-img {
    width: 100%;
  }

  .tab-info-img img {
    width: 100%;
    height: 295px;
  }

  .tab-content-home {
    padding: 0;
  }

  .tab-infos {
    padding: 0 24px;
    text-align: center;
  }

  .tab-infos h4 {
    padding-right: 0;
  }

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

  .button-view-solutions {
    width: 289px;
  }

  .button-view-solutions a {
    width: 100%;
  }
}
