* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  text-decoration: none;
  list-style: none;
  color: black;
}

:root {
  --color-Ellipse-1: #c8aad3;
  --color-Ellipse-2: #799dcb;
  --color-Ellipse-3: #7c38bd;
  --color-Ellipse-4: #bd6df2;
  --color-Ellipse-5: #a696c7;
}

/* Spica video modal */
.spica-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.spica-video-modal.spica-video-modal--open {
  opacity: 1;
  visibility: visible;
}

.spica-video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.spica-video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.spica-video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.spica-video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.spica-video-modal-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* main */

.container-main {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  background-image: url("../images/SpicaSol/background.svg");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* 1 */

.container-main-1-back {
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: -2;
}

.container-main-1 {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
}

.container-main-1-left {
  width: 55%;
  height: fit-content;
  margin: auto;
  margin: 100px 0;
}

.container-main-1-left h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 33px;
}

.container-main-1-left p {
  color: var(--color-Ellipse-2);
  font-size: 30px;
  font-weight: bold;
}

.container-main-1-right {
  width: 45%;
  background-image: url("../images/SpicaSol/new/here.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

@keyframes starTwinkle {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.container-main-1-right-stars1,
.container-main-1-right-stars2,
.container-main-1-right-stars3 {
  animation: starTwinkle 3s infinite;
}

.watch-video-Spica-container{
  display: flex;
  gap: 10px;
  width: 100%;
}
.container-main-1-right-stars1 {
  position: absolute;
  top: 250px;
  left: 50px;
  width: 50px;
}
.container-main-1-box .watch-video-Spica{
  background-color: transparent;
  border-radius: 0.35vw;
  border: 2px solid #bd6df2;
}
.container-main-1-right-stars2 {
  position: absolute;
  bottom: 0px;
  left: 180px;
  width: 74px;
}

.container-main-1-right-stars3 {
  position: absolute;
  top: 90px;
  right: 0px;
  width: 50px;
}

.container-main-1-circle {
  width: 100%;
  transform-origin: center center;
  animation: rotateQuarterr 8s forwards infinite;
  z-index: -1;
}

@keyframes rotateQuarterr {
  0% {
    transform: translate(0%, 0) rotate(0deg);
  }
  25% {
    transform: translate(0%, 0) rotate(90deg);
  }
  50% {
    transform: translate(0%, 0) rotate(180deg);
  }
  75% {
    transform: translate(0%, 0) rotate(270deg);
  }
  100% {
    transform: translate(0%, 0) rotate(360deg);
  }
}

.container-main-1-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 50px;
}

.container-main-1-box > ul li {
  list-style: disc;
  margin-left: 25px;
  color: white;
  font-size: 22px;
  font-weight: 400;
}

.container-main-1-box  button {
  font-size: 18px;
  padding: 10px 25px;
  outline: unset;
  color: white;
  background-color: #bd6df2;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 80px;
  font-weight: 300;
  border: 3px solid #bd6df2;
}

/* 3 */

.container-main-3 {
  max-width: 1440px;
  width: 100%;
  height: fit-content;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 45px;
  margin-top: 130px;
  padding: 0 100px;
}

.container-main-3-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container-main-3-left > h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
}

.container-main-3-left > p {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

#video-container {
  position: relative;
  width: 640px;
  height: 360px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 15px;
}
#play-overlay {
  position: absolute;
  width: 640px;
  height: 100%;
  background-color: #bdbdbd26;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #799dcb;
}
#play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
  clip-path: polygon(25% 20%, 25% 80%, 75% 50%);
}
video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* 4 */

.container-main-4 {
  max-width: 1440px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  margin-top: 130px;
  padding: 0 100px;
}

.container-main-4 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.container-main-4-type2,
.container-main-4-type1 {
  display: flex;
  align-items: center;
  height: 455px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.container-main-4-type1 > img {
  width: 450px;
  position: absolute;
  left: -450px;
  transition: 2s ease;
  opacity: 0;
}

.container-main-4-type1-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  right: -790px;
  width: 790px;
  transition: 2s ease;
  opacity: 0;
}

.container-main-4-type2 > img {
  width: 450px;
  position: absolute;
  right: -450px;
  transition: 2s ease;
  opacity: 0;
}

.container-main-4-type2-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  left: -790px;
  width: 790px;
  transition: 2s ease;
  opacity: 0;
}

.scrolled-500 .container-main-4-type1 > img {
  left: 0;
  opacity: 1;
}

.scrolled-500 .container-main-4-type1-box {
  right: 0;
  opacity: 1;
}

.scrolled-500 .container-main-4-type2 > img {
  right: 0;
  opacity: 1;
}

.scrolled-500 .container-main-4-type2-box {
  left: 0;
  opacity: 1;
}

.container-main-4-type2-box > h1,
.container-main-4-type1-box > h1 {
  color: var(--color-Ellipse-2);
  font-size: 30px;
  font-weight: bold;
}

.container-main-4-type2-box-bottom,
.container-main-4-type1-box-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.container-main-4-type2-box-bottom span,
.container-main-4-type1-box-bottom span {
  display: flex;
  align-items: center;
  gap: 15px;
}

.container-main-4-type2-box-bottom span img,
.container-main-4-type1-box-bottom span img {
  width: 36px;
}
.container-main-4-type2-box-bottom span h2,
.container-main-4-type1-box-bottom span h2 {
  color: white;
  font-size: 20px;
}
.container-main-4-type2-box-bottom ul,
.container-main-4-type1-box-bottom ul {
  margin-left: 25px;
}
.container-main-4-type2-box-bottom li,
.container-main-4-type1-box-bottom li {
  color: white;
  font-size: 16px;
  padding: 10px;
  list-style: disc;
  margin-left: 15px;
}

/* 5 */

.container-main-5 {
  max-width: 1440px;
  padding: 0 100px;
  width: 100%;
  height: fit-content;
  margin-top: 130px;
}

.container-main-5 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.gallery-container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-track {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  width: 1000px;
}

