:root {
  --gap-width: 20px;
  --slide-width: 200px;
  --slide-height: 100px;
  --overlay-bg-color: rgba(0, 0, 0, 0.5);
  --overlay-text-color: #fff;
  --overlay-transition: opacity 0.3s ease;
  --border-radius: 20px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 0px;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  text-align: center;
  font-family: "Tenor Sans";
}

.backgroundBody {
  background: url("images/backgroundBody.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 125%;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  font-family: "Unbounded";
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
  padding: 25px 120px;
  top: 0;
}

header.scrolled {
  background: linear-gradient(135deg,
      rgba(132, 21, 218, 0.9),
      rgba(46, 39, 196, 0.9));
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-menu {
  background: rgba(132, 131, 136, 0.7);
}

@media (max-width: 1024px) {
  header {
    padding: 10px 30px;
  }
}

.logoHeader,
.logo {
  width: 52px;
  height: 50px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  background: rgba(132, 131, 136, 0.3);
  padding: 25px;
  border-radius: 50px;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .nav-menu li a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .nav-menu li a {
    font-size: 12px;
  }
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #16213e;
  animation: fadeIn 0.4s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0s;
}

.mobile-nav.active {
  display: flex;
}

select {
  background: unset;
  color: white;
  padding: 5px;
  border: none;
}

.hero {
  min-height: 100dvh;
  height: auto;
  overflow: hidden;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.4),
      rgba(81, 67, 164, 0.4)),
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.titleBunner {
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .titleBunner {
    width: 100%;
    padding: 95px 30px;
    padding-bottom: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }

  .titleWrapper {
    gap: 0px !important;
  }

  .titleBunner h2 {
    line-height: 10px !important;
  }

  .btn {
    margin: 0 !important;
  }
}

.titleBunner h1 {
  color: #7717d6;
  white-space: uppercase;
  font-size: clamp(2rem, 8vw, 4rem);
  font-family: "Unbounded";
  line-height: 80px;
  font-weight: 400;
  padding-top: 10px;
}

.titleBunner h2 {
  font-family: "Tenor Sans";
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 80px;
  font-weight: 400;
}

.titleBunner p {
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.titleWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  gap: 10px;
}

.textRight {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.btnSmall {
  padding: 20px;
  background: linear-gradient(135deg, #8415da, #2e27c4);
  border: none;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  font-family: "Unbounded";
  width: max-content;
  border-radius: 50px;
}

.btnSmall:hover {
  box-shadow: 0px 0px 10px 1px rgba(111, 26, 213, 1);
}

@media (max-width: 480px) {
  .btnSmall {
    width: 100%;
    box-sizing: border-box;
  }
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: var(--gap-width);
  animation: scroll var(--scroll-duration) linear infinite;
}

.slide {
  background: var(--slide-bg-color);
  flex: 0 0 var(--slide-width);
  height: var(--slide-height);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  align-items: center;
  display: flex;
  justify-content: center;
}

.slide img {
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: var(--overlay-bg-color);
  color: var(--overlay-text-color);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--overlay-transition);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide:hover .overlay {
  opacity: 1;
}

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

  100% {
    transform: translateX(calc(-1 * var(--total-width)));
  }
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* language switcher */
.language-selector {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.language-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
}

.planetImg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.arrowImg {
  width: 11px;
  height: 7px;
  cursor: pointer;
}

#language-toggle {
  background: none;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

#language-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ccc;
  border-radius: 10px;
  margin-top: 5px;
  list-style: none;
  padding: 10px 0;
  width: 60px;
  z-index: 1000;
}

#language-list li {
  padding: 5px 10px;
  text-align: center;
  color: white;
  cursor: pointer;
}

#language-list li:hover {
  background-color: #999;
}

#language-list li.active {
  background-color: #444;
  border-radius: 10px;
}

.hidden {
  display: none;
}

/* about us */

.section {
  padding: 120px 120px;
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .section {
    padding: 50px 60px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 40px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 30px 20px;
  }
}

.headerSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .headerSection {
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
    gap: 10px;
  }

  .headerSection h3 {
    text-align: center !important;
  }
}

