@charset "utf-8";

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  color: white;
  background: transparent;
 background: #050b18;
   background-image: url("/images/plainbg2.png");
    background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 40% 35%, rgba(0, 180, 255, 0.16), transparent 55%),
              radial-gradient(circle at 70% 65%, rgba(0, 220, 200, 0.14), transparent 60%),
              linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.00));
}

html {
  height: 100%;
  width: 100%;
  background-color: #f8fbff;
  background-image: radial-gradient(circle at 16% 18%, #dbeafe80 0%, #dbeafe00 55%),
                    radial-gradient(circle at 84% 26%, #c7d2fe66 0%, #c7d2fe00 52%),
                    radial-gradient(circle at 50% 92%, #e0f2fe66 0%, #e0f2fe00 60%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0px;
  padding-right: 24px;
  padding-bottom: 0px;
  padding-left: 50px;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0px 0px 0px 0px);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0px;
  padding: 0px;
  margin: 0px;
  opacity: 0;
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
  background-color: #00000073;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ffffff0f;
}

.nav-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0px;
  padding-right: 24px;
  padding-bottom: 0px;
  padding-left: 24px;
}

.logo {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  z-index: 1001;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a.neuranet-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  text-shadow: 0px 0px 20px #ffffff, 0px 0px 30px #e0f2fe, 0px 0px 40px #bae6fd;
  animation-name: pulse-glow;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-glow {
  0% {
    text-shadow: 0px 0px 20px #ffffff, 0px 0px 30px #e0f2fe, 0px 0px 40px #bae6fd;
  }

  50% {
    text-shadow: 0px 0px 30px #ffffff, 0px 0px 45px #e0f2fe, 0px 0px 60px #bae6fd;
  }

  100% {
    text-shadow: 0px 0px 20px #ffffff, 0px 0px 30px #e0f2fe, 0px 0px 40px #bae6fd;
  }
}

.button-header {
  display: inline-block;
  padding-top: 10px;
  padding-right: 18px;
  padding-bottom: 10px;
  padding-left: 18px;
  background-color: #483bb7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition-property: background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  z-index: 1001;
}

.button-header:hover {
  background-color: #1a6bb0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background-color: transparent;
  border-style: none;
  cursor: pointer;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hamburger {
      display: flex;
    }

  .nav-links {
      position: fixed;
      top: 61px;
      left: 0px;
      right: 0px;
      flex-direction: column;
      gap: 0px;
      background-color: #000000cc;
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      border-bottom-style: solid;
      border-bottom-width: 1px;
      border-bottom-color: #ffffff0f;
      padding-top: 20px;
      padding-right: 24px;
      padding-bottom: 20px;
      padding-left: 24px;
      max-height: 0px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transition-property: max-height, opacity, visibility;
      transition-duration: 0.3s;
      transition-timing-function: ease;
    }

  .nav-links.active {
      max-height: 600px;
      opacity: 1;
      visibility: visible;
    }

  .nav-links li {
      width: 100%;
      border-bottom-style: solid;
      border-bottom-width: 1px;
      border-bottom-color: #ffffff1a;
    }

  .nav-links li:last-child {
      border-bottom-style: none;
    }

  .nav-links a {
      display: block;
      padding-top: 14px;
      padding-right: 0px;
      padding-bottom: 14px;
      padding-left: 0px;
      font-size: 18px;
    }

  .button-header {
      display: none;
    }



  .services-title {
      font-size: 32px;
      margin-bottom: 40px;
    }

  .services-inner {
      width: 100%;
      flex-direction: column;
      gap: 30px;
    }

  .services-image {
      width: 100%;
      min-height: 320px;
    }

  .services-list {
      width: 100%;
    }

  .service-title {
      font-size: 20px;
    }

  .service-content p {
      font-size: 16px;
    }

  .service-row {
      padding-right: 32px;
    }

  .service-toggle {
      width: 22px;
      height: 22px;
      font-size: 18px;
    }

  input[type="radio"]#service1:checked ~ .services-list .item-1 .service-content,
    input[type="radio"]#service2:checked ~ .services-list .item-2 .service-content,
    input[type="radio"]#service3:checked ~ .services-list .item-3 .service-content,
    input[type="radio"]#service4:checked ~ .services-list .item-4 .service-content,
    input[type="radio"]#service5:checked ~ .services-list .item-5 .service-content,
    input[type="radio"]#service6:checked ~ .services-list .item-6 .service-content {
      padding-right: 0px;
    }


  .process-image {
      width: 100%;
      flex-basis: auto;
      height: 300px;
    }

  .process-list {
      width: 100%;
      flex-basis: auto;
    }

  .contact-component-inner {
      flex-direction: column;
      gap: 40px;
      padding-top: 40px;
      padding-right: 30px;
      padding-bottom: 60px;
      padding-left: 30px;
    }

  .contact-left {
      width: 100%;
      max-width: 400px;
      margin-right: auto;
      margin-left: auto;
    }

  .contact-right {
      width: 100%;
    }

  .contact-title {
      font-size: 32px;
    }

  .contact-description {
      font-size: 16px;
    }

  .neuranet-hero {
      min-height: 80vh;
      padding-top: 100px;
      padding-right: 30px;
      padding-bottom: 60px;
      padding-left: 30px;
    }

  .neuranet-logo-container {
      width: 260px;
      height: 260px;
      margin-bottom: 40px;
    }

  .neuranet-glow-1 {
      width: 220px;
      height: 220px;
    }

  .neuranet-glow-2 {
      width: 270px;
      height: 270px;
    }

  .neuranet-logo {
      width: 180px;
    }

  .neuranet-hero-title {
      font-size: 36px;
    }

  .neuranet-hero-subtitle {
      font-size: 22px;
    }

  .scroll-indicator {
      bottom: 30px;
    }

  .scroll-arrow {
      width: 20px;
      height: 20px;
    }

  .neuranet-features {
      padding-top: 100px;
      padding-right: 30px;
      padding-bottom: 140px;
      padding-left: 30px;
    }

  .neuranet-features-title {
      font-size: 34px;
    }

  .neuranet-features-subtitle {
      font-size: 20px;
      margin-bottom: 60px;
    }

  .features-cards {
      flex-direction: column;
      gap: 28px;
    }

  .feature-card {
      padding-top: 40px;
      padding-right: 36px;
      padding-bottom: 40px;
      padding-left: 36px;
    }

  .feature-card-side {
      width: 100%;
      max-width: 600px;
      min-height: auto;
    }

  .feature-card-center {
      width: 100%;
      max-width: 600px;
      min-height: auto;
      transform: translateY(0px);
    }

  .feature-card-center:hover {
      transform: translateY(-8px);
    }

  .neuranet-process {
      padding-top: 140px;
      padding-right: 30px;
      padding-bottom: 150px;
      padding-left: 30px;
    }

  .neuranet-process-title {
      font-size: 34px;
    }

  .neuranet-process-subtitle {
      font-size: 20px;
      margin-bottom: 60px;
    }

  .process-cards {
      flex-direction: column;
      gap: 28px;
      min-height: auto;
    }

  .process-card {
      width: 100%;
      max-width: 600px;
      min-height: auto;
      padding-top: 40px;
      padding-right: 36px;
      padding-bottom: 40px;
      padding-left: 36px;
      transform: rotate(0deg) translateY(0px);
    }

  .process-card:hover {
      transform: translateY(-8px) scale(1.02);
    }

  .process-card-1 {
      margin-right: 0px;
    }

  .process-card-2 {
      margin-right: 0px;
    }

  .process-card-3 {
      margin-right: 0px;
    }

  .process-card-1:hover {
      transform: translateY(-8px) scale(1.02);
    }

  .process-card-2:hover {
      transform: translateY(-8px) scale(1.02);
    }

  .process-card-3:hover {
      transform: translateY(-8px) scale(1.02);
    }

  .process-card-4:hover {
      transform: translateY(-8px) scale(1.02);
    }

  .neuranet-different {
      padding-top: 140px;
      padding-right: 30px;
      padding-bottom: 160px;
      padding-left: 30px;
    }

  .different-cards {
      flex-direction: column;
      gap: 28px;
    }

  .different-card {
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

  .ds360-curve {
      width: 110%;
    }

  .services-section .services-inner {
      flex-direction: column;
      align-items: stretch;
      gap: 30px;
    }

  .services-section .services-image {
      width: 100%;
      flex-basis: auto;
      min-height: 260px;
      max-height: 360px;
    }

  .services-section .services-list {
      width: 100%;
      flex-basis: auto;
    }

  .case-studies-section {
      padding: 70px 30px 90px 30px;
    }

  .case-studies-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

  .case-study-image {
      height: 200px;
    }

}

@media (max-width: 600px) {
  .logo {
      font-size: 16px;
      visibility: hidden;
    }

  .nav-logo-icon {
      visibility: hidden;
  }

  .nav-logo-text {
      visibility: hidden;
  }

  .nav-container {
      padding-right: 10x;
      padding-left: 0px;
      justify-content: right;
      gap: 20px;
    }

  .nav-links {
      padding-right: 6px;
      padding-left: 16px;
    }

  .process-section {
      padding-top: 50px;
      padding-right: 20px;
      padding-left: 20px;
      margin-top: 80px;
      margin-bottom: 100px;
    }

  .process-title {
      font-size: 32px;
      margin-bottom: 40px;
    }

  .process-image {
      height: 250px;
    }

  .process-label {
      font-size: 20px;
    }

  .process-content p {
      font-size: 16px;
    }

  .contact-component {
      padding-top: 60px;
      padding-right: 15px;
      padding-bottom: 80px;
      padding-left: 15px;
    }

  .contact-component-inner {
      padding-top: 30px;
      padding-right: 20px;
      padding-bottom: 40px;
      padding-left: 20px;
    }

  .contact-title {
      font-size: 28px;
    }

  .form-row {
      flex-direction: column;
      gap: 0px;
    }

  .form-input {
      font-size: 14px;
    }

  .form-textarea {
      font-size: 14px;
    }

  .button-submit {
      width: 100%;
      text-align: center;
    }

  .form-actions {
      justify-content: center;
    }

  .neuranet-hero {
      padding-top: 80px;
      padding-right: 20px;
      padding-bottom: 50px;
      padding-left: 20px;
    }

  .neuranet-logo-container {
      width: 220px;
      height: 220px;
      margin-bottom: 32px;
    }

  .neuranet-glow-1 {
      width: 180px;
      height: 180px;
      filter: blur(60px);
    }

  .neuranet-glow-2 {
      width: 220px;
      height: 220px;
      filter: blur(80px);
    }

  .neuranet-logo {
      width: 150px;
    }

  .neuranet-hero-title {
      font-size: 30px;
    }

  .neuranet-hero-subtitle {
      font-size: 19px;
    }

  .scroll-indicator {
      display: none;
    }

  .neuranet-features {
      padding-top: 80px;
      padding-right: 20px;
      padding-bottom: 120px;
      padding-left: 20px;
    }

  .neuranet-features-title {
      font-size: 30px;
      margin-bottom: 16px;
    }

  .neuranet-features-subtitle {
      font-size: 18px;
      margin-bottom: 50px;
    }

  .feature-card {
      padding-top: 36px;
      padding-right: 32px;
      padding-bottom: 36px;
      padding-left: 32px;
    }

  .feature-card-title {
      font-size: 22px;
      margin-bottom: 20px;
    }

  .feature-card-text {
      font-size: 17px;
      margin-bottom: 10px;
    }

  .neuranet-process {
      padding-top: 120px;
      padding-right: 20px;
      padding-bottom: 120px;
      padding-left: 20px;
    }

  .neuranet-process-title {
      font-size: 30px;
      margin-bottom: 16px;
    }

  .neuranet-process-subtitle {
      font-size: 18px;
      margin-bottom: 50px;
    }

  .process-card {
      padding-top: 36px;
      padding-right: 32px;
      padding-bottom: 36px;
      padding-left: 32px;
    }

  .process-card-number {
      font-size: 22px;
      margin-bottom: 24px;
    }

  .process-card-description {
      font-size: 18px;
    }

  .neuranet-different {
      padding-top: 120px;
      padding-right: 20px;
      padding-bottom: 140px;
      padding-left: 20px;
    }

  .different-card {
      padding-top: 38px;
      padding-right: 32px;
      padding-bottom: 38px;
      padding-left: 32px;
      min-height: auto;
    }

  .neuranet-usecases {
      padding-top: 120px;
      padding-right: 20px;
      padding-bottom: 120px;
      padding-left: 20px;
    }

  .neuranet-usecases-title {
      font-size: 30px;
      margin-bottom: 50px;
    }

  .usecase-button {
      font-size: 18px;
    }

  .usecase-panel-text {
      font-size: 16px;
    }

  .usecases-image-card {
      height: 280px;
    }

  .ds360-scene {
      background-image: url("/images/DS BG Mobile.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

  .ds360-scene-inner {
      width: min(382px, 100%);
      aspect-ratio: 382 / 487;
      position: relative;
      overflow: hidden;
    }

  .ds360-scene-text {
      position: absolute;
      left: 50%;
      top: 12%;
      transform: translateX(-50%);
      width: 90%;
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.25;
      background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      z-index: 4;
    }

  .ds360-logo,
    .ds360-curve {
      display: none;
    }

  .services-section {
      padding-left: 20px;
      padding-right: 20px;
    }

  .services-inner {
      width: 100%;
      gap: 24px;
    }

  .services-image {
      width: 100%;
      min-height: 240px;
      height: 240px;
    }

  .service-img {
      object-fit: contain;
    }

  .case-studies-section {
      padding: 60px 20px 80px 20px;
    }

  .case-studies-title {
      font-size: 32px;
      margin-bottom: 40px;
    }

  .footer {
      padding: 60px 20px;
    }

  .footer-title {
      font-size: 26px;
    }

  .footer-nav {
      gap: 10px;
    }

}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #000000;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.hero-video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #0000008c;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  padding-top: 40px;
  padding-right: 24px;
  padding-bottom: 40px;
  padding-left: 24px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 24px;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: #e6eef8;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
}

.hero-actions {
  display: block;
}

.button-hero {
  display: inline-block;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background-color: #1f7acb;
  border-style: none;
  border-width: 0px;
  cursor: pointer;
  text-decoration: none;
}


.help-section {
  margin-top: 140px;
  margin-right: 0px;
  margin-bottom: 100px;
  margin-left: 0px;
  padding-top: 70px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
background-color: transparent;

background-image: none;
}

.help-title-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 48px;
  padding-left: 0px;
}

.help-main-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  max-width: 1200px;
}

.help-grid {
  width: 90%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 28px;
  grid-row-gap: 28px;
}

.help-card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-shadow: 0px 6px 12px #0f172a0f;
  overflow: hidden;
}