.image-item {
  position: absolute;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  width: 300px;
  height: 300px;
  filter: brightness(0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-image: url("../images/SpicaSol/5.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-position: center center;
  display: grid;
  place-items: center;
}

.image-item img {
  width: 200px;
  height: auto;
}

.image-item.active {
  transform: translateX(0) scale(1.2);
  z-index: 2;
  filter: brightness(1);
}

.image-item.prev {
  transform: translateX(-120%) scale(0.8);
}

.image-item.next {
  transform: translateX(120%) scale(0.8);
}

.details-container {
  display: grid;
  place-items: center;
}

.details-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 15px;
}

.details-content h2 {
  color: var(--color-Ellipse-2);
  font-size: 30px;
  font-weight: bold;
}

.specs-list {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}

.specs-list li {
  font-size: 20px;
  color: white;
  list-style: disc;
}

.nav-button {
  display: none;
}

.prev-btn {
  visibility: hidden;
}
.next-btn {
  visibility: hidden;
}

/* 6 */
.container-main-6 {
  max-width: 1440px;
  padding: 0 100px;
  width: 100%;
  margin-top: 230px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 200px;
}

.container-main-6 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
  z-index: 1;
}

.container-main-6-bottom {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.container-main-6-bottom span {
  display: flex;
  align-items: center;
  gap: 15px;
}
.container-main-6-bottom span img {
  width: 25px;
}
.container-main-6-bottom span p {
  color: white;
  font-size: 18px;
}

.container-main-6-circle {
  width: 900px;
  position: absolute;
  right: 10%;
  top: -20%;
  transform: translate(50%, 0);
  transform-origin: center center;
  animation: rotateQuarter 6s forwards infinite;
}

@keyframes rotateQuarter {
  0% {
    transform: translate(50%, 0) rotate(0deg);
  }
  25% {
    transform: translate(50%, 0) rotate(90deg);
  }
  50% {
    transform: translate(50%, 0) rotate(180deg);
  }
  75% {
    transform: translate(50%, 0) rotate(270deg);
  }
  100% {
    transform: translate(50%, 0) rotate(360deg);
  }
}

/* 7 */
.container-main-7 {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  margin: 130px 0;
}

.container-main-7 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.container-main-7-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  cursor: pointer;
  overflow: hidden;
}

.container-main-7-bottom a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-main-7-bottom a img {
  width: 100%;
  transform: scale(1);
  transition: 0.3s;
}

.container-main-7-bottom a img:hover {
  transform: scale(1.01);
}

.container-main-7-bottom a p {
  width: 100%;
  text-align: left;
  font-size: 18px;
  color: white;
}

/* 8 */

.container-main-8 {
  max-width: 1440px;
  width: 100%;
  margin-top: 130px;
  padding: 0 100px;
}

.container-main-8 > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.container-main-8-bottom {
  width: 100%;
  display: flex;
  gap: 28px;
  overflow: hidden;
  cursor: default;
  background: #48416d;
  border: 1px solid #799DCB;
  border-radius: 14px;
  padding: 28px;
  box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.2);
}
.container-main-8-bottom.container-slider{
  border-radius: 0;
}

.no-border-no-bg{
  background: none;
  border: none;
  box-shadow: none;
  overflow-x: auto;
}

/* Partners logos infinite scroll (left to right loop) */
.partners-logos-slider {
  overflow: hidden;
  overflow-x: hidden;
}

.partners-logos-slider .partners-logos-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  width: max-content;
  flex: none;
  min-width: auto;
  animation: partners-logos-scroll 50s linear infinite;
}

.partners-logos-slider .partners-logos-track img {
  width: 194px;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@keyframes partners-logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Two-column cards: For Participant / For Researcher */
.container-main-8-bottom > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.container-main-8-bottom > div > div:last-child {

  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  background: #584e80;
  border: 1px solid rgba(136, 148, 200, 0.4);
  border-radius: 20px;
  padding: 0 24px 24px;
  padding-top: 0;
  position: relative;
  box-shadow: inset 0 2px 16px rgba(0, 0, 0, 0.15);
}

.container-main-8-bottom > div > div:first-child {
  align-self: center;
  padding: 12px 32px;
  background: linear-gradient(180deg, #130B3F 0%, #321DA5 566.2%);
  color: white;
  font-size: 18px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(136, 148, 200, 0.3);
}


.container-main-8-bottom > div > div:last-child > img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.container-main-8-bottom > div > div:last-child > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.container-main-8-bottom > div > div:last-child > div i {
  color: #799DCB;
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.container-main-8-bottom > div > div:last-child > div span {
  color: white;
  font-size: 16px;
  line-height: 1.5;
  font-family: inherit;
}

/* Beyond Sensors - tasks section */
.container-main-beyond-sensors {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  margin-top: 130px;
  margin-bottom: 80px;
}

.container-main-beyond-sensors > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 36px;
}

.beyond-sensors-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  border: 1px solid #7a9dcb;
  overflow: auto;
  border-radius: 25px;
  padding: 10px;
}

.beyond-sensors-tab {
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid #262f3f;
  color: var(--color-Ellipse-2);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  background-color: #262f3f;
}

.beyond-sensors-tab:hover {
  background: rgba(121, 157, 203, 0.2);
  color: white;
}

.beyond-sensors-tab.active {
  background: var(--color-Ellipse-2);
  color: white;
  border-color: var(--color-Ellipse-2);
}

.beyond-sensors-slider {
  width: 100%;
  overflow: hidden;
}

.beyond-sensors-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
}

.beyond-sensors-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  gap: 48px;
  align-items: flex-start;

  width: 100%;
  background-color: #130B3F;
  padding: 20px;
  border-radius: 12px;
}