.headerSection h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: #5f12ab;
  font-family: "Unbounded";
  font-weight: 400;
}

.headerSection h3 {
  font-size: clamp(1.5rem, 4vw, 25px);
  color: #848388;
  font-family: "Unbounded";
  font-weight: 400;
  text-align: end;
}

.about-content {
  max-width: 507px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-top: 75px;
}

.about-content p {
  color: #3e3d43;
  font-family: "Tenor Sans";
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 400;
  text-align: left;
}

.contentWrapperForAbout {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.video-container {
  position: relative;
  width: 615px;
  height: 405px;
  background: black;
  border-radius: 20px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
}

@media (max-width: 1392px) {
  .video-container {
    height: min-content;
  }

  .contentWrapperForAbout {
    justify-content: center;
  }

  .about-content {
    gap: 30px;
    padding-top: 20px;
  }
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button::after {
  content: "\25B6";
  font-size: 24px;
  color: #6c23e3;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #8415da, #2e27c4);
  border: none;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0px 0px 10px 1px rgba(111, 26, 213, 1);
}

/* circle text style*/

.circle {
  position: relative;
  border-radius: 100%;
  padding: 16px;
  animation: rotate-animation 8s infinite linear;
  color: #361ca2;
  font-size: 14px;
}

.circle span {
  position: absolute;
  transform-origin: center;
  font-size: 12px;
  left: 9%;
  top: 7%;
  transform: translate(-50%, -50%);
}

@keyframes rotate-animation {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* services */

.contentWrapperForServices {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container {
  overflow: hidden;
  width: 40%;
  min-width: 320px;
  margin-bottom: 20px;
}

.item {
  border-bottom: 1px solid #ddd;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: padding 0.3s;
  position: relative;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, #d0bce7 0%, #e4e3ec 100%);
  border-radius: 10px;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.8s ease;
}

.item.expanded::before {
  opacity: 1;
}

.icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #8415da, #2e27c4);
  color: white;
  border-radius: 50%;
  position: absolute;
  top: 42px;
  right: 12px;
  font-size: 38px;
  z-index: 4;
}

.icon span {
  transition: transform 0.3s;
  transform: rotate(260deg);
}

.itemTitle p {
  color: #3e3d43;
  font-family: "Unbounded";
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  text-align: start;
  line-height: 40px;
  position: relative;
  z-index: 4;
}

.content {
  height: 0;
  overflow: hidden;
  margin-top: 15px;
  font-family: "Tenor Sans";
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 400;
  color: #3e3d43;
  text-align: start;
  transition: height 0.8s ease, opacity 0.8s ease, background 0.8s ease;
  opacity: 0;
  background: transparent;
  position: relative;
  z-index: 4;
}

.expanded {
  border-radius: 10px;
  padding-bottom: 15px;
}

.expanded .content {
  height: 60px;
  opacity: 1;
}

.expanded .icon span {
  transform: rotate(185deg);
}

.imageContent {
  position: relative;
  height: min-content;
  padding-top: 50px;
}

.imageContent img {
  min-width: 280px;
  width: 100%;
}

.circleTextServices {
  position: absolute !important;
  left: -54px;
  bottom: -48px;
}

@media (max-width: 1295px) {
  .container {
    width: 100%;
  }

  .contentWrapperForServices {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .item {
    padding: 20px;
  }

  .itemTitle p {
    font-size: clamp(1rem, 4vw, 1.1rem);
  }
}

@media (max-width: 670px) {
  .circleTextServices {
    display: none;
  }
}

@media (max-width: 480px) {
  .item {
    padding: 15px;
  }

  .itemTitle p {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }

  .content {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }
}

/* Process */

.containerProcess {
  display: flex;
  justify-content: center;
  gap: 29px;
  flex-wrap: wrap;
}

.card {
  width: 279px;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  border-radius: 52px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.title {
  font-size: clamp(1.25rem, 4vw, 2rem);
  margin-top: 5px;
  font-family: "Unbounded";
  font-weight: 300;
  color: #3e3d43;
  text-align: start;
  padding-top: 30px;
}

.card .contentProcess {
  opacity: 0;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #555;
  margin-top: 10px;
  position: absolute;
  text-align: start;
  background: rgba(119, 23, 214, 0.7);
  top: -9px;
  width: 100%;
  height: 98.5%;
  border-radius: 49px;
  padding: 50px 30px;
  color: #fff;
  font-family: "Tenor Sans";
  font-weight: 400;
  box-sizing: border-box;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.card .iconProcess {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  color: white;
  border-radius: 50%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: linear-gradient(90deg, #8415da, #2e27c4);
  cursor: pointer;
  font-size: 38px;
}

.iconProcess span {
  transition: transform 0.3s;
  transform: rotate(185deg);
}

/* .iconProcess:hover + .contentProcess {
  opacity: 1;
} */

.iconProcess:hover span {
  transform: rotate(260deg);
}

@media (max-width: 1024px) {
  .title {
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
  }

  .title {
    font-size: clamp(1rem, 4vw, 1.5rem);
    padding-top: 5px;
  }

  .card .contentProcess {
    font-size: clamp(1rem, 4vw, 1.125rem);
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%;
  }

  .title {
    font-size: clamp(0.9rem, 4vw, 1.25rem);
  }

  .card .contentProcess {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }
}

/* advantages */

.qualityCardWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.quality-card {
  max-width: 380px;
  min-width: 300px;
  position: relative;
  padding: 50px 20px;
  border-radius: 1.5rem;
  background: white;
  z-index: 0;
  overflow: visible;
  box-sizing: border-box;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.quality-card:hover {
  box-shadow: 0px 0px 20px 5px rgba(62, 61, 67, 0.3);
}

.quality-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5px;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #8415da80 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* Icon styles */
.icon-wrapper {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0.5rem;
}

.icon-wrapper img {
  width: 57px;
  height: 57px;
  display: block;
  margin: 0 auto;
}

.quality-card h3 {
  padding: 30px 0;
  color: #3e3d43;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 300;
  font-family: "Unbounded";
}

.quality-card p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #3e3d43;
  line-height: 1.4;
  font-weight: 300;
  font-family: "Unbounded";
}

@media (max-width: 768px) {
  .quality-card {
    max-width: 100%;
    padding: 30px 15px;
  }

  .quality-card h3 {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .quality-card p {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }

  .icon-wrapper img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .quality-card {
    max-width: 100%;
    padding: 20px 10px;
  }

  .quality-card h3 {
    font-size: clamp(1rem, 5vw, 1.25rem);
  }

  .quality-card p {
    font-size: clamp(0.8rem, 4vw, 0.9rem);
  }

  .icon-wrapper img {
    width: 40px;
    height: 40px;
  }
}

/* Clients */

.wrapperClients {
  width: 100%;
  position: relative;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 30px;
}

.logoClients {
  border: 1px solid #cdb4ff;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
  height: 110px;
}

.logoClients:hover {
  box-shadow: 0px 0px 10px 2px rgba(62, 61, 67, 0.3);
}

.logoClients img {
  max-width: 90px;
  max-height: 60px;
}

.arrow-btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  background: purple;
  color: white;
  border-radius: 50%;
  background: linear-gradient(90deg, #8415da, #2e27c4);
  transition: transform 0.3s;
  margin: 30px 60px;
  cursor: pointer;
}

.arrow-btn span {
  transition: transform 0.3s;
  transform: rotate(260deg);
  font-size: 38px;
}

.arrow-rotated {
  transition: transform 0.3s;
  transform: rotate(-80deg);
}

.hidden-logos {
  display: none;
  margin-top: 15px;
}

.hidden-logos.show {
  display: grid;
}

/* cost */

.cardCostWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 55px;
}

.cardCost {
  max-width: 380px;
  min-width: 300px;
  position: relative;
  padding: 25px 50px;
  border-radius: 1.5rem;
  background: white;
  z-index: 0;
  overflow: visible;
  box-sizing: border-box;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.cardCost:hover {
  box-shadow: 0px 0px 15px 3px rgba(62, 61, 67, 0.3);
}

.cardCost::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5px;
  border-radius: 1.5rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #8415da80 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.iconCost {
  width: 58px;
  height: 58px;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.text {
  display: flex;
  flex-direction: column;
}

.titleCost {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-family: "Unbounded";
  font-weight: 300;
  color: #3e3d43;
  text-align: start;
  padding-bottom: 30px;
}

.desc {
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: #3e3d43;
  font-family: "Unbounded";
  font-weight: 300;
  text-align: start;
}

.costText {
  font-family: "Unbounded";
  font-weight: 300;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  line-height: 40px;
  color: #3e3d43;
  text-align: start;
  padding-bottom: 70px;
}

.consultationCost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 120px;
}

.consultationCost p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  font-family: "Tenor Sans";
  color: #3e3d43;
  text-align: start;
  max-width: 695px;
}

@media (max-width: 768px) {
  .consultationCost {
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    padding-bottom: 0px;
  }

  .consultationCost p {
    text-align: center;
  }

  .cardCostWrapper {
    gap: 30px;
  }

  .cardCost {
    max-width: 100%;
    margin-left: 23px;
  }

  .cardCost .iconCost {
    width: 50px;
    height: 50px;
  }

  .titleCost {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }

  .desc {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  .costText {
    font-size: clamp(1rem, 3vw, 1.25rem);
    padding-bottom: 30px;
  }

  .consultationCost p {
    font-size: clamp(1rem, 3vw, 1.125rem);
  }
}

@media (max-width: 480px) {
  .cardCost .iconCost {
    width: 40px;
    height: 40px;
  }

  .titleCost {
    font-size: clamp(1rem, 5vw, 1.25rem);
  }

  .desc {
    font-size: clamp(0.8rem, 4vw, 0.9rem);
  }

  .costText {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .consultationCost p {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }
}

/* footer */

.footerConteiner {
  width: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.4),
      rgba(81, 67, 164, 0.4)),
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/backgroundFooter.webp");
}

.containerAboutProject {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  padding: 95px 120px;
}

.left {
  flex: 1;
  min-width: 300px;
  text-align: start;
}

.left h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 400;
  font-family: "Tenor Sans";
  line-height: 100px;
  color: rgba(255, 255, 255, 1);
  padding-bottom: 20px;
}

.left h2 {
  font-weight: 400;
  color: rgba(119, 23, 214, 1);
  font-size: clamp(2rem, 7vw, 3.75rem);
  line-height: 80px;
  font-family: "Unbounded";
  padding-bottom: 70px;
}

.left p {
  font-size: clamp(1.25rem, 4vw, 1.375rem);
  font-weight: 400;
  font-family: "Tenor Sans";
  line-height: 30px;
  color: rgba(255, 255, 255, 1);
}

.right {
  background: rgba(251, 249, 255, 0.9);
  border-radius: 50px;
  padding: 50px 70px;
  flex: 1;
  min-width: 300px;
  max-width: 584px;
}

.iti {
  height: max-content;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.iti--container {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  max-width: 92%;
}

.iti__country-name {
  color: rgba(62, 61, 67, 1);
  font-weight: 300;
  font-family: "Unbounded";
}

form input,
form textarea {
  width: 100%;
  padding: 27px 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: 200;
  font-family: "Unbounded";
  box-sizing: border-box;
  color: rgba(62, 61, 67, 1);
}

form textarea {
  resize: vertical;
  height: 100px;
}

.note {
  font-size: 16px;
  font-weight: 200;
  font-family: "Unbounded";
  margin-bottom: 50px;
  color: rgba(62, 61, 67, 1);
}

.message {
  font-size: 16px;
  font-weight: 300;
  font-family: "Unbounded";
  margin-bottom: 20px;
  color: green;
  display: none;
}

@media (max-width: 768px) {
  .containerAboutProject {
    padding: 60px 40px;
  }

  .left {
    text-align: center;
  }

  .left h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 50px;
    padding-bottom: 0;
  }

  .left h2 {
    font-size: clamp(1.5rem, 6vw, 3rem);
    line-height: 50px;
    padding-bottom: 30px;
  }

  .left p {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .right {
    padding: 40px 50px;
  }

  form input,
  form textarea {
    padding: 15px 20px;
  }

  .note {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }
}

@media (max-width: 480px) {
  .containerAboutProject {
    padding: 40px 20px;
  }

  .left h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .left h2 {
    font-size: clamp(1.25rem, 5vw, 2.5rem);
  }

  .left p {
    font-size: clamp(0.9rem, 5vw, 1rem);
  }

  .right {
    padding: 30px 30px;
    box-sizing: border-box;
  }

  form input,
  form textarea {
    padding: 12px 18px;
  }

  .note {
    font-size: clamp(0.9rem, 5vw, 1rem);
  }
}

footer {
  margin-top: 60px;
  padding: 40px 120px;
  padding-bottom: 40px;
  background: rgba(132, 131, 136, 0.3);
}

@media (max-width: 1024px) {
  footer {
    padding: 30px 60px;
  }

  .footer-content {
    justify-content: center !important;
  }

  .footer-left p {
    text-align: center !important;
  }

  .logo {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 20px 40px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 15px 20px;
  }
}

.footer-left p {
  padding-top: 36px;
  font-family: "Unbounded";
  font-size: 15px;
  font-weight: 200;
  text-align: start;
  max-width: 300px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  font-size: 14px;
  color: #bbb;
}

.footer-right {
  display: flex;
  gap: 77px;
  flex-wrap: wrap;
  padding-top: 70px;
}

.footer-right h3 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Unbounded";
  color: rgba(156, 67, 243, 1);
  padding-bottom: 16px;
}

.footer-right a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  font-family: "Unbounded";
  color: #fff;
}

.socials a {
  display: inline-block;
  margin-right: 15px;
  color: #a442ec;
  text-decoration: none;
  font-weight: bold;
}

.copy {
  text-align: center;
  color: #fff;
  margin-top: 40px;
  font-size: 12px;
  font-family: "Tenor Sans";
  font-weight: 400;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.footer-menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: "Unbounded";
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .footer-menu {
    display: flex;
    flex-direction: column;
  }

  .footer-right {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .socials a {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    z-index: 1000;
    margin-top: 10px;
    list-style: none;
  }

  .mobile-nav li {
    margin: 10px 0;
  }

  .mobile-nav li a {
    text-decoration: none;
    color: #fff;
    font-family: "Unbounded";
    font-weight: 300;
  }

  .mobile-nav.active {
    display: flex;
  }
}

/* Back to Top button */

#BackToTopButton {
  display: inline-block;
  background: linear-gradient(135deg, #8415da, #2e27c4);
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#BackToTopButton::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#BackToTopButton:hover {
  cursor: pointer;
  box-shadow: 0px 0px 10px 1px rgba(111, 26, 213, 1);
}

#BackToTopButton:active {
  background-color: #555;
}

#BackToTopButton.show {
  opacity: 1;
  visibility: visible;
}

/* Solutions Section */
#solutions {
  background: #fff;
}

.solutionsIntro {
  text-align: center;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #3e3d43;
  margin: 2rem auto 2rem;
  max-width: 800px;
  font-family: "Unbounded";
  font-weight: 300;
}

.solutionsNavigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto 1.5rem;
  max-width: 400px;
}

.solutionNavBtn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8415da, #2e27c4);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(111, 26, 213, 0.25);
  padding: 0;
  flex-shrink: 0;
}