.help-card-image {
  width: 180px;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-right: 0px;
  margin-left: 0px;
  position: relative;
}

.help-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, #000000 85%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, #000000 85%, rgba(0, 0, 0, 0) 100%);
}

.help-card-content {
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: 14px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.help-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 6px;
  margin-left: 0px;
}

.help-card-text {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

/* PROCESS SECTION (HOMEPAGE) */

.process-section {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 110px;
  padding-right: 50px;
  padding-bottom: 190px;
  padding-left: 50px;
  background-color: transparent;
  background-size: 100% 100%;
  overflow-x: hidden;
  

  position: relative;
  z-index: 1;
  isolation: isolate;
}

.process-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-top: 70px;
  margin-right: 0px;
  margin-bottom: 190px;
  margin-left: 0px;
  color: #483bb7;
}

.process-inner {
  width: 90%;
  max-width: none;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.process-image {
  width: 48%;
  flex-basis: 48%;
  flex-shrink: 0;
  position: relative;
  border-radius: 22px;
  overflow: visible;
  background-color: transparent;
  box-shadow: none;
  min-height: 360px;
}

.process-image:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 680px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, rgba(0, 220, 202, 0.033), transparent 65%),
              radial-gradient(circle at 70% 65%, rgba(0, 179, 255, 0.064), transparent 68%);
  filter: blur(32px);
  opacity: 1;
  pointer-events: none;
  border-radius: 50%;
}

.process-float-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0px 14px 36px rgba(15, 23, 42, 0.14);
}

.icon-1 {
    display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  left: 18%;
  top: 22%;
  animation-name: floaty-1;
  animation-duration: 4.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.icon-2 {
    display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  left: 42%;
  top: 10%;
  animation-name: floaty-2;
  animation-duration: 4.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.4s;
}

.icon-3 {
  left: 68%;
    display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  top: 30%;
  animation-name: floaty-3;
  animation-duration: 4.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.8s;
}

.icon-4 {
  left: 34%;
  top: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  animation-name: floaty-4;
  animation-duration: 4.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.2s;
}

.icon-5 {
  left: 58%;
    display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  top: 62%;
  animation-name: floaty-5;
  animation-duration: 4.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0.6s;
}

@keyframes floaty-1 {
  0% { transform: translateY(0px) rotate(-18deg); }
  50% { transform: translateY(-10px) rotate(-18deg); }
  100% { transform: translateY(0px) rotate(-18deg); }
}

@keyframes floaty-2 {
  0% { transform: translateY(0px) rotate(12deg); }
  50% { transform: translateY(-10px) rotate(12deg); }
  100% { transform: translateY(0px) rotate(12deg); }
}

@keyframes floaty-3 {
  0% { transform: translateY(0px) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(-6deg); }
  100% { transform: translateY(0px) rotate(-6deg); }
}

@keyframes floaty-4 {
  0% { transform: translateY(0px) rotate(16deg); }
  50% { transform: translateY(-10px) rotate(16deg); }
  100% { transform: translateY(0px) rotate(16deg); }
}

@keyframes floaty-5 {
  0% { transform: translateY(0px) rotate(-14deg); }
  50% { transform: translateY(-10px) rotate(-14deg); }
  100% { transform: translateY(0px) rotate(-14deg); }
}

.process-inner input[type="radio"] {
  position: absolute;
  left: -9999px;
  width: 0px;
  height: 0px;
  opacity: 0;
  pointer-events: none;
}

.process-list {
  width: 48%;
  flex-basis: 48%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.process-item {
  position: relative;
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #627ec180;
}

.process-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  color: rgb(29, 37, 61);
}

.process-label {
  font-size: 24px;
  font-weight: 600;
  color: #483bb7;
  line-height: 1.3;
}

.process-toggle {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #421563;
  cursor: pointer;
  font-weight: 300;
}

.process-toggle-close {
  display: none;
}

@media (max-width: 600px) {
  .process-inner {
    flex-direction: column;
    gap: px;
  }

  .process-list {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

}


input[type="radio"]#process1:checked~.process-list .item-1 .process-toggle-open {
  display: none;
}

input[type="radio"]#process1:checked~.process-list .item-1 .process-toggle-close {
  display: flex;
}