.beyond-sensors-slide-left {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.beyond-sensors-slide-title {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.3;
}

.beyond-sensors-slide-desc {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.beyond-sensors-subheading {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

.beyond-sensors-features,
.beyond-sensors-list {
  color: white;
  font-size: 15px;
  line-height: 1.6;
  margin-left: 20px;
  margin-bottom: 20px;
}

.beyond-sensors-features li,
.beyond-sensors-list li {
  list-style: disc;
  margin-bottom: 6px;
  color: white;

}

.beyond-sensors-data-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.beyond-sensors-data-block {
  flex: 1;
  min-width: 200px;
}

.beyond-sensors-data-block .beyond-sensors-list {
  margin-bottom: 0;
}

.beyond-sensors-wearable-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.beyond-sensors-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-Ellipse-2);
  background: rgba(121, 157, 203, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beyond-sensors-icon-circle i {
  font-size: 20px;
  color: var(--color-Ellipse-2);
}

.beyond-sensors-slide-right {
  width: 320px;
  flex-shrink: 0;
}

.beyond-sensors-screenshots {
  min-height: 280px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.beyond-sensors-screenshot-box {
  width: calc((100% - 36px) / 4);
  aspect-ratio: 9 / 19;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.beyond-sensors-screenshot-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
  display: block;
}

/* Two screenshot boxes (e.g. Finger Tapping slide) */
.beyond-sensors-screenshot-box--2 {
  width: calc((100% - 12px) / 2);
}

/* health data section - staggered circles */
.container-main-health-data {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  margin-top: 130px;
  margin-bottom: 80px;
}

.container-main-health-data > h1 {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}

.health-data-items {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  align-items: center;
  justify-content: center;
}

@keyframes healthDataFloat {
  0%, 100% { transform: translateX(0); }
  33% { transform: translateX(20px); }
  66% { transform: translateX(-20px); }
}

.health-data-item {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(20, 15, 50, 0.6);
  border: 2px solid rgba(121, 157, 203, 0.6);
  box-shadow: 0 0 10px rgba(121, 157, 203, 0.35),
              0 0 20px rgba(189, 109, 242, 0.15);
  color: white;
  transition: box-shadow 0.2s ease;
  animation: healthDataFloat 4s ease-in-out infinite;
}

.health-data-item:nth-child(1) { animation-delay: 0s; }
.health-data-item:nth-child(2) { animation-delay: 0.5s; }
.health-data-item:nth-child(3) { animation-delay: 1.1s; }
.health-data-item:nth-child(4) { animation-delay: 1.7s; }
.health-data-item:nth-child(5) { animation-delay: 0.2s; }
.health-data-item:nth-child(6) { animation-delay: 0.9s; }
.health-data-item:nth-child(7) { animation-delay: 1.5s; }
.health-data-item:nth-child(8) { animation-delay: 0.3s; }
.health-data-item:nth-child(9) { animation-delay: 1.2s; }
.health-data-item:nth-child(10) { animation-delay: 0.6s; }
.health-data-item:nth-child(11) { animation-delay: 1.3s; }

.health-data-item i {
  color: #799DCB;
}

.health-data-item:hover {
  box-shadow: 0 0 28px rgba(121, 157, 203, 0.5),
              0 0 50px rgba(189, 109, 242, 0.25);
}

/* Subtle left-right shock on hover (overrides float briefly) */
.health-data-item:nth-child(odd):hover {
  animation: shockRight 0.4s ease;
}

.health-data-item:nth-child(even):hover {
  animation: shockLeft 0.4s ease;
}

@keyframes shockRight {
  0%, 100% { transform: scale(1.05) translateX(0); }
  25% { transform: scale(1.05) translateX(4px); }
  75% { transform: scale(1.05) translateX(-2px); }
}

@keyframes shockLeft {
  0%, 100% { transform: scale(1.05) translateX(0); }
  25% { transform: scale(1.05) translateX(-4px); }
  75% { transform: scale(1.05) translateX(2px); }
}

.health-data-item i {
  font-size: 24px;
}

.health-data-item span {
  color: white;
  font-size: 13px;
  font-weight: 600;
}

/* Staggered left-right effect: row 2 offset right, row 3 offset more */
.health-data-item:nth-child(6) {
  margin-left: 80px;
}

.health-data-item:nth-child(10) {
  margin-left: 160px;
}

/* Explore the Spica Platform - sticky left nav, scrollable right */
.explore-spica-platform {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px 80px;
  margin-top: 130px;

  margin-left: auto;
  margin-right: auto;
}

.explore-spica-title {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 36px;
  padding-top: 48px;
}

.explore-spica-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.explore-spica-nav {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(27, 19, 59, 0.8);
  border: 1px solid rgba(136, 148, 200, 0.4);
  border-radius: 5px;
  overflow: hidden;
}

.explore-spica-nav.explore-spica-nav--fixed {
  position: fixed;
  top: 120px;
  z-index: 10;
  left: 0;
  width: 280px;
}

.explore-spica-content.explore-spica-content--nav-fixed {
  margin-left: 320px;
  gap: 20px;
}

.explore-spica-nav-item {
  padding: 18px 20px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.explore-spica-nav-item:hover {
  background: rgba(121, 157, 203, 0.2);
}

.explore-spica-nav-item.active {
  background: var(--color-Ellipse-2);
  color: white;
}

.explore-spica-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.explore-spica-panel {
  min-height: 300px;
  background: rgba(27, 19, 59, 0.5);
  border: 1px solid rgba(136, 148, 200, 0.3);
  border-radius: 16px;
  padding: 32px;
  color: white;
}

.explore-spica-panel-title {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 28px;
  line-height: 1.3;
}

.explore-spica-mode-block {
  margin-bottom: 48px;
}

.explore-spica-mode-block:last-child {
  margin-bottom: 0;
}

.explore-spica-mode-heading {
  color: var(--color-Ellipse-2);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.explore-spica-mode-heading--spaced {
  margin-top: 32px;
}

.explore-spica-mode-tagline {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.explore-spica-mode-desc {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.explore-spica-mode-desc * {
  color: white;
}

.explore-spica-mode-sub {
  color: white;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.explore-spica-mode-list {
  color: white;
  font-size: 15px;
  line-height: 1.6;
  margin-left: 22px;
  margin-bottom: 20px;
}

.explore-spica-mode-list li, .explore-spica-mode-list li * {
  margin-bottom: 6px;
  color: white;
}

.explore-spica-mode-list--bullets {
  list-style: disc;
}

.explore-spica-single-box {
  margin-top: 20px;
}

.explore-spica-single-box.--wide {
text-align: center;
}
.explore-spica-single-box.--wide img{

  width: auto;
  max-width: 100%;
  aspect-ratio: auto;
}
.explore-spica-screenshot-box--wide {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 10;
}

.explore-spica-screenshots-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.explore-spica-screenshot-box {
  width: calc((100% - 48px) / 4);
  aspect-ratio: 9 / 19;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.explore-spica-screenshot-box img,
.explore-spica-screenshot-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Task Library panel - pills and three-column layout */
.explore-spica-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.explore-spica-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(136, 148, 200, 0.5);
  background: rgba(121, 157, 203, 0.25);
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
}

.explore-spica-pill:hover {
  background: rgba(121, 157, 203, 0.4);
}

.explore-spica-pill.active {
  border-color: var(--color-Ellipse-2);
  background: rgba(121, 157, 203, 0.45);
}

.explore-spica-task-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.explore-spica-task-col {
  flex: 1;
  min-width: 0;
}

.explore-spica-task-col--center {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  justify-content: center;
}

.explore-spica-task-item {
  margin-bottom: 24px;
}

.explore-spica-task-item:last-child {
  margin-bottom: 0;
}

.explore-spica-task-title {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.explore-spica-watch-link {
  color: var(--color-Ellipse-2);
  font-size: 14px;
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
}

.explore-spica-watch-link:hover {
  text-decoration: underline;
}

.explore-spica-task-phone {
  width: 160px;
  aspect-ratio: 9 / 19;
}

/* Research Areas section */
.research-areas-section {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px 80px;
  margin-top: 130px;
}

.research-areas-title {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.25;
}

.research-areas-sub {
  color: white;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 28px;
}

.research-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.research-areas-tag {
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(121, 157, 203, 0.15);
  color: white;
  font-size: 15px;
  font-weight: 500;
}

.research-areas-tag i {
  color: var(--color-Ellipse-2);
  font-size: 16px;
}

.research-areas-tag:hover {
  background: rgba(121, 157, 203, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.research-areas-tag-more {
  padding: 12px 18px;
}

/* 9 */

/* .container-main-9 {
  background-image: url("../images/SpicaSol/background\ part\ 2svg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 1240px;
  width: 100%;
  height: 585px;
  border: 1px solid #8894c8;
  border-radius: 15px;
  outline: none;
  margin-bottom: 250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  gap: 45px;
}

.container-main-9-left {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-between;
}

.container-main-9-left-top h1 {
  color: white;
  font-size: 36px;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 16px;
}

.container-main-9-left-top p {
  color: white;
  font-size: 20px;
}

.container-main-9-left-bottom {
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.container-main-9-left-bottom a img {
  width: 57px;
}

.container-main-9-right {
  width: 60%;
  height: 470px;
  background-image: url("../images/SpicaSol/container-main-2-right-background.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 15px;
  padding: 30px;
}
.form-container {
  width: 100%;
  padding: 20px;
}
.input-container {
  position: relative;
  margin-bottom: 30px;
}
.input-container label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
}
.input-container input,
.input-container textarea {
  width: 100%;
  padding: 12px 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  color: white;
  font-size: 16px;
  outline: none;
}
.input-container textarea {
  resize: vertical;
  max-height: 100px;
}
.input-container input:focus ~ label,
.input-container input:not(:placeholder-shown) ~ label,
.input-container textarea:focus ~ label,
.input-container textarea:not(:placeholder-shown) ~ label {
  top: 10px;
  font-size: 10px;
  color: white;
}

.input-container input:focus {
  padding: 15px 10px;
  padding-bottom: 9px;
}
.button-container {
  width: 100%;
  height: fit-content;
  text-align: right;
  margin: 0;
  padding: 0;
}

.submit-btn2 {
  width: 180px;
  padding: 11px 58px;
  background-color: transparent;
  color: #c084fc;
  border: 2px solid #c084fc;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn2:hover {
  background-color: #a855f7;
} */

.container-main-9-back {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 250px;
}

.container-main-9 {
  width: 100%;
  max-width: 1240px;
  margin: 0 100px;

  padding: 45px;
  box-shadow: 0px 0px 10px rgba(27, 19, 59, 0.15);
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  background-color: #d9d9d91c;
  border: 1px solid #799dcb;
}

.container-main-92-left {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.container-main-92-right {
  width: 55%;
  background-color: #130b3f;
  border-radius: 15px;
}

.container-main-92-left > h1 {
  font-size: 36px;
  color: white;
  font-weight: 500;
  margin-bottom: 30px;
}

.container-main-92-left > p {
  font-size: 20px;
  color: white;
  font-weight: 500;
  margin-bottom: 50px;
  line-height: 1.5;
}

.container-main-92-left > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.container-main-92-left > div > a {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 2px solid #799dcb;
  border-radius: 15px;
}

.container-main-92-left > div > a > i {
  color: #799dcb;
  font-size: 20px;
}

.container-main-1-mobile,
.container-main-3-mobile,
.container-main-4-mobile,
.container-main-9-mobile {
  display: none;
}

@media screen and (max-width: 1440px) {
  .container-main {
    margin-top: 6.94vw;
  }

  /* 1 */
  .container-main-1 {
    padding: 0 6.94vw;
  }

  .container-main-1-left {
    margin: 6.94vw 0;
  }

  .container-main-1-left h1 {
    font-size: 3.33vw;
    margin-bottom: 2.29vw;
  }

  .container-main-1-left p {
    font-size: 2.08vw;
  }


  .container-main-1-right-stars1 {
    top: 17.36vw;
    left: 3.47vw;
    width: 3.47vw;
  }

  .container-main-1-right-stars2 {
    bottom: 0vw;
    left: 12.5vw;
    width: 5.14vw;
  }

  .container-main-1-right-stars3 {
    top: 6.25vw;
    right: 0vw;
    width: 3.47vw;
  }

  .container-main-1-circle {
    left: -50%;
    width: 100%;
  }

  .container-main-1-box {
    margin-top: 3.47vw;
  }

  .container-main-1-box > ul li {
    margin-left: 1.74vw;
    font-size: 1.53vw;
  }

  .container-main-1-box  button {
    font-size: 1.25vw;
    padding: 0.69vw 1.74vw;
    border-radius: 0.35vw;
    margin-top: 5.56vw;
    border: 0.21vw solid #bd6df2;
  }

  /* 3 */

  .container-main-3 {
    gap: 3.125vw;
    margin-top: 9.027vw;
    padding: 6.944vw;
  }

  .container-main-3-left {
    gap: 2.778vw;
  }

  .container-main-3-left > h1 {
    font-size: 3.333vw;
  }

  .container-main-3-left > p {
    font-size: 1.25vw;
  }

  #video-container {
    width: 44.444vw;
    height: 25vw;
    border-radius: 1.042vw;
  }

  #play-overlay {
    width: 44.444vw;
    border-radius: 1.042vw;
  }

  #play-button {
    width: 5.556vw;
    height: 5.556vw;
  }

  video {
    border-radius: 1.042vw;
  }

  /* 4 */
  .container-main-4 {
    margin-top: 9.03vw;
    padding: 0 6.94vw;
  }

  .container-main-4 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-4-type2,
  .container-main-4-type1 {
    height: 31.6vw;
  }

  .container-main-4-type2 > img {
    width: 31.25vw;
    right: -31.25vw;
  }

  .container-main-4-type1 > img {
    width: 31.25vw;
    left: -31.25vw;
  }

  .container-main-4-type2-box {
    gap: 2.78vw;
    width: 54.86vw;
    left: -54.86vw;
  }

  .container-main-4-type1-box {
    gap: 2.78vw;
    width: 54.86vw;
    right: -54.86vw;
  }

  .container-main-4-type2-box > h1,
  .container-main-4-type1-box > h1 {
    font-size: 2.08vw;
  }

  .container-main-4-type2-box-bottom,
  .container-main-4-type1-box-bottom {
    gap: 1.04vw;
  }

  .container-main-4-type2-box-bottom span,
  .container-main-4-type1-box-bottom span {
    gap: 1.04vw;
  }

  .container-main-4-type2-box-bottom span img,
  .container-main-4-type1-box-bottom span img {
    width: 2.5vw;
  }

  .container-main-4-type2-box-bottom span h2,
  .container-main-4-type1-box-bottom span h2 {
    font-size: 1.39vw;
  }

  .container-main-4-type2-box-bottom ul,
  .container-main-4-type1-box-bottom ul {
    margin-left: 1.74vw;
  }

  .container-main-4-type2-box-bottom li,
  .container-main-4-type1-box-bottom li {
    font-size: 1.11vw;
    padding: 0.69vw;
    margin-left: 1.04vw;
  }

  .research-areas-section {
    padding: 0 6.94vw 5.56vw;
    margin-top: 9.03vw;
  }

  .research-areas-title {
    font-size: 2.78vw;
    margin-bottom: 1.39vw;
  }

  .research-areas-sub {
    font-size: 1.39vw;
    margin-bottom: 1.94vw;
  }

  .research-areas-tag {
    padding: 0.83vw 1.39vw;
    font-size: 1.04vw;
  }

  /* 5 */

  .container-main-5 {
    padding: 0 6.94vw;
    margin-top: 9.03vw;
  }

  .container-main-5 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .image-track {
    height: 27.78vw;
    width: 69.44vw;
  }

  .image-item {
    width: 20.83vw;
    height: 20.83vw;
    box-shadow: 0 0.28vw 1.04vw rgba(0, 0, 0, 0.2);
  }

  .image-item img {
    width: 17.36vw;
  }

  .details-content {
    gap: 1.04vw;
  }

  .details-content h2 {
    font-size: 2.08vw;
  }

  .specs-list {
    margin-left: 2.78vw;
  }

  .specs-list li {
    font-size: 1.39vw;
  }

  /* 6 */
  .container-main-6 {
    padding: 0 6.94vw;
    margin-top: 15.97vw;
    padding-bottom: 13.89vw;
  }

  .container-main-6 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-6-bottom {
    gap: 1.74vw;
  }

  .container-main-6-bottom span {
    gap: 1.04vw;
  }

  .container-main-6-bottom span img {
    width: 1.74vw;
  }

  .container-main-6-bottom span p {
    font-size: 1.25vw;
  }

  .container-main-6-circle {
    width: 62.5vw;
  }

  /* 7 */
  .container-main-7 {
    padding: 0 6.94vw;
    margin: 9.03vw 0;
  }

  .container-main-7 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-7-bottom {
    gap: 5.56vw;
  }

  .container-main-7-bottom a {
    gap: 0.69vw;
  }

  .container-main-7-bottom a p {
    font-size: 1.25vw;
  }

  /* 8 */

  .container-main-8 {
    padding: 0 6.94vw;
    margin-top: 9.03vw;
  }

  .container-main-8 > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .container-main-8-bottom {
    gap: 1.94vw;
    padding: 1.94vw;
  }

  .container-main-8-bottom.a > div > div:first-child {
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    color: #799DCB
  }

  .container-main-8-bottom > div > div:last-child > div span {
    font-size: 1.11vw;
  }

  .container-main-8-bottom > div > div:last-child > div i {
    font-size: 35px;
  }

  /* beyond sensors */
  .container-main-beyond-sensors {
    padding: 0 6.94vw;
    margin-top: 9.03vw;
    margin-bottom: 5.56vw;
  }

  .container-main-beyond-sensors > h1 {
    font-size: 2.78vw;
    margin-bottom: 2.5vw;
  }

  .beyond-sensors-tab {
    padding: 0.83vw 1.67vw;
    font-size: 1.11vw;
  }

  .beyond-sensors-slide {
    gap: 3.33vw;
    width: 100%;
    background-color: #130B3F;
    padding: 20px;
    border-radius: 12px;
  }

  .beyond-sensors-slide-title {
    font-size: 1.67vw;
    color: #799DCB;
  }

  .beyond-sensors-slide-desc {
    font-size: 1.11vw;
  }

  .beyond-sensors-subheading {
    font-size: 1.25vw;
  }



  .beyond-sensors-slide-right {
    width: 22.22vw;
  }

  .beyond-sensors-screenshots {
    min-height: 19.44vw;
  }

  /* explore spica platform */
  .explore-spica-platform {
    padding: 0 6.94vw 5.56vw;
    margin-top: 9.03vw;
  }

  .explore-spica-title {
    font-size: 2.78vw;
    margin-bottom: 2.5vw;
  }


  .explore-spica-nav-item {
    padding: 1.25vw 1.39vw;
    font-size: 1.11vw;
  }

  .explore-spica-panel {
    padding: 2.22vw;
  }

  .explore-spica-panel-title {
    font-size: 1.94vw;
    margin-bottom: 1.94vw;
  }

  .explore-spica-mode-heading {
    font-size: 1.53vw;
  }

  .explore-spica-mode-desc,
  .explore-spica-mode-list {
    font-size: 1.04vw;
  }

  .explore-spica-mode-sub {
    font-size: 1.18vw;
  }

  /* health data */
  .container-main-health-data {
    padding: 0 6.94vw;
    margin-top: 9.03vw;
    margin-bottom: 5.56vw;
  }

  .container-main-health-data > h1 {
    font-size: 2.78vw;
    margin-bottom: 3.47vw;
  }

  .health-data-item {
    width: 6.94vw;
    height: 6.94vw;
    gap: 0.42vw;
  }

  .health-data-item i {
    font-size: 1.67vw;
  }

  .health-data-item span {
    font-size: 0.9vw;
  }

  .health-data-items {
    gap: 1.94vw;
  }

  .health-data-item:nth-child(6) {
    margin-left: 5.56vw;
  }

  .health-data-item:nth-child(10) {
    margin-left: 11.11vw;
  }

  /* 9 */

  /* .container-main-9 {
    max-width: 86.11vw;
    height: 40.63vw;
    border: 1px solid #8894c8;
    border-radius: 1.04vw;
    margin-bottom: 17.361vw;
    padding: 3.47vw;
    gap: 3.13vw;
  }

  .container-main-9-left-top h1 {
    font-size: 2.5vw;
    margin-bottom: 1.11vw;
  }

  .container-main-9-left-top p {
    font-size: 1.39vw;
  }

  .container-main-9-left-bottom {
    gap: 2.08vw;
  }

  .container-main-9-left-bottom a img {
    width: 3.95vw;
  }

  .container-main-9-right {
    height: 32.64vw;
    border-radius: 1.04vw;
    padding: 2.08vw;
  }

  .form-container {
    padding: 1.39vw;
  }

  .input-container {
    margin-bottom: 1.4vw;
  }

  .input-container label {
    left: 0.69vw;
    font-size: 0.97vw;
  }

  .input-container input,
  .input-container textarea {
    padding: 0.83vw 0.69vw;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.35vw;
    font-size: 1.11vw;
  }

  .input-container textarea {
    max-height: 6.94vw;
  }

  .input-container input:focus ~ label,
  .input-container input:not(:placeholder-shown) ~ label,
  .input-container textarea:focus ~ label,
  .input-container textarea:not(:placeholder-shown) ~ label {
    top: 0.69vw;
    font-size: 0.69vw;
  }

  .input-container input:focus {
    padding: 1.04vw 0.69vw;
    padding-bottom: 0.63vw;
  }

  .submit-btn2 {
    width: 12.5vw;
    padding: 0.76vw 4.03vw;
    font-size: 1.11vw;
    border-radius: 0.35vw;
  } */

  .container-main-9-back {
    margin-bottom: 17.36vw;
  }

  .container-main-9 {
    width: 100%;
    padding: 3.13vw;
    margin: 0 6.94vw;
    box-shadow: 0px 0px 0.69vw rgba(27, 19, 59, 0.15);
    border-radius: 1.04vw;
    border: 0.07vw solid #799dcb;
  }

  .container-main-92-right {
    border-radius: 1.04vw;
  }

  .container-main-92-left > h1 {
    font-size: 2.5vw;
    margin-bottom: 2.08vw;
  }

  .container-main-92-left > p {
    font-size: 1.39vw;
    margin-bottom: 3.47vw;
  }

  .container-main-92-left > div {
    gap: 1.39vw;
  }

  .container-main-92-left > div > a {
    width: 3.13vw;
    height: 3.13vw;
    border: 0.14vw solid #799dcb;
    border-radius: 1.04vw;
  }

  .container-main-92-left > div > a > i {
    font-size: 1.39vw;
  }
}

@media screen and (max-width: 501px) {
  /* .container-main-1-back,
  .container-main-4,
  .container-main-9 {
    display: none;
  } */
  .beyond-sensors-slide-left .slider-screenshots img {
    margin-left: 0 !important;
    margin-top: 0 !important;
  
  }
  .beyond-sensors-slide-left .slider-content {
    display: flex;
    flex-direction: column;
    padding-right: 0 !important;
  }
  .container-main-journey-items{
    flex-direction: column;
  }
  .journey-item.two-images-journey{
    flex-direction: row;
    gap: 20px;
  }
  .journey-item.two-images-journey > img{
    width: 50% !important;
  }
  .journey-item-item.lines{
    margin: 30px 0 !important;
    transform: rotate(90deg);
  }
.journey-item-item.lines.two-lines {
  margin: 0 -10px -50px -15px !important;
}

  .container-main-1-back,
  .container-main-4 {
    display: none;
  }

  .container-main {
    margin-top: 9vw;
  }

  /* 1 */
  .container-main-1-mobile {
    /* background-image: url("../images/SpicaSol/background\ co\ 1\ mobile.png"); */
    background-size: 99.8vw;
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    padding: 0 5.988vw;
    display: flex;
    flex-direction: column;
    gap: 2.994vw;
    padding-top: 9.98vw;
    padding-bottom: 2.994vw;
    margin-top: 6vw;
  }

  .container-main-1-mobile .container-main-1-right {
    width: 100%;
  }

  .container-main-1-mobile h1 {
    font-size: 6.387vw;
    color: white;
  }

  .container-main-1-mobile p {
    color: var(--color-Ellipse-2);
    font-size: 4.79vw;
    font-weight: bold;
    margin-bottom: 5.988vw;
  }

  .container-main-1-mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 2.994vw;
  }

  .container-main-1-mobile-bottom a,
  .container-main-1-mobile-bottom a img {
    width: 8.383vw;
  }

  .container-main-1-box {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .container-main-1-box > ul li {
    list-style: disc;
    margin-left: 4.991vw;
    color: white;
    font-size: 3.592vw;
    line-height: 2;
    font-weight: 400;
  }

  .container-main-1-box  button {
    color: white;
    width: 100%;
    padding: 1.996vw 0;
    background-color: #bd6df2;
    border: unset;
    outline: unset;
    border-radius: 1vw;
    cursor: pointer;
    margin-top: 15.968vw;
    font-size: 3.592vw;
    font-weight: 400;
  }

  /* 3 */
  .container-main-3 {
    flex-direction: column;
    gap: 7.98vw;
  }

  .container-main-3-left > h1 {
    font-size: 6.39vw;
  }

  .container-main-3-left > p {
    font-size: 3.59vw;
  }

  #video-container {
    width: 100%;
    height: fit-content;
    border-radius: 2.99vw;
  }

  #play-button {
    width: 15.97vw;
    height: 15.97vw;
  }

  #play-overlay {
    width: 100%;
  }

  video {
    width: 100%;
    border-radius: 2.99vw;
  }

  /* 4 */

  .container-main-4-mobile {
    display: flex;
    flex-direction: column;
    gap: 7.984vw;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 5.988vw;
    margin-top: 27.944vw;
  }

  .container-main-4-mobile > h1 {
    width: 100%;
    font-size: 6.387vw;
    color: white;
    margin-bottom: 5.988vw;
  }

  .container-main-4-mobile-type2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .container-main-4-mobile-type2 h1 {
    font-size: 4.79vw;
    color: #799dcb;
  }

  .container-main-4-mobile-type2 > img {
    width: 47.904vw;
  }

  .container-main-4-mobile-type2-bottom {
    display: flex;
    flex-direction: column;
    gap: 2.994vw;
  }

  .container-main-4-mobile-type2-bottom span {
    display: flex;
    align-items: center;
    gap: 2.994vw;
  }

  .container-main-4-mobile-type2-bottom span img {
    width: 7.186vw;
  }

  .container-main-4-mobile-type2-bottom span h2 {
    color: white;
    font-size: 3.992vw;
  }

  .container-main-4-mobile-type2-bottom ul {
    margin-left: 4.99vw;
  }

  .container-main-4-mobile-type2-bottom li {
    color: white;
    font-size: 3.194vw;
    padding: 1.996vw;
    list-style: disc;
    margin-left: 2.994vw;
    line-height: 4.99vw;
  }

  .container-main-4-mobile > img {
    width: 6.986vw;
  }

  /* 5 */
  .container-main-5 {
    padding: 0 5.988vw;
    width: 100%;
    height: fit-content;
    margin-top: 27.944vw;
  }

  .container-main-5 > h1 {
    font-size: 6.387vw;
    color: white;
    margin-bottom: 11.976vw;
  }

  .image-track {
    height: 49.9vw;
  }

  .image-item {
    width: 47.904vw;
    height: 47.904vw;
  }

  .image-item img {
    width: 39.92vw;
    height: auto;
  }

  .details-content h2 {
    margin-top: 5.988vw;
    font-size: 3.992vw;
  }

  .specs-list {
    margin-left: 4.99vw;
  }

  .specs-list li {
    font-size: 3.194vw;
  }

  /* 6 */
  .container-main-6 {
    padding: 0 5.988vw;
    width: 100%;
    margin-top: 27.944vw;
  }

  .container-main-6 > h1 {
    font-size: 6.387vw;
    margin-bottom: 8.982vw;
  }

  .container-main-6-bottom {
    gap: 4.99vw;
  }

  .container-main-6-bottom span {
    gap: 2.994vw;
  }

  .container-main-6-bottom span img {
    width: 4.391vw;
  }

  .container-main-6-bottom span p {
    font-size: 3.592vw;
  }

  .container-main-6-circle {
    display: none;
  }

  /* 7 */
  .container-main-7 {
    padding: 0 5.988vw;
    width: 100%;
    margin-top: 27.944vw;
  }

  .container-main-7 > h1 {
    font-size: 6.387vw;
    margin-bottom: 8.982vw;
  }

  .container-main-7-bottom {
    width: 100%;
    display: flex;
    justify-content: start;
    gap: 2.594vw;
    overflow: hidden;
    cursor: pointer;
  }

  .container-main-7-bottom a {
    width: 59.88vw;
  }

  .container-main-7-bottom a img {
    width: 59.88vw;
  }

  .container-main-7-bottom a p {
    text-align: left;
    font-size: 2.994vw;
  }

  /* 8 */
  .container-main-8 {
    padding: 0 5.988vw;
    width: 100%;
    margin-top: 27.944vw;
  }

  .container-main-8 > h1 {
    font-size: 6.387vw;
    margin-bottom: 8.982vw;
  }

  .container-main-8-bottom {
    width: 100%;
    flex-direction: column;
    gap: 6vw;
    padding: 4.99vw;
  }

  .container-main-8-bottom > div {
    width: 100%;
    flex: none;
  }

  .no-border-no-bg{
    flex-direction: row;
    padding: 2px;
    gap: 10px;
  }
  .no-border-no-bg > img {
    width: 40%;
  }
  .partners-logos-slider .partners-logos-track img {
    width: 21.956vw;
  }
  .partners-logos-slider .partners-logos-track {
    gap: 2.594vw;
    animation-duration: 40s;
  }

  .container-main-8-bottom > div > div:first-child {
    padding: 2.4vw 6vw;
    font-size: 4vw;
  }

  .container-main-8-bottom > div > div:last-child > div span {
    font-size: 3.59vw;
  }

  .container-main-8-bottom > div > div:last-child > div i {
    font-size: 5vw;
  }

  /* beyond sensors */
  .container-main-beyond-sensors {
    padding: 0 5.988vw;
    margin-top: 27.944vw;
    margin-bottom: 15vw;
  }

  .container-main-beyond-sensors > h1 {
    font-size: 6.387vw;
    margin-bottom: 5vw;
  }

  .beyond-sensors-tabs {
    gap: 2.4vw;
    margin-bottom: 5vw;
  }

  .beyond-sensors-tab {
    padding: 2.4vw 4.8vw;
    font-size: 3.2vw;
  }

  .beyond-sensors-slide {
    flex-direction: column;
    gap: 5vw;
  }

  .beyond-sensors-slide-right {
    width: 100%;
    order: -1;
  }

  .beyond-sensors-screenshots {
    min-height: 50vw;
    overflow: auto;
  }

  .beyond-sensors-slide-title {
    font-size: 4.5vw;
  }

  .beyond-sensors-slide-desc {
    font-size: 3.59vw;
  }

  .beyond-sensors-subheading {
    font-size: 3.59vw;
  }

  .beyond-sensors-features,
  .beyond-sensors-list {
    font-size: 3.19vw;
  }

  .beyond-sensors-data-row {
    flex-direction: column;
    gap: 5vw;
  }

  .beyond-sensors-icon-circle {
    width: 10vw;
    height: 10vw;
  }

  .beyond-sensors-icon-circle i {
    font-size: 4.5vw;
  }

  /* explore spica platform */
  .explore-spica-platform {
    padding: 0 5.988vw 15vw;
    margin-top: 27.944vw;
  }

  .explore-spica-title {
    font-size: 6.387vw;
    margin-bottom: 5vw;
  }

  .explore-spica-wrap {
    flex-direction: column;
    gap: 6vw;
  }

  .explore-spica-nav {
    position: relative !important;
    top: 0;
    width: 100% !important;
    left: auto !important;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .explore-spica-content.explore-spica-content--nav-fixed {
    margin-left: 0;
  }

  .explore-spica-nav-item {
    flex: 1;
    min-width: 100%;
    padding: 3.5vw 4vw;
    font-size: 3.2vw;
  }

  .explore-spica-panel {
    min-height: 40vw;
    padding: 5vw;
  }

  .explore-spica-panel-title {
    font-size: 5vw;
    margin-bottom: 5vw;
  }

  .explore-spica-mode-block {
    margin-bottom: 8vw;
  }

  .explore-spica-mode-heading {
    font-size: 4vw;
  }

  .explore-spica-mode-desc,
  .explore-spica-mode-list {
    font-size: 3.5vw;
  }

  .explore-spica-mode-sub {
    font-size: 3.8vw;
  }

  .explore-spica-screenshot-box {
    width: calc((100% - 16px) / 2);
    aspect-ratio: 9 / 19;
  }

  .explore-spica-screenshot-box--wide {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }

  .explore-spica-mode-tagline {
    font-size: 3.8vw;
  }

  .explore-spica-pills {
    gap: 2.4vw;
    margin-bottom: 5vw;
  }

  .explore-spica-pill {
    padding: 2.4vw 4vw;
    font-size: 3.2vw;
  }

  .explore-spica-task-layout {
    flex-direction: column;
    gap: 5vw;
  }

  .explore-spica-task-col--center {
    width: 100%;
    order: -1;
  }

  .explore-spica-task-phone {
    width: 45vw;
    max-width: 200px;
  }

  .explore-spica-task-title {
    font-size: 3.5vw;
  }

  .explore-spica-watch-link {
    font-size: 3.2vw;
  }

  .research-areas-section {
    padding: 0 5.988vw 15vw;
    margin-top: 27.944vw;
  }

  .research-areas-title {
    font-size: 6.387vw;
    margin-bottom: 4vw;
  }

  .research-areas-sub {
    font-size: 4vw;
    margin-bottom: 5vw;
  }

  .research-areas-tags {
    gap: 3vw;
  }

  .research-areas-tag {
    padding: 2.4vw 4vw;
    font-size: 3.2vw;
    gap: 2vw;
  }

  .research-areas-tag i {
    font-size: 3.5vw;
  }

  /* health data */
  .container-main-health-data {
    padding: 0 5.988vw;
    margin-top: 27.944vw;
    margin-bottom: 15vw;
  }

  .container-main-health-data > h1 {
    font-size: 6.387vw;
    margin-bottom: 8.982vw;
  }

  .health-data-items {
    gap: 4.99vw;
  }

  .health-data-item {
    width: 27vw;
    height: 27vw;
    gap: 1.2vw;
  }

  .health-data-item i {
    font-size: 30px;
  }

  .health-data-item span {
    font-size: 20px;
  }

  .health-data-item:nth-child(6) {
    margin-left: 12vw;
  }

  .health-data-item:nth-child(10) {
    margin-left: 24vw;
  }

  /* 9 */
  /* .container-main-9-mobile {
    display: block;
    width: 95%;
    border-radius: 2.994vw;
    padding: 7.984vw 4.79vw;
    margin-bottom: 23.95vw;
  }

  .container-main-9-mobile h1 {
    color: white;
    font-size: 4.79vw;
    margin-bottom: 7vw;
  }

  .container-main-9-mobile p {
    color: white;
    font-size: 2.994vw;
    margin-bottom: 7.984vw;
  }

  .form-container {
    background-image: url("../images/SpicaSol/container-main-2-right-background.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 2.994vw;
    padding: 3.992vw;
    border: 1px solid #799dcbb0;
  }

  .input-container {
    position: relative;
    margin-bottom: 5.988vw;
  }

  .input-container label {
    position: absolute;
    top: 50%;
    left: 1.996vw;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.794vw;
    transition: 0.3s;
    pointer-events: none;
  }

  .input-container input,
  .input-container textarea {
    width: 100%;
    padding: 2.395vw 1.996vw;
    background: none;
    border: 0.1996vw solid rgba(255, 255, 255, 0.5);
    border-radius: 0.998vw;
    color: white;
    font-size: 3.194vw;
    outline: none;
  }

  .input-container textarea {
    resize: vertical;
    max-height: 19.96vw;
  }

  .input-container input:focus ~ label,
  .input-container input:not(:placeholder-shown) ~ label,
  .input-container textarea:focus ~ label,
  .input-container textarea:not(:placeholder-shown) ~ label {
    top: 1.996vw;
    font-size: 1.996vw;
    color: white;
  }

  .input-container input:focus {
    padding: 2.994vw 1.996vw;
    padding-bottom: 1.796vw;
  }

  .button-container {
    width: 100%;
    height: fit-content;
    text-align: right;
    margin: 0;
    padding: 0;
  }

  .submit-btn2 {
    width: 100%;
    padding: 2.195vw 11.576vw;
    background-color: transparent;
    border: 1px solid #c084fc;
    color: #c084fc;
    font-size: 3.194vw;
    border-radius: 0.998vw;
    cursor: pointer;
    transition: 0.3s;
  }

  .submit-btn2:hover {
    background-color: #a855f7;
  } */
  .container-main-9 {
    margin: 0 4.99vw;
    max-width: 100%;
    flex-direction: column;
    gap: 4.99vw;
    border-radius: 2.99vw;
    border: unset;
    background-color: unset;
  }

  .container-main-92-left,
  .container-main-92-right {
    width: 100%;
  }

  .container-main-92-right {
    margin-bottom: 15vw;
    border: 1px solid #799dcb;
    border-radius: 15px;
    padding-bottom: 9.98vw;
  }

  .container-main-92-left > div {
    display: none;
  }

  .container-main-92-left > h1 {
    font-size: 5vw;
    color: white;
    font-weight: 500;
    margin-bottom: 3.19vw;
    margin-top: 2vw;
  }

  .container-main-92-left > p {
    font-size: 3.4vw;
    color: white;
    font-weight: 500;
    line-height: 1.5;
  }

  .submit-btn2 {
    left: 50%;
    transform: translate(-50%, 0);
    width: 75%;
    bottom: 2.8%;
  }
}


.container-main-journey-items{
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.journey-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

}
.journey-item *{
  color: white;
}
.journey-item > div {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.journey-item-item.lines{
  margin: 0 -50px;
  z-index: 9999;
}