.solutionNavBtn svg {
  width: 20px;
  height: 20px;
  color: white;
  transition: transform 0.3s ease;
}

.solutionNavBtn:hover:not(:disabled) {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(111, 26, 213, 0.4);
}

.solutionNavBtn:hover:not(:disabled) svg {
  transform: scale(1.15);
}

.solutionNavBtn:active:not(:disabled) {
  transform: scale(0.95);
}

.solutionNavBtn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: linear-gradient(135deg, #aaa, #888);
}

.solutionIndicators {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: #a0a0a0;
  transform: scale(1.2);
}

.indicator.active {
  background: linear-gradient(135deg, #8415da, #2e27c4);
  width: 14px;
  height: 14px;
  box-shadow: 0 2px 8px rgba(111, 26, 213, 0.4);
}

.solutionsContent {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.solution-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.solution-slide.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.transcriptionModule {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin: 1.5rem 0;
}

.moduleHeader {
  text-align: center;
  margin-bottom: 2rem;
}

.moduleHeader h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #3e3d43;
  margin-bottom: 1rem;
  font-family: "Unbounded";
  font-weight: 300;
  line-height: 1.3;
}

.moduleHeader p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  font-family: "Unbounded";
  font-weight: 300;
  line-height: 1.5;
}

.accuracySection {
  margin: 2rem 0;
}