input[type="radio"]#process2:checked~.process-list .item-2 .process-toggle-open {
  display: none;
}

input[type="radio"]#process2:checked~.process-list .item-2 .process-toggle-close {
  display: flex;
}

input[type="radio"]#process3:checked~.process-list .item-3 .process-toggle-open {
  display: none;
}

input[type="radio"]#process3:checked~.process-list .item-3 .process-toggle-close {
  display: flex;
}

.process-content {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  transition-property: max-height, opacity, padding;
  transition-duration: 300ms;
  transition-timing-function: ease;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.process-content p {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

input[type="radio"]#process1:checked~.process-list .item-1 .process-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
  padding-bottom: 0px;
  padding-left: 0px;
}

input[type="radio"]#process2:checked~.process-list .item-2 .process-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
  padding-bottom: 0px;
  padding-left: 0px;
}

input[type="radio"]#process3:checked~.process-list .item-3 .process-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
  padding-bottom: 0px;
  padding-left: 0px;
}

input[type="radio"]#service1:checked ~ .services-image .img-1 { opacity: 1; z-index: 1; }

input[type="radio"]#service2:checked ~ .services-image .img-2 { opacity: 1; z-index: 1; }

input[type="radio"]#service3:checked ~ .services-image .img-3 { opacity: 1; z-index: 1; }

input[type="radio"]#service4:checked ~ .services-image .img-4 { opacity: 1; z-index: 1; }

input[type="radio"]#service5:checked ~ .services-image .img-5 { opacity: 1; z-index: 1; }

input[type="radio"]#service6:checked ~ .services-image .img-6 { opacity: 1; z-index: 1; }

input[type="radio"]#service1:checked ~ .services-list .item-1 .service-toggle-open { display: none; }

input[type="radio"]#service1:checked ~ .services-list .item-1 .service-toggle-close { display: flex; }

input[type="radio"]#service2:checked ~ .services-list .item-2 .service-toggle-open { display: none; }

input[type="radio"]#service2:checked ~ .services-list .item-2 .service-toggle-close { display: flex; }

input[type="radio"]#service3:checked ~ .services-list .item-3 .service-toggle-open { display: none; }

input[type="radio"]#service3:checked ~ .services-list .item-3 .service-toggle-close { display: flex; }

input[type="radio"]#service4:checked ~ .services-list .item-4 .service-toggle-open { display: none; }

input[type="radio"]#service4:checked ~ .services-list .item-4 .service-toggle-close { display: flex; }

input[type="radio"]#service5:checked ~ .services-list .item-5 .service-toggle-open { display: none; }

input[type="radio"]#service5:checked ~ .services-list .item-5 .service-toggle-close { display: flex; }

input[type="radio"]#service6:checked ~ .services-list .item-6 .service-toggle-open { display: none; }

input[type="radio"]#service6:checked ~ .services-list .item-6 .service-toggle-close { display: flex; }

input[type="radio"]#service1:checked ~ .services-list .item-1 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
}

input[type="radio"]#service2:checked ~ .services-list .item-2 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
}

input[type="radio"]#service3:checked ~ .services-list .item-3 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
}

input[type="radio"]#service4:checked ~ .services-list .item-4 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
}

input[type="radio"]#service5:checked ~ .services-list .item-5 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
}

input[type="radio"]#service6:checked ~ .services-list .item-6 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
}

/* TABLET + MOBILE: stack image on top, list below */

@media (max-width: 520px) {
  .services-section {
      padding-right: 20px;
      padding-left: 20px;
    }

  .services-title {
      font-size: 28px;
    }

  .services-image {
      min-height: 260px;
    }

  .ds360-tablet-img {
      display: none;
    }

  .ds360-mobile-img {
      display: block;
    }

  .dsaas2-tablet-img {
      display: none;
    }

  .dsaas2-mobile-img {
      display: block;
    }

  .collaboration-tablet-img {
      display: none;
    }

  .collaboration-mobile-img {
      display: block;
    }

}


.service-item {
  position: relative;
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #627ec180;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  color: #0b1832;
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  color: #483bb7;
  line-height: 1.3;
}

.service-toggle {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #483bb7;
  cursor: pointer;
  font-weight: 300;
}

.service-toggle-close {
  display: none;
}

input[type="radio"]#service1:checked~.services-list .item-1 .service-toggle-open {
  display: none;
}

input[type="radio"]#service1:checked~.services-list .item-1 .service-toggle-close {
  display: flex;
}

input[type="radio"]#service2:checked~.services-list .item-2 .service-toggle-open {
  display: none;
}

input[type="radio"]#service2:checked~.services-list .item-2 .service-toggle-close {
  display: flex;
}

input[type="radio"]#service3:checked~.services-list .item-3 .service-toggle-open {
  display: none;
}

input[type="radio"]#service3:checked~.services-list .item-3 .service-toggle-close {
  display: flex;
}

input[type="radio"]#service4:checked~.services-list .item-4 .service-toggle-open {
  display: none;
}

input[type="radio"]#service4:checked~.services-list .item-4 .service-toggle-close {
  display: flex;
}

input[type="radio"]#service5:checked~.services-list .item-5 .service-toggle-open {
  display: none;
}

input[type="radio"]#service5:checked~.services-list .item-5 .service-toggle-close {
  display: flex;
}

input[type="radio"]#service6:checked~.services-list .item-6 .service-toggle-open {
  display: none;
}

input[type="radio"]#service6:checked~.services-list .item-6 .service-toggle-close {
  display: flex;
}

.service-content {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  transition-property: max-height, opacity, padding;
  transition-duration: 300ms;
  transition-timing-function: ease;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.service-content p {
  font-size: 20px;
  font-weight: 500;
  color: #120e37;
  line-height: 1.5;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

input[type="radio"]#service1:checked~.services-list .item-1 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
  padding-bottom: 0px;
  padding-left: 0px;
}

input[type="radio"]#service2:checked~.services-list .item-2 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
  padding-bottom: 0px;
  padding-left: 0px;
}

input[type="radio"]#service3:checked~.services-list .item-3 .service-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 40px;
  padding-bottom: 0px;
  padding-left: 0px;
}

/* SERVICES SECTION (HOMEPAGE) */

.services-section {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom:0px;
  margin-left: 0px;
  padding-top: 90px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
  padding-top: 150px;
  padding-bottom: 190px;
  background-color: transparent;

}

.services-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 160px;
  margin-left: 0px;
  color: #483bb7;
}

.services-inner {
  width: 90%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 170px;
}

.services-image {
  width: 38%;
  flex-basis: 31%;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
 
  background-color: #f1f5f900;
  align-self: stretch;
}

.service-img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: ease;
  border-radius: 12px;
}

.services-inner input[type="radio"] {
  position: absolute;
  left: -9999px;
  width: 0px;
  height: 0px;
  opacity: 0;
  pointer-events: none;
}

input[type="radio"]#service1:checked~.services-image .img-1 {
  opacity: 1;
  z-index: 1;
}

input[type="radio"]#service2:checked~.services-image .img-2 {
  opacity: 1;
  z-index: 1;
}

input[type="radio"]#service3:checked~.services-image .img-3 {
  opacity: 1;
  z-index: 1;
}

input[type="radio"]#service4:checked~.services-image .img-4 {
  opacity: 1;
  z-index: 1;
}

input[type="radio"]#service5:checked~.services-image .img-5 {
  opacity: 1;
  z-index: 1;
}

input[type="radio"]#service6:checked~.services-image .img-6 {
  opacity: 1;
  z-index: 1;
}

.services-list {
  width: 48%;
  flex-basis: 48%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}


.form-textarea {
  border-style: solid;
  border-width: 1px;
  border-color: #cbd5e1;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease;
}

.form-textarea:focus {
  border-color: #1f7acb;
}

.form-actions {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.button-submit {
  display: inline-block;
  padding-top: 12px;
  padding-right: 28px;
  padding-bottom: 12px;
  padding-left: 28px;
  background-color: #000000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border-style: none;
  border-width: 0px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button-submit:hover {
  background-color: #1f1f1f;
}

.scheduling-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  position: relative;
}

.scheduling-divider::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #cbd5e1;
}

.scheduling-divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #cbd5e1;
}

.divider-text {
  padding-right: 16px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.button-schedule {
  display: inline-block;
  width: 100%;
  padding-top: 12px;
  padding-right: 28px;
  padding-bottom: 12px;
  padding-left: 28px;
  background-color: #ffffff;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  text-align: center;
  text-decoration: none;
  border-style: solid;
  border-width: 2px;
  border-color: #0f172a;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.button-schedule:hover {
  background-color: #0f172a;
  color: #ffffff;
}

.form-message {
  width: 100%;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  display: none;
}

.form-message-success {
  display: block;
  background-color: #dcfce7;
  color: #166534;
  border-style: solid;
  border-width: 1px;
  border-color: #86efac;
}

.form-message-error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border-style: solid;
  border-width: 1px;
  border-color: #fca5a5;
}

.floating-schedule-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2147483647;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;

  padding-top: 14px;
  padding-right: 20px;
  padding-bottom: 14px;
  padding-left: 20px;
  background-color: #594ade;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border-style: none;
  border-width: 0px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}