.accuracySection h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: #3e3d43;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Unbounded";
  font-weight: 300;
}

.accuracyCards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.accuracyCard {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(132, 21, 218, 0.1);
}

.accuracyCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(111, 26, 213, 0.15);
  border-color: rgba(132, 21, 218, 0.3);
}

.accuracyValue {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: #6f1ad5;
  margin-bottom: 0.75rem;
  font-family: "Unbounded";
}

.accuracyLabel {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #3e3d43;
  margin-bottom: 0.4rem;
  font-family: "Unbounded";
  font-weight: 400;
}

.accuracyDesc {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: #666;
  font-family: "Unbounded";
  font-weight: 300;
}

.featuresSection {
  margin: 2rem 0;
}

.featuresSection h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: #3e3d43;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Unbounded";
  font-weight: 300;
}

.featuresList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.featureItem {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-left: 3px solid #8415da;
  transition: all 0.3s ease;
}

.featureItem:hover {
  box-shadow: 0 4px 12px rgba(111, 26, 213, 0.12);
  transform: translateX(3px);
}

.featureIcon {
  color: #6f1ad5;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(132, 21, 218, 0.1), rgba(111, 26, 213, 0.1));
  border-radius: 6px;
}

.featureItem p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: #3e3d43;
  line-height: 1.4;
  font-family: "Unbounded";
  font-weight: 300;
  margin: 0;
}

.screenshotsSection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0;
}

@media (min-width: 1024px) {
  .screenshotsSection {
    grid-template-columns: repeat(4, 1fr);
  }

  .screenshotsSection:has(.screenshot-thumbnail:nth-last-child(-n+3):first-child),
  .screenshotsSection:has(.screenshot-thumbnail:nth-last-child(-n+2):first-child),
  .screenshotsSection:has(.screenshot-thumbnail:only-child) {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  .screenshotsSection:has(.screenshot-thumbnail:nth-last-child(-n+3):first-child) .screenshot-thumbnail,
  .screenshotsSection:has(.screenshot-thumbnail:nth-last-child(-n+2):first-child) .screenshot-thumbnail,
  .screenshotsSection:has(.screenshot-thumbnail:only-child) .screenshot-thumbnail {
    flex: 0 0 auto;
    width: auto;
    max-width: 350px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .screenshotsSection {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .screenshotsSection {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .screenshotsSection {
    grid-template-columns: 1fr;
  }
}

.screenshot-thumbnail {
  width: auto;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(132, 21, 218, 0.1);
}


.screenshot-thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(111, 26, 213, 0.2);
  border-color: rgba(132, 21, 218, 0.3);
}

.screenshot-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.3s ease;
  object-fit: contain;
}

.screenshot-thumbnail:hover img {
  opacity: 0.9;
}

.screenshot-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 60px 80px;
  box-sizing: border-box;
}

.screenshot-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.modal-content img {
  max-width: 100%;
  max-height: calc(100% - 50px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

.modal-close:hover {
  transform: scale(1.25);
}

.modal-nav {
  position: fixed;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  padding: 0;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  z-index: 10001;
}

.modal-nav.modal-prev {
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='50' height='50'>    <circle cx='12' cy='12' r='12' fill='none'/>   <path d='M14 6 L8 12 L14 18' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/>  </svg>");
}

.modal-nav.modal-next {
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='50' height='50'> <circle cx='12' cy='12' r='12' fill='none'/> <path d='M10 6 L16 12 L10 18' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/> </svg>");
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-nav:hover {
  transform: translateY(-50%) scale(1.1);
}





.modal-counter {
  color: white;
  font-size: 18px;
  font-family: "Unbounded";
  font-weight: 300;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  min-width: 80px;
}

@media (max-width: 768px) {
  .screenshot-modal {
    padding: 40px 20px;
  }

  .modal-nav {
    width: 50px;
    height: 50px;
    font-size: 40px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 35px;
  }

  .modal-counter {
    font-size: 16px;
    padding: 8px;
    min-width: 70px;
  }
}

@media (max-width: 480px) {
  .screenshot-modal {
    padding: 30px 10px;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .modal-counter {
    font-size: 14px;
    padding: 6px;
    min-width: 60px;
  }
}

.useCasesSection {
  margin: 2rem 0;
}

.useCasesSection h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: #3e3d43;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Unbounded";
  font-weight: 300;
}

.useCasesList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.useCaseItem {
  background: white;
  padding: 1.25rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-top: 3px solid #8415da;
}

.useCaseItem:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(111, 26, 213, 0.12);
}

.useCaseItem h4 {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #6f1ad5;
  margin-bottom: 0.75rem;
  font-family: "Unbounded";
  font-weight: 400;
}

.useCaseItem p {
  font-size: clamp(0.875rem, 1.8vw, 0.95rem);
  color: #666;
  line-height: 1.4;
  font-family: "Unbounded";
  font-weight: 300;
  margin: 0;
}

.apiSection {
  margin: 2rem 0;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.apiSection h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: #3e3d43;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Unbounded";
  font-weight: 300;
}

.apiFeatures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.apiFeature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(132, 21, 218, 0.02), rgba(111, 26, 213, 0.02));
  transition: all 0.3s ease;
}

.apiFeature:hover {
  background: linear-gradient(135deg, rgba(132, 21, 218, 0.08), rgba(111, 26, 213, 0.08));
  transform: translateX(3px);
}

.apiIcon {
  color: #6f1ad5;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(132, 21, 218, 0.15), rgba(111, 26, 213, 0.15));
  border-radius: 50%;
}

.apiFeature p {
  font-size: clamp(0.875rem, 1.8vw, 0.975rem);
  color: #3e3d43;
  line-height: 1.4;
  font-family: "Unbounded";
  font-weight: 300;
  margin: 0;
}

.solutionsCTA {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0 0.5rem;
  flex-wrap: wrap;
}

.btnSecondary {
  background: transparent;
  border: 2px solid #6f1ad5;
  color: #6f1ad5;
}

.btnSecondary:hover {
  background: #6f1ad5;
  color: white;
}

@media (max-width: 768px) {
  .transcriptionModule {
    padding: 1.5rem 1.25rem;
  }

  .moduleHeader h2 {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
  }

  .moduleHeader p {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
  }

  .solutionsNavigation {
    gap: 1.5rem;
    margin: 1.5rem auto 1rem;
  }

  .solutionNavBtn {
    width: 45px;
    height: 45px;
  }

  .solutionNavBtn svg {
    width: 18px;
    height: 18px;
  }

  .accuracyCards,
  .featuresList,
  .useCasesList,
  .apiFeatures {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .solutionsCTA {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin: 1.5rem 0 0.5rem;
  }

  .solutionsCTA .btnSmall {
    width: 100%;
  }

  .accuracyCard,
  .featureItem,
  .useCaseItem {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .transcriptionModule {
    padding: 1.25rem 0.875rem;
    border-radius: 10px;
  }

  .moduleHeader h2 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .moduleHeader p {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }

  .solutionsNavigation {
    gap: 1.25rem;
  }

  .solutionNavBtn {
    width: 40px;
    height: 40px;
  }

  .solutionNavBtn svg {
    width: 16px;
    height: 16px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 12px;
    height: 12px;
  }

  .accuracyCard,
  .featureItem,
  .useCaseItem {
    padding: 1rem 0.875rem;
  }

  .apiSection {
    padding: 1.25rem 1rem;
  }

  .featuresList,
  .apiFeatures {
    gap: 0.75rem;
  }

  .useCasesList {
    gap: 1rem;
  }
}

/* Stellantis-specific adjustments */
.stellantis-screenshots {
  display: flex;
  justify-content: center;
}

.stellantis-screenshots .screenshot-thumbnail {
  max-width: 500px;
}

/* McDonald's-specific adjustments - keep default grid */