.floating-schedule-button:hover {
  background-color: #483bb7;
  transform: translateY(-2px);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-schedule-button:active {
  transform: translateY(0px);
}

@media (max-width: 768px) {
  .floating-schedule-button {
      bottom: 15px;
      left: 15px;
      font-size: 13px;
      padding-top: 12px;
      padding-right: 16px;
      padding-bottom: 12px;
      padding-left: 16px;
    }

}

@media (max-width: 480px) {
  .floating-schedule-button {
      font-size: 12px;
      padding-top: 10px;
      padding-right: 14px;
      padding-bottom: 10px;
      padding-left: 14px;
      white-space: normal;
      line-height: 1.3;
    }

}

.neuranet-hero {
  width: 100%;
  min-height: 100vh;
  background-color: #01100F;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-right: 50px;
  padding-bottom: 80px;
  padding-left: 50px;
  position: relative;
}

.neuranet-hero-inner {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.neuranet-logo-container {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

.neuranet-glow {
  position: absolute;
  border-radius: 50%;
  background-color: #5ED4CC;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.neuranet-glow-1 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.neuranet-glow-2 {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  opacity: 0.4;
}

.neuranet-logo {
  width: 450px;
  height: auto;
  position: relative;
  z-index: 2;
}

.neuranet-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 80px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
}

.neuranet-hero-subtitle {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation-name: bounce;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.scroll-arrow {
  opacity: 0.7;
}

@keyframes bounce {
  0% {
    transform: translateX(-50%) translateY(0px);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }

  100% {
    transform: translateX(-50%) translateY(0px);
  }
}

.neuranet-features {
  width: 100%;
  padding-top: 160px;
  padding-right: 50px;
  padding-bottom: 180px;
  padding-left: 50px;
 



  position: relative;
  overflow: hidden;
}

.neuranet-features-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.neuranet-features-title {
  font-size: 40px;
  font-weight: 700;
  color: #483bb7;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.neuranet-features-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
  max-width: 1000px;
  line-height: 1.4;
}

.features-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  width: 100%;
  max-width: 1100px;
}

.feature-card {
  border-radius: 28px;
  padding-top: 44px;
  padding-right: 40px;
  padding-bottom: 44px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition-property: transform, box-shadow, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: #FFFFFFB3;
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px #FFFFFFCC;
  outline-style: solid;
  outline-width: 1px;
  outline-color: #FFFFFF99;
  outline-offset: -8px;
  filter: drop-shadow(0px 26px 70px #00000008) drop-shadow(0px 0px 60px #5ED4CC1A);
  background-image: linear-gradient(180deg, #FFFFFFB3 0%, #FFFFFF80 100%);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
  transition-property: opacity, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  background-image: radial-gradient(circle, #C0E6DC66 0%, #C3E4E133 45%, transparent 72%);
}

.feature-card:hover::before {
  opacity: 0.16;
  filter: blur(160px);
}

.feature-card-side {
  width: 32%;
  min-height: 340px;
  background-color: #FFFFFF99;
  box-shadow: 0px 0px 40px #0000000A, 0px 20px 60px #00000008, inset 0px 0px 0px 1px #FFFFFFCC;
}

.feature-card-side::before {
  background-image: radial-gradient(circle, #5ED4CCB3 0%, #2A767366 40%, transparent 70%);
}

.feature-card-side:hover {
  transform: translateY(-8px);
  box-shadow: 0px 0px 60px #5ED4CC33, 0px 30px 80px #0000000A, inset 0px 0px 0px 1px #FFFFFFE6;
}

.feature-card-center {
  width: 36%;
  min-height: 380px;
  background-color: #FFFFFFA6;
  box-shadow: 0px 0px 60px #0000000D, 0px 30px 80px #0000000A, inset 0px 0px 0px 1px #FFFFFFE6;
  transform: translateY(-10px);
}

.feature-card-center::before {
  background-image: radial-gradient(circle, #5ED4CCE6 0%, #2A76738C 40%, transparent 70%);
}

.feature-card-center:hover {
  transform: translateY(-18px);
  box-shadow: 0px 0px 80px #5ED4CC40, 0px 40px 100px #0000000D, inset 0px 0px 0px 1px #FFFFFFFF;
}

.feature-card-title {
  font-size: 25px;
  font-weight: 700;
  color: #483bb7;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  position: relative;
  z-index: 2;
}

.feature-card-text {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  position: relative;
  z-index: 2;
}

.feature-card-text:last-child {
  margin-bottom: 0px;
}

@media (max-width: 1200px) {
  .features-cards {
      gap: 28px;
    }

  .feature-card {
      padding-top: 40px;
      padding-right: 36px;
      padding-bottom: 40px;
      padding-left: 36px;
    }

  .feature-card-side {
      width: 30%;
      min-height: 320px;
    }

  .feature-card-center {
      width: 40%;
      min-height: 360px;
    }

  .feature-card-title {
      font-size: 23px;
    }

  .feature-card-text {
      font-size: 17px;
    }

  .process-cards {
      gap: -30px;
    }

  .process-card {
      width: 28%;
      min-height: 320px;
      padding-top: 36px;
      padding-right: 32px;
      padding-bottom: 36px;
      padding-left: 32px;
    }

  .process-card-1 {
      margin-right: -45px;
    }

  .process-card-2 {
      margin-right: -45px;
    }

  .process-card-3 {
      margin-right: -45px;
    }

  .process-card-number {
      font-size: 20px;
      margin-bottom: 18px;
    }

  .process-card-description {
      font-size: 16px;
    }

}

.neuranet-process {
  width: 100%;
  padding-top: 160px;
  padding-right: 50px;
  padding-bottom: 220px;
  padding-left: 50px;
 
  overflow: hidden;
}

.neuranet-process-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.neuranet-process-title {
  font-size: 40px;
  font-weight: 700;
  color: #483bb7;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.neuranet-process-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
  max-width: 1000px;
  line-height: 1.4;
}

.process-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  width: 100%;
  max-width: 1200px;
  position: relative;
  min-height: 420px;
}

.process-card {
  width: 30%;
  min-height: 340px;
  padding-top: 40px;
  padding-right: 36px;
  padding-bottom: 40px;
  padding-left: 36px;
  background-color: #FFFFFFCC;
  border-radius: 24px;
  border-style: solid;
  border-width: 1px;
  border-color: #FFFFFFCC;
  backdrop-filter: blur(20px);
  position: relative;
  transition-property: transform, box-shadow, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  overflow: hidden;
  box-shadow: 0px 0px 60px #00000010, 0px 30px 80px #0000000A, inset 0px 0px 0px 1px #FFFFFFF2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background-image: radial-gradient(circle, #C0E6DC33 0%, #C3E4E11A 45%, transparent 72%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  filter: blur(160px);
  transition-property: opacity, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

.process-card:hover::before {
  opacity: 0.12;
  filter: blur(180px);
}

.process-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0px 0px 80px #00000014, 0px 40px 100px #0000000F, inset 0px 0px 0px 1px #FFFFFFF2;
}

.process-card-1 {
  transform: rotate(-2deg);
  z-index: 1;
  margin-right: -50px;
}

.process-card-1:hover {
  transform: rotate(-2deg) translateY(-12px) scale(1.02);
  z-index: 5;
}

.process-card-2 {
  transform: rotate(1deg) translateY(20px);
  z-index: 2;
  margin-right: -50px;
}

.process-card-2:hover {
  transform: rotate(1deg) translateY(8px) scale(1.02);
  z-index: 5;
}

.process-card-3 {
  transform: rotate(-1deg) translateY(-10px);
  z-index: 3;
  margin-right: -50px;
}

.process-card-3:hover {
  transform: rotate(-1deg) translateY(-22px) scale(1.02);
  z-index: 5;
}

.process-card-4 {
  transform: rotate(2deg) translateY(15px);
  z-index: 4;
}

.process-card-4:hover {
  transform: rotate(2deg) translateY(3px) scale(1.02);
  z-index: 5;
}

.process-card-number {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  position: relative;
  z-index: 2;
}

.process-card-description {
  font-size: 17px;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  position: relative;
  z-index: 2;
}

.neuranet-different {
  width: 100%;
  padding-top: 160px;
  padding-right: 50px;
  padding-bottom: 220px;
  padding-left: 50px;
  position: relative;
  overflow: hidden;
}

.neuranet-different-inner {
  max-width: 1400px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.neuranet-different-title {
  font-size: 40px;
  font-weight: 700;
  color: #483bb7;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 70px;
  margin-left: 0px;
}

.different-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 34px;
}

.different-card {
  width: 100%;
  max-width: 560px;
  min-height: 360px;
  padding-top: 44px;
  padding-right: 44px;
  padding-bottom: 44px;
  padding-left: 44px;
  background-color: #FFFFFFCC;
  border-radius: 28px;
  border-style: solid;
  border-width: 1px;
  border-color: #FFFFFFCC;
  backdrop-filter: blur(20px);
  box-shadow: 0px 0px 60px #00000010, 0px 30px 80px #0000000A, inset 0px 0px 0px 1px #FFFFFFF2;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition-property: transform, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

.different-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220%;
  height: 220%;
  border-radius: 50%;
  background-image: radial-gradient(circle, #C0E6DC33 0%, #C3E4E11A 45%, transparent 72%);
  opacity: 0.08;
  filter: blur(160px);
  pointer-events: none;
  z-index: 0;
  transition-property: opacity, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

.different-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 80px #00000014, 0px 40px 100px #0000000F, inset 0px 0px 0px 1px #FFFFFFF2;
}

.different-card:hover::before {
  opacity: 0.12;
  filter: blur(180px);
}

.different-card-left {
  transform: rotate(-2deg);
}

.different-card-right {
  transform: rotate(2deg);
}

.different-card-left:hover {
  transform: rotate(-2deg) translateY(-12px) scale(1.01);
}

.different-card-right:hover {
  transform: rotate(2deg) translateY(-12px) scale(1.01);
}

.different-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #483bb7;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
  position: relative;
  align-items: center;
  z-index: 2;
}

.different-icon-badge {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 28px;
  margin-left: 0px;
  background-color: #FFFFFFCC;
  background-image: radial-gradient(circle at 50% 45%, #FFFFFFE6 0%, #FFFFFF99 55%, #FFFFFF4D 100%);
  border-style: solid;
  border-width: 1px;
  border-color: #FFFFFFB3;
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 35px #5ED4CC26, 0px 18px 60px #00000008, inset 0px 0px 0px 1px #FFFFFFE6;
  outline-style: solid;
  outline-width: 1px;
  outline-color: #FFFFFF99;
  outline-offset: -8px;
}

.different-icon-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background-image: radial-gradient(circle, #5ED4CC66 0%, transparent 70%);
  opacity: 0.55;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.different-point {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.55;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.different-point:last-child {
  margin-bottom: 0px;
}

.neuranet-usecases {
  width: 100%;
  padding-top: 160px;
  padding-right: 50px;
  padding-bottom: 180px;
  padding-left: 50px;
  overflow: hidden;
}

.neuranet-usecases-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.neuranet-usecases-title {
  font-size: 40px;
  font-weight: 700;
  color: #483bb7;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 80px;
  margin-left: 0px;
}

.usecase-row {
  width: 100%;
  color: #483bb7;
  padding-top: 22px;
  padding-right: 0px;
  padding-bottom: 22px;
  padding-left: 0px;
  border-style: solid;
  border-width: 0px;
  border-color: #54545400;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #cbcbcb1a;
}

.usecase-row-last {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #00000000;
}

.usecase-button {
  width: 100%;
  text-align: left;
  background-color: #ffffff00;
  border-style: solid;
  border-width: 0px;
  border-color: #00000000;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  font-size: 20px;
  font-weight: 700;
  color: #483bb7;
  cursor: pointer;
  display: block;
}

.usecase-button:hover {
  opacity: 0.85;
}

.usecase-panel {
  display: none;
  margin-top: 14px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.usecase-panel-text {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  max-width: 640px;
}

.usecase-row-active .usecase-panel {
  display: block;
}
 
@media (max-width: 900px) {
  .neuranet-usecases {
    padding-top: 140px;
    padding-right: 30px;
    padding-bottom: 140px;
    padding-left: 30px;
  }

  .neuranet-usecases-title {
    font-size: 34px;
    margin-bottom: 60px;
  }

  .usecases-layout {
    flex-direction: column;
    gap: 40px;
  }

  .usecases-image-card {
    width: 100%;
    max-width: 640px;
    height: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

.usecases-layout {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
}

.usecases-list {
  width: 100%;
}

.usecases-image-card {
  width: 100%;
}

.usecases-image {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}



.dsaas-hero {
  width: 100%;
  height: 957px;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 300px;
  padding-right: 20px;
  padding-bottom: 120px;
  padding-left: 20px;
}

.dsaas-hero::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, rgba(0, 200, 255, 0.00) 0%, rgba(0, 200, 255, 0.22) 18%, rgba(0, 200, 255, 0.00) 38%),
    linear-gradient(132deg, rgba(0, 180, 240, 0.00) 0%, rgba(0, 180, 240, 0.16) 20%, rgba(0, 180, 240, 0.00) 44%),
    linear-gradient(150deg, rgba(0, 160, 255, 0.00) 0%, rgba(0, 160, 255, 0.12) 22%, rgba(0, 160, 255, 0.00) 48%);
  opacity: 0.9;
  filter: blur(40px);
  z-index: 1;
}

.dsaas-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;2
  opacity: 0.85;
  filter: blur(0px);
}

.dsaas-hero-vignette {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.25) 65%, rgba(0, 0, 0, 0.70) 100%);


  pointer-events: none;
}

.dsaas-hero-bottom-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  width: 100%;
  height: 900px;
  transform: translateX(-50%);
  background-image: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(0, 220, 255, 0.85) 0%, rgba(0, 200, 255, 0.50) 30%, rgba(0, 180, 240, 0.20) 55%, rgba(0, 0, 0, 0.00) 80%);
  pointer-events: none;
}

.dsaas-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  width: 100%;
}

.dsaas-hero-title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 68px;
  line-height: 1.06;
  letter-spacing: -1.5px;
}

.dsaas-hero-title-gradient {
  background-image: linear-gradient(135deg, #7dd3fc 0%, #bfdbfe 45%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dsaas-hero-subtitle {
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 180px;
  margin-left: auto;
  max-width: 780px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.dsaas-hero-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dsaas-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  padding-right: 22px;
  padding-bottom: 14px;
  padding-left: 22px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  background-color: rgba(5, 8, 12, 0.90);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(90, 220, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0px 18px 50px rgba(0, 210, 255, 0.12), 0px 0px 0px rgba(0, 0, 0, 0);
  transition-property: transform, box-shadow, border-color, background-color;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}

.dsaas-hero-button:hover {
  transform: translateY(-1px);
  border-color: rgba(90, 220, 255, 0.45);
  background-color: rgba(5, 8, 12, 0.96);
  box-shadow: 0px 20px 60px rgba(0, 210, 255, 0.18), 0px 0px 0px rgba(0, 0, 0, 0);
}

.ds360-scene {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/images/DS BG.png");
}

.ds360-scene-inner {
  width: min(1399px, 100%);
  aspect-ratio: 1399 / 833;
  position: relative;
  overflow: hidden;
}

.ds360-scene-text {
  position: absolute;
  left: 50%;
  top: 14.4%;
  transform: translateX(-50%);
  width: min(980px, 92%);
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 4;
}

.ds360-logo {
  position: absolute;
  left: 50%;
  top: 59.8%;
  transform: translateX(-50%);
  width: 66.2%;
  height: auto;
  opacity: 0.38;
  z-index: 2;
}

.ds360-curve {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 104%;
  z-index: 50;
  pointer-events: none;
  display: block;
}

.ds360-curve img {
  display: block;
  width: 100%;
  height: auto;
}

.ds360-section {
  width: min(1399px, 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1399 / 833;
}

.ds360-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("images/DS BG 2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ds360-mobile-img,
.ds360-tablet-img {
  display: none;
  width: 100%;
  height: auto;
}

.ds360-content {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.ds360-title {
  width: min(980px, 92%);
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ds360-subtitle {
  width: min(980px, 92%);
  margin: 32px auto 0 auto;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.35;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ds360-box {
  position: absolute;
  z-index: 4;
  font-family: Inter, sans-serif;
}

.ds360-box h3 {
  margin: 0 0 11px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ds360-box p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.box-top-left {
  left: 179px;
  top: 337px;
  width: 320px;
  text-align: right;
}

.box-bottom-left {
  left: 167px;
  top: 498px;
  width: 320px;
  text-align: right;
}

.box-top-right {
  left: 905px;
  top: 337px;
  width: 420px;
  text-align: left;
}

.box-bottom-right {
  left: 905px;
  top: 498px;
  width: 360px;
  text-align: left;
}

@media (max-width: 1250px) {
  .ds360-section {
      aspect-ratio: auto;
      overflow: visible;
    }

  .ds360-bg,
    .ds360-content {
      display: none;
    }

  .ds360-tablet-img {
      display: block;
    }

  .dsaas2-inner {
      aspect-ratio: auto;
      overflow: visible;
      background-image: none;
    }

  .dsaas2-title,
    .dsaas2-text {
      display: none;
    }

  .dsaas2-tablet-img {
      display: block;
    }

  .collaboration-workflow-inner {
      aspect-ratio: auto;
      overflow: visible;
      background-image: none;
    }

  .collaboration-workflow-title,
    .collaboration-box,
    .collaboration-text {
      display: none;
    }

  .collaboration-tablet-img {
      display: block;
    }

}

.dsaas2-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.dsaas2-inner {
  width: min(1399px, 100%);
  aspect-ratio: 1399 / 833;
  position: relative;
  overflow: hidden;
  background-image: url("images/Section 3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dsaas2-mobile-img,
.dsaas2-tablet-img {
  display: none;
  width: 100%;
  height: auto;
}

.dsaas2-title {
  position: absolute;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
  width: min(1104px, 92%);
  margin: 0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 4;
}

.dsaas2-text {
  position: absolute;
  left: 196px;
  top: 227px;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 43px;
  z-index: 4;
}

.dsaas2-item {
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-align: left;
}

.dsaas2-label {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dsaas2-des.ds360-section {
  width: min(1399px, 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1399 / 833;
}

.ds360-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("images/DS BG 2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ds360-mobile-img,
.ds360-tablet-img {
  display: none;
  width: 100%;
  height: auto;
}

.ds360-content {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.ds360-title {
  width: min(980px, 92%);
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ds360-subtitle {
  width: min(980px, 92%);
  margin: 32px auto 0 auto;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.35;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ds360-box {
  position: absolute;
  z-index: 4;
  font-family: Inter, sans-serif;
}

.ds360-box h3 {
  margin: 0 0 11px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ds360-box p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.box-top-left {
  left: 179px;
  top: 337px;
  width: 320px;
  text-align: right;
}

.box-bottom-left {
  left: 167px;
  top: 498px;
  width: 320px;
  text-align: right;
}

.box-top-right {
  left: 905px;
  top: 337px;
  width: 420px;
  text-align: left;
}

.box-bottom-right {
  left: 905px;
  top: 498px;
  width: 360px;
  text-align: left;
}

@media (max-width: 1250px) {
  .ds360-section {
    aspect-ratio: auto;
    overflow: visible;
  }

  .ds360-bg,
  .ds360-content {
    display: none;
  }

  .ds360-tablet-img {
    display: block;
  }
}

@media (max-width: 520px) {
  .ds360-tablet-img {
    display: none;
  }

  .ds360-mobile-img {
    display: block;
  }
}

.dsaas2-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.dsaas2-inner {
  width: min(1399px, 100%);
  aspect-ratio: 1399 / 833;
  position: relative;
  overflow: hidden;
  background-image: url("images/Section 3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dsaas2-mobile-img,
.dsaas2-tablet-img {
  display: none;
  width: 100%;
  height: auto;
}

.dsaas2-title {
  position: absolute;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
  width: min(1104px, 92%);
  margin: 0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 4;
}

.dsaas2-text {
  position: absolute;
  left: 196px;
  top: 227px;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 43px;
  z-index: 4;
}

.dsaas2-item {
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-align: left;
}

.dsaas2-label {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dsaas2-desc {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 1250px) {
  .dsaas2-inner {
    aspect-ratio: auto;
    overflow: visible;
    background-image: none;
  }

  .dsaas2-title,
  .dsaas2-text {
    display: none;
  }

  .dsaas2-tablet-img {
    display: block;
  }
}

@media (max-width: 520px) {
  .dsaas2-tablet-img {
    display: none;
  }

  .dsaas2-mobile-img {
    display: block;
  }
}
.collaboration-workflow-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.collaboration-workflow-inner {
  width: min(1399px, 100%);
  aspect-ratio: 1399 / 833;
  position: relative;
  overflow: hidden;
  background-image: url("images/plainbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.collaboration-mobile-img,
.collaboration-tablet-img {
  display: none;
  width: 100%;
  height: auto;
}

.collaboration-workflow-title {
  position: absolute;
  left: 50%;
  top: 108px;
  transform: translateX(-50%);
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.collaboration-box {
  box-sizing: border-box;
  width: 112px;
  height: 105px;
  background: linear-gradient(154.47deg, #E3DDFF 0%, #EAEBFE 87.01%);
  border: 2px solid #E4E8FA;
  box-shadow: inset 0px 4px 12.6px rgba(0, 0, 0, 0.49);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaboration-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaboration-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.collaboration-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 320px;
}

.collaboration-sublabel {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.collaboration-small-text {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.collaboration-box,
.collaboration-text {
  position: absolute;
}

.box-1 {
  left: 190px;
  top: 261px;
}

.text-1 {
  left: 338px;
  top: 261px;
}

.box-2 {
  left: 760px;
  top: 261px;
}

.text-2 {
  left: 908px;
  top: 261px;
}

.box-3 {
  left: 190px;
  top: 458px;
}

.text-3 {
  left: 338px;
  top: 458px;
}

.box-4 {
  left: 760px;
  top: 458px;
}

.text-4 {
  left: 908px;
  top: 458px;
}

@media (max-width: 1200px) {
  .collaboration-workflow-inner {
    aspect-ratio: auto;
    overflow: visible;
    background-image: none;
  }

  .collaboration-workflow-title,
  .collaboration-box,
  .collaboration-text {
    display: none;
  }

  .collaboration-tablet-img {
    display: block;
  }
}

@media (max-width: 520px) {
  .collaboration-tablet-img {
    display: none;
  }

  .collaboration-mobile-img {
    display: block;
  }
}

/* GLOBAL LINK RESET (prevents default purple/underline look) */

/* GLOBAL LINK RESET (prevents default purple/underline look) */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


/* CASE STUDIES / PROJECTS SECTION */

.case-studies-section {
  width: 100%;
  padding-top: 160px;
  padding-right: 50px;
  padding-bottom: 180px;
  padding-left: 50px;
  
  position: relative;
  overflow: hidden;
}

.case-studies-title {
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 130px;
  margin-left: 0px;
  color: #483bb7;
}

.case-studies-grid {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-study-card {
  display: block;
  text-decoration: none;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: #FFFFFFB3;
  backdrop-filter: blur(20px);
  box-shadow: inset 0px 0px 0px 1px #FFFFFFCC;
  outline-style: solid;
  outline-width: 1px;
  outline-color: #FFFFFF99;
  outline-offset: -8px;
  filter: drop-shadow(0px 26px 70px #00000008) drop-shadow(0px 0px 60px #5ED4CC1A);
      background-color: #FFFFFF;

  transition-property: transform, box-shadow, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

.case-study-card:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
  transition-property: opacity, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  background-color: #FFFFFF;

}

.case-study-card:hover:before {
  opacity: 0.16;
  filter: blur(160px);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 0px 60px #5ED4CC33, 0px 30px 80px #0000000A, inset 0px 0px 0px 1px #FFFFFFE6;
}

.case-study-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.case-study-card-title {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #000000;
  margin-top: 18px;
  margin-right: 18px;
  margin-bottom: 22px;
  margin-left: 18px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .case-studies-section {
    padding-top: 110px;
    padding-right: 20px;
    padding-bottom: 120px;
    padding-left: 20px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case-studies-title {
    margin-bottom: 55px;
    font-size: 34px;
  }

  .case-study-image {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .case-studies-title {
    font-size: 32px;
  }
}


/* FOOTER */

.footer {
  width: 100%;
  padding: 80px 50px;
  background: #483bb7;
}

.footer-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: left;
}

.footer-title {
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 28px 0;
}

.footer-nav {dd
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link,
.footer-link:visited {
  color: rgba(255, 255, 255, 0.85);
}


.footer-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-button {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
}

.footer-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* =========================
   SERVICES PAGE (services.html)
   ========================= */

.services-page-section {
  width: 100%;
  padding: 140px 50px 120px 50px;
}

.services-page-title {
  margin: 0;
  text-align: center;
font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #483bb7;
}

.services-page-inner {
  width: min(1120px, 92%);
  margin: 70px auto 0 auto;
  display: flex;
  flex-direction: column;
}

.service-card-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 44px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.14);
}

.service-card-page:last-child {
  border-bottom: 1px solid rgba(15, 23, 42, 0.14);
}

.service-card-content {
  width: 100%;
  max-width: 430px;
}

.service-card-title {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #483bb7;
}

.service-card-description {
  margin: 14px 0 22px 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
}

.learn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 6px;
  background: #483bb7;
  color: #ffffff;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learn-btn:hover {
  opacity: 0.9;
}

.service-card-image {
  width: min(560px, 52%);
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Tablet / Mobile stacking */
@media (max-width: 900px) {
  .services-page-section {
    padding: 120px 24px 90px 24px;
  }

  .services-page-title {
    font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 800;
  }

  .services-page-inner {
    width: 100%;
    margin-top: 50px;
  }

  .service-card-page {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 34px 0;
  }

  .service-card-content {
    max-width: none;
  }

  .service-card-image {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 520px) {
  .services-page-section {
    padding: 110px 18px 80px 18px;
  }

  .services-page-title {
    font-size: 34px;
  }

  .service-card-image {
    height: 220px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.service-detail-hero {
  width: 100%;
  padding: 120px 50px 60px 50px;
}

.service-detail-hero-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-detail-hero-image {
  width: 520px;
  flex: 0 0 520px;
  border-radius: 18px;
  overflow: hidden;
}

.service-detail-hero-image img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
}

.service-detail-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-detail-hero-title {
  font-family: Inter, sans-serif;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.service-detail-hero-description {
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #000000;
  margin: 0;
  max-width: 680px;
}

.service-detail-cta-button {
  align-self: flex-start;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #0f172a;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
}

.service-detail-cta-button:hover {
  opacity: 0.92;
}

.service-detail-deliverables {
  width: 100%;
  padding: 60px 50px 90px 50px;
 
}

.service-detail-deliverables-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.service-detail-section-title {
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 28px 0;
}

.deliverable-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.deliverable-item:last-child {
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.deliverable-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  background: rgba(15, 23, 42, 0.06);
  flex: 0 0 34px;
  margin-top: 3px;
}

.deliverable-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deliverable-title {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #000000;
  margin: 0;
}

.deliverable-description {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.deliverable-subsection {
  margin-top: 10px;
}

.deliverable-subtitle {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 6px 0;
}

.deliverable-list {
  margin: 0;
  padding-left: 18px;
}

.deliverable-list li {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin: 6px 0;
}

.service-detail-cta-section {
  width: 100%;
  padding: 90px 50px;
  background: #0f172a;
}

.service-detail-cta-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
}

.service-detail-cta-title {
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 12px 0;
}

.service-detail-cta-text {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.6;
  margin: 0 0 22px 0;
}

@media (max-width: 900px) {
  .service-detail-hero {
    padding: 110px 20px 50px 20px;
  }

  .service-detail-hero-container {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }

  .service-detail-hero-image {
    width: 100%;
    flex: 0 0 auto;
  }

  .service-detail-hero-image img {
    height: 320px;
  }

  .service-detail-hero-title {
    font-size: 40px;
  }

  .service-detail-deliverables {
    padding: 50px 20px 80px 20px;
  }

  .service-detail-section-title {
    font-size: 30px;
  }

  .service-detail-cta-section {
    padding: 70px 20px;
  }

  .service-detail-cta-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .service-detail-hero-title {
    font-size: 34px;
  }

  .service-detail-hero-image img {
    height: 260px;
  }

  .deliverable-item {
    gap: 14px;
    padding: 18px 0;
  }

  .deliverable-title {
    font-size: 18px;
  }
}

/* CONTACT PAGE */
.contact-component {
  padding-top: 120px;
  padding-right: 50px;
  padding-bottom: 140px;
  padding-left: 50px;

}

.contact-component-inner {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding-top: 70px;
  padding-right: 60px;
  padding-bottom: 70px;
  padding-left: 60px;
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 0.05);
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0px 26px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.contact-left {
  width: 44%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0px 18px 36px rgba(0, 0, 0, 0.35));
}

.contact-right {
  width: 56%;
}

.contact-title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 14px;
  margin-left: 0px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000000;
}

.contact-description {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 28px;
  margin-left: 0px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(9, 9, 9, 0.86);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}

.form-field {
  width: 100%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
}

.form-label {
  display: block;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.92);
}

.required-star {
  color: #fb7185;
  margin-left: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding-top: 12px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(148, 163, 184, 0.32);
  background-color: rgba(48, 34, 134, 0.55);
  color: #f8fafc;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(148, 163, 184, 0.85);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(56, 189, 248, 0.85);
  box-shadow: 0px 0px 0px 4px rgba(56, 189, 248, 0.18);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-actions {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .contact-component-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 60px;
    padding-left: 30px;
  }

  .contact-left {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .contact-image {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
  }

  .contact-right {
    width: 100%;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 16px;
  }
}

/* POLICY PAGES (PRIVACY + TOS) */
.policy-hero {
  width: 100%;
  padding-top: 120px;
  padding-right: 50px;
  padding-bottom: 70px;
  padding-left: 50px;

  background-image: radial-gradient(circle at 20% 25%, rgba(56, 189, 248, 0.18), transparent 55%),
                    radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.14), transparent 60%),
                    radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.10), transparent 55%);
}

.policy-hero-content {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
  padding-right: 60px;
  padding-bottom: 70px;
  padding-left: 60px;
  border-radius: 22px;

  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0px 26px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.policy-hero-title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #483bb7;
}

.policy-content-section {
  width: 100%;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 140px;
  padding-left: 50px;
 
}

.policy-container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -35px;
  padding-top: 50px;
  padding-right: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 0.05);
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0px 26px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.policy-updated {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 26px;
  margin-left: 0px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.78);
}

.policy-heading {
  margin-top: 34px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #000000;
}

.policy-subheading {
  margin-top: 22px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.94);
}

.policy-paragraph {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 14px;
  margin-left: 0px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.86);
}

.policy-list {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 14px;
  margin-left: 0px;
  padding-left: 18px;
}

.policy-list li {
  margin-top: 8px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.86);
}

@media (max-width: 900px) {
  .policy-hero {
    padding-top: 110px;
    padding-right: 20px;
    padding-bottom: 55px;
    padding-left: 20px;
  }

  .policy-hero-content {
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 55px;
    padding-left: 30px;
  }

  .policy-hero-title {
    font-size: 38px;
  }

  .policy-content-section {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 110px;
  }

  .policy-container {
    margin-top: -28px;
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 45px;
    padding-left: 30px;
  }
}

@media (max-width: 600px) {
  .policy-hero-title {
    font-size: 34px;
  }

  .policy-heading {
    font-size: 20px;
  }

  .policy-paragraph {
    font-size: 15px;
  }

  .policy-list li {
    font-size: 15px;
  }
}

body.home .process-title {
  margin-bottom: 80px;
}

body.home .process-item {
  border-bottom-color: rgba(0, 0, 0, 0.28);
}

body.home .process-image:before {
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.06), transparent 65%),
              radial-gradient(circle at 70% 65%, rgba(120, 180, 255, 0.10), transparent 68%);
  opacity: 0.85;
}

body.home .case-study-card-title {
  color: #0f172a;
}

/* ROADMAP COMPARISON TABLE – CLEAN, CALM STYLE */

.service-detail-comparison {
  padding-top: 120px;
  padding-right: 50px;
  padding-bottom: 140px;
  padding-left: 50px;
}

.service-detail-comparison-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  max-width: 1000px;
  margin-bottom: 24px;
}

.table-wrapper {
  margin-top: 60px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #3c4054;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.06);
}

.comparison-table thead {
background-color: #52859f;
;
}

.comparison-table th {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  padding-top: 20px;
  padding-right: 18px;
  padding-bottom: 20px;
  padding-left: 18px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.comparison-table td {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  padding-top: 22px;
  padding-right: 18px;
  padding-bottom: 22px;
  padding-left: 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.feature-cell {
  font-weight: 600;
  color: #ffffff;
  background-color: #52859f;
}

.comparison-table tbody tr:hover td {
  background-color: #52859f;
}

/* MOBILE / TABLET */
@media (max-width: 900px) {
  .service-detail-comparison {
    padding-top: 90px;
    padding-right: 20px;
    padding-bottom: 110px;
    padding-left: 20px;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 14px;
    padding: 16px;
  }
}

.product-hero {
  width: 100%;
  padding-top: 140px;
  padding-right: 50px;
  padding-bottom: 120px;
  padding-left: 50px;
  
}

.product-hero-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.product-hero-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 24px 70px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(15, 23, 42, 0.08);

}

.product-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.product-hero-content {
  width: 100%;
}

.product-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #483bb7;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.product-hero-price {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.product-hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 26px;
  margin-left: 0px;
  max-width: 560px;
}

.gumroad-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-weight: 700;
  border-radius: 14px;
  padding-top: 14px;
  padding-right: 18px;
  padding-bottom: 14px;
  padding-left: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #ffffff;
  background-color: #0f172a;
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.12);
  transition-property: transform, box-shadow;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}

.gumroad-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 22px 55px rgba(0, 0, 0, 0.16);
}

.product-description-section,
.product-features-section,
.product-gallery-section,
.product-format-section {
  width: 100%;
  padding-right: 50px;
  padding-left: 50px;

}

.product-description-section {
  padding-top: 0px;
  padding-bottom: 70px;
}

.product-features-section {
  padding-top: 0px;
  padding-bottom: 90px;
}

.product-gallery-section {
  padding-top: 0px;
  padding-bottom: 90px;
}

.product-format-section {
  padding-top: 0px;
  padding-bottom: 140px;
}

.product-description-container,
.product-features-container,
.product-gallery-container,
.product-format-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.product-description-text {
  font-size: 18px;
  line-height: 1.65;
  color: #000000;
  margin: 0px;
  max-width: 900px;
}

.product-features-title,
.product-gallery-title,
.product-format-title {
  font-size: 34px;
  font-weight: 800;
  color: #000000;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 26px;
  margin-left: 0px;
}

.product-features-list,
.product-format-list {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 18px;
  padding: 0px;
}

.product-features-list li,
.product-format-list li {
  font-size: 18px;
  line-height: 1.65;
  color: #000000;
  margin-bottom: 12px;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);

  box-shadow: 0px 18px 50px rgba(0, 0, 0, 0.08);
}

.product-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 420px;
}

.product-buy-button-bottom {
  margin-top: 22px;
}

@media (max-width: 1000px) {
  .product-hero-container {
    grid-template-columns: 1fr;
  }

  .product-hero-image img {
    max-height: 440px;
  }

  .product-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .product-hero {
    padding-top: 110px;
    padding-right: 20px;
    padding-bottom: 90px;
    padding-left: 20px;
  }

  .product-description-section,
  .product-features-section,
  .product-gallery-section,
  .product-format-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-description-section {
    padding-bottom: 55px;
  }

  .product-features-section {
    padding-bottom: 70px;
  }

  .product-gallery-section {
    padding-bottom: 70px;
  }

  .product-format-section {
    padding-bottom: 110px;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-item img {
    max-height: 360px;
  }
}

@media (max-width: 600px) {
  .product-hero-title {
    font-size: 34px;
  }

  .product-hero-price {
    font-size: 20px;
  }

  .product-features-title,
  .product-gallery-title,
  .product-format-title {
    font-size: 28px;
  }
}

/* CASE STUDY PAGES – SERVICE-STYLE EDITORIAL LAYOUT */

.case-study-hero {
  width: 100%;
  padding-top: 160px;
  padding-right: 50px;
  padding-bottom: 80px;
  padding-left: 50px;
}

.case-study-hero-content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.case-study-hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #483bb7
  margin: 0px;
}

.case-study-content-section {
  width: 100%;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 140px;
  padding-left: 50px;
}

.case-study-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.case-study-image-large {
  width: 100%;
  margin-bottom: 60px;
}

.case-study-image-large img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.case-study-text {
  max-width: 820px;
}

.case-study-heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.case-study-paragraph {
  font-size: 18px;
  line-height: 1.65;
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 22px;
  margin-left: 0px;
}

.case-study-list {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 28px;
  margin-left: 20px;
  padding: 0px;
}

.case-study-list li {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 10px;
}

.case-study-sublist {
  margin-top: 10px;
  margin-bottom: 0px;
  margin-left: 20px;
}

.case-study-sublist li {
  font-size: 17px;
  line-height: 1.6;
}

.case-study-back-link {
  margin-top: 80px;
}

.button-back {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.3);
  padding-bottom: 4px;
}

.button-back:hover {
  border-bottom-color: rgba(15, 23, 42, 0.6);
}

/* MOBILE */
@media (max-width: 900px) {
  .case-study-hero {
    padding-top: 110px;
    padding-right: 20px;
    padding-bottom: 50px;
    padding-left: 20px;
  }

  .case-study-content-section {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 100px;
  }

  .case-study-hero-title {
    font-size: 34px;
  }

  .case-study-image-large img {
    max-height: 380px;
  }

  .case-study-heading {
    font-size: 24px;
  }

  .case-study-paragraph,
  .case-study-list li {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .ds360-scene {
    background-image: url("images/curvetablet.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    min-height: 0px;
  }

  .ds360-scene::before {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    padding-top: 64%;
  }

  .ds360-scene-inner {
    display: none;
  }
}

@media (max-width: 600px) {
  .ds360-scene {
    background-image: url("images/curvemobile.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    min-height: 0px;
  }

  .ds360-scene::before {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    padding-top: 140%;
  }
}

.footer {
  padding-top: 90px;
  padding-right: 50px;
  padding-bottom: 90px;
  padding-left: 50px;
}

.footer-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 34px;
  margin-left: 0px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-link {
  display: inline-block;
  text-decoration: none;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 8px;
  white-space: nowrap;
}

/* TABLET + MOBILE */
@media (max-width: 900px) {
  .footer {
    padding-top: 70px;
    padding-right: 20px;
    padding-bottom: 70px;
    padding-left: 20px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-button {
    margin-left: 0px;
    margin-top: 10px;
  }
}

/* ABOUT PAGE – CLEAN SERVICE/CASE-STUDY STYLE (NO SECTION BACKGROUNDS) */




.about-intro-section {
  width: 100%;
  padding-top: 100px;
  padding-right: 50px;
  padding-bottom: 120px;
  padding-left: 50px;
}

.about-intro-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
}

.about-intro-image {
  width: 100%;
  margin-bottom: 60px;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.about-intro-text {
  max-width: 820px;
}

.about-intro-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #483bb7;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.about-intro-paragraph {
  font-size: 18px;
  line-height: 1.65;
  color: #000000;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.about-work-section {
  width: 100%;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 120px;
  padding-left: 50px;
}

.about-work-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.about-work-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 34px;
  margin-left: 0px;
}

.about-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-work-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background-color: transparent;
  box-shadow: none;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
}

.about-work-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.about-work-card-text {
  font-size: 16px;
  line-height: 1.65;
  color: #ffffff;
  margin: 0px;
}

.about-placeholder-section {
  width: 100%;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 140px;
  padding-left: 50px;
}

.about-placeholder-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.about-placeholder-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.about-placeholder-text {
  font-size: 18px;
  line-height: 1.65;
  color: #ffffff;
  margin: 0px;
}

/* TABLET + MOBILE */
@media (max-width: 900px) {
  .about-hero {
    padding-top: 110px;
    padding-right: 20px;
    padding-bottom: 50px;
    padding-left: 20px;
  }

  .about-intro-section,
  .about-work-section,
  .about-placeholder-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-hero-title {
    font-size: 34px;
  }

  .about-intro-image img {
    max-height: 380px;
  }

  .about-work-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-paragraph {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .features-cards {
    flex-direction: column;
    gap: 28px;
    margin: 0px;
    width: 100%;
    padding-top: 0px;
    padding-left: 0px;

    align-items: stretch;
  }

  .feature-card {
    width: 100%;
    max-width: none;
  }

  .process-cards {
    flex-direction: column;
    margin: 0px;
    width: 100%;
    align-items: stretch;
    max-width: none;

  .process-card {
    width: 100%;
    max-width: none;
  }

  .different-cards {
    display: flex;
    flex-direction: column;
    margin: 0px;
    width: 100%;
    max-width: none;
    align-items: stretch;
  }

  }
}

@media (max-width: 900px) {
  .different-cards {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .different-card {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .process-inner {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .process-list {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .process-image {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-float-icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .process-row {
    padding-right: 32px;
  }

  .process-content {
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .process-content p {
    font-size: 16px;
    line-height: 1.45;
  }

  .process-label {
    font-size: 18px;
  }
}

.process-inner input[type="radio"],
.services-inner input[type="radio"] {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #ffffff;
}

.nav-logo-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.nav-logo-text {
  white-space: nowrap;
}

.usecases-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.usecases-list {
  flex: 1;
  min-width: 0;
}

.usecases-image-card {
  width: 420px;
  max-width: 420px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.usecases-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .usecases-layout {
    flex-direction: column;
    gap: 40px;
  }

  .usecases-image-card {
    width: 100%;
    max-width: 640px;
    height: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-section {
  width: min(1399px, 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1399 / 833;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("images/plainbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-mobile-img,
.pricing-tablet-img {
  display: none;
  width: 100%;
  height: auto;
}

.pricing-content {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-title {
  width: min(1104px, 92%);
  margin: 0;
  padding-top: 96px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.25;
  background: linear-gradient(90deg, #101A2D 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.pricing-columns {
  width: 904px;
  margin: 0 auto;
  margin-top: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 52px;
}




.pricing-left {
  font-family: Inter, sans-serif;
  color: #2B2456;
}

.pricing-model-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #2B2456;
}

.pricing-model-value {
  margin-top: 14px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  background: linear-gradient(90deg, #9779FF 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-model-note {
  margin-top: 6px;
  font-weight: 300;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(43, 36, 86, 0.75);
}

.pricing-rates-title {
  margin-top: 44px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  color: #2B2456;
}

.pricing-rates-table {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 160px;
  column-gap: 28px;
  row-gap: 14px;
  width: 360px;
}

.pricing-rates-head {
  font-weight: 600;
  font-size: 14px;
  color: #2B2456;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(43, 36, 86, 0.22);
}

.pricing-rates-cell {
  font-weight: 400;
  font-size: 14px;
  color: rgba(43, 36, 86, 0.9);
}

.pricing-rates-table > :nth-child(2n) {
  border-left: 1px solid rgba(43, 36, 86, 0.18);
  padding-left: 22px;
}

.pricing-rates-table > :nth-child(2n+1) {
  padding-right: 22px;
}

.pricing-rates-foot {
  margin-top: 26px;
  max-width: 360px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(43, 36, 86, 0.85);
}

.pricing-right {
  display: flex;
  justify-content: center;
}


.pricing-card {
  width: 384px;
  height: 434px;
  border-radius: 8px;
  background: linear-gradient(154.47deg, #E3DDFF 0%, #EAEBFE 87.01%);
  border: 2px solid #E4E8FA;
  box-shadow: inset 0px 4px 12.6px rgba(0, 0, 0, 0.49);
  font-family: Inter, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.pricing-card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 44px 0;
  background: linear-gradient(90deg, #9779FF 0%, #5A45A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card-block {
  margin: 0 0 34px 0;
  padding: 0 38px;
}

.pricing-card-label {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 8px 0;
  background: linear-gradient(90deg, #5A45A8 0%, #101A2D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
  background: linear-gradient(90deg, #5A45A8 0%, #101A2D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card-lines {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
  background: linear-gradient(90deg, #5A45A8 0%, #101A2D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card-price {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
  background: linear-gradient(90deg, #5A45A8 0%, #101A2D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


@media (max-width: 1250px) {
  .pricing-section {
    aspect-ratio: auto;
    overflow: visible;
  }

  .pricing-bg,
  .pricing-content {
    display: none;
  }

  .pricing-tablet-img {
    display: block;
  }
}

@media (max-width: 520px) {
  .pricing-tablet-img {
    display: none;
  }

  .pricing-mobile-img {
    display: block;
  }
}

.pricing-title {
  font-size: 36px;
  line-height: 1.25;
}

.pricing-model-label {
  font-size: 17px;
}

.pricing-model-value {
  font-size: 18px;
}

.pricing-rates-title {
  font-size: 17px;
}

.pricing-rates-head,
.pricing-rates-cell {
  font-size: 15px;
}

.pricing-rates-foot {
  font-size: 15px;
}

.pricing-card-title {
  font-size: 17px;
}

.pricing-card-label {
  font-size: 15px;
}

.pricing-card-value,
.pricing-card-lines,
.pricing-card-price {
  font-size: 15px;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}


.nav-translate {
  display: flex;
  align-items: center;
  margin-left: 14px;
}

.nav-translate select {

  color: inherit;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

/* Hide Google Translate attribution in nav (footer attribution exists) */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important;
}

.goog-te-gadget span,
.goog-te-gadget a {
  display: none !important;
}

.goog-te-gadget select {
  display: inline-block !important;
  font-size: 14px !important;
}

.translate-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: inherit;
  border-radius: 10px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-translate-wrap {
  display: none;
}

@media (max-width: 900px) {
  .translate-toggle {
    display: flex;
  }

  .mobile-translate-wrap.active {
    display: block;
    position: absolute;
    top: 72px;
    right: 20px;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 10px;
    backdrop-filter: blur(10px);
  }

  .mobile-translate-wrap select {
    width: 220px;
  }
}

/* Desktop: keep it inline next to Contact */
#google_translate_element {
  display: flex;
  align-items: center;
  margin-left: 14px;
}

/* Mobile: hide it until globe is clicked */
@media (max-width: 900px) {
  #google_translate_element {
    display: none;
    position: absolute;
    top: 72px;
    right: 20px;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 10px;
    backdrop-filter: blur(10px);
  }

  #google_translate_element.active {
    display: block;
  }

  #google_translate_element select {
    width: 220px;
  }
}
