* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 85px;

  padding: 0 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 1000;

  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
  display: flex;
  align-items: center;

  text-decoration: none;
}

.logo img {
  width: 255px;
  height: auto;

  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  color: #b7b5c0;

  text-decoration: none;

  font-size: 16px;
  font-weight: 400;

  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.language-selector {
  appearance: none;
  -webkit-appearance: none;

  border: none;
  outline: none;

  background: transparent;

  color: #b7b5c0;

  font-family: inherit;
  font-size: 16px;
  font-weight: 400;

  cursor: pointer;

  padding-right: 18px;

  background-image:
    linear-gradient(45deg, transparent 50%, #b7b5c0 50%),
    linear-gradient(135deg, #b7b5c0 50%, transparent 50%);

  background-position:
    calc(100% - 8px) 50%,
    calc(100% - 3px) 50%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

.language-selector option {
  background: #111;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 5px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 60px 80px;
  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(76, 32, 130, 0.28),
      transparent 45%
    ),
    radial-gradient(
      circle at 20% 50%,
      rgba(32, 45, 120, 0.16),
      transparent 40%
    ),
    #000;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  font-size: 68px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 35px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 35px;
  color: #a5a3b0;
  font-size: 18px;
  line-height: 1.55;
}

.hero-button {
  display: inline-block;
  padding: 15px 24px;
  background: #7c3aed;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 17px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  background: #8b4cf0;
}

.about-section {
  position: relative;
  padding: 130px 60px 140px;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(54, 25, 100, 0.16),
      transparent 45%
    ),
    #000;
  overflow: hidden;
}

.about-intro {
  max-width: 1150px;
  margin: 0 auto 65px;
  text-align: center;
}

.about-intro h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-intro p {
  max-width: 1150px;
  margin: 0 auto;
  color: #d0ced7;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -1px;
}

.values {
  max-width: 1165px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.value-card {
  min-height: 220px;
  height: auto;
  padding: 30px 35px;

  border: 1px solid rgba(120, 125, 180, 0.25);
  border-radius: 16px;

  background:
    radial-gradient(circle at 50% 0%, rgba(58, 48, 110, 0.2), transparent 70%),
    rgba(10, 10, 20, 0.75);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 20px 60px rgba(20, 10, 50, 0.12);
}

.value-card h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 18px;
}

.value-card p {
  max-width: 520px;
  color: #aaa8b6;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}

.team {
  position: relative;
  width: 100%;

  min-height: 620px;
  padding: 100px 10.5% 70px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;

  background:
    radial-gradient(
      circle at 48% 42%,
      rgba(55, 25, 105, 0.22),
      transparent 45%
    ),
    #000;

  border-top: 1px solid rgba(90, 80, 150, 0.16);

  overflow: hidden;
}

.team-content {
  max-width: 700px;
}

.team-content h2 {
  color: #fff;

  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;

  margin-bottom: 25px;
}

.team-content p {
  max-width: 700px;

  color: #a5a3b0;

  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.team-image {
  width: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  transform: none;
}

.team-image img {
  width: 100%;
  max-width: 540px;

  height: auto;
  display: block;
}

.partners {
  width: 100%;
  padding: 110px 0 120px;
  background: #000;
  overflow: hidden;
}

.partners h2 {
  margin: 0 0 65px;
  text-align: center;
  color: #fff;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.partners-row {
  display: flex;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
}

.partner-card {
  height: 54px;
  padding: 0 22px;
  margin-right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(24, 25, 38, 0.95),
    rgba(10, 11, 18, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.035);
  color: #9999a8;
  white-space: nowrap;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 4px 18px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.partner-card:hover {
  transform: scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(29, 30, 45, 0.98),
    rgba(12, 13, 21, 0.98)
  );
}

.partner-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-card span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.row-right {
  animation: move-right 35s linear infinite;
}

.row-left {
  animation: move-left 35s linear infinite;
}

.cta {
  position: relative;
  width: 100%;
  padding: 120px 20px 100px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  overflow: hidden;

  background:
    radial-gradient(
      ellipse at 50% 35%,
      rgba(75, 38, 145, 0.3),
      transparent 55%
    ),
    #000;
}

.cta-label {
  padding: 7px 18px;

  border: 1px solid rgba(135, 103, 255, 0.8);
  border-radius: 999px;

  color: #b9a5ff;

  font-size: 14px;
  font-weight: 500;

  margin-bottom: 25px;
}

.cta-content {
  max-width: 850px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content h2 {
  color: #fff;

  font-size: 56px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.5px;

  margin-bottom: 25px;
}

.cta-content p {
  max-width: 650px;

  color: #a5a3b0;

  font-size: 17px;
  line-height: 1.6;

  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;

  padding: 14px 25px;

  background: #7c3aed;
  color: #fff;

  text-decoration: none;

  border-radius: 10px;

  font-size: 16px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #8b4cf0;
}

.dashboard-section {
  position: relative;
  width: 100%;
  height: 600px;

  background: #000;

  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  perspective: 1200px;
}

.dashboard-image {
  position: relative;

  width: 74%;
  max-width: 1200px;

  margin-top: 105px;

  transform: perspective(1200px) rotateX(4deg) rotateZ(-10deg);

  transform-origin: center top;

  border-radius: 30px;

  overflow: hidden;

  z-index: 1;
}

.dashboard-image img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 30px;
}

.dashboard-section::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  z-index: 2;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 18%,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 78%,
    #000 100%
  );
}

.dashboard-section::before {
  content: "";

  position: absolute;

  width: 900px;
  height: 500px;

  top: -100px;
  left: 50%;

  transform: translateX(-50%);

  background: radial-gradient(
    ellipse,
    rgba(68, 35, 140, 0.22),
    transparent 65%
  );

  pointer-events: none;

  z-index: 0;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 100px 60px 35px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 100px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  width: 220px;
  height: auto;
  display: block;
}

.footer-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column h3 {
  font-size: 15px;
  font-weight: 500;
  color: #888;
  margin-bottom: 10px;
}

.footer-column a,
.footer-column span {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
}

.footer-column a:hover {
  color: #9b87ff;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-legal {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-bottom p {
  color: #666;
  font-size: 13px;
}

.products-title {
  margin: 0 auto 1px;

  text-align: center;

  color: #fff;

  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;

  letter-spacing: -1.5px;
}

.products-section {
  position: relative;
  width: 100%;

  padding: 85px 0 1px;

  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(50, 45, 110, 0.16),
      transparent 55%
    ),
    #000;

  overflow: hidden;
}

.products-grid {
  width: calc(100% - 190px);
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 38px;
  row-gap: 30px;
}

.product-card {
  width: 100%;
  min-height: 308px;
  height: auto;
  padding: 35px 38px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  border: 1px solid rgba(120, 125, 180, 0.3);
  border-radius: 17px;

  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(48, 42, 100, 0.24),
      transparent 75%
    ),
    #080810;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.product-card h3 {
  max-width: 100%;

  margin: 0 0 20px;

  color: #fff;

  font-size: 28px;
  font-weight: 400;

  line-height: 1.2;
}

.product-card p {
  margin: 0 0 15px;

  max-width: 350px;

  color: #aaa8b6;

  font-size: 17px;
  font-weight: 300;

  line-height: 1.55;
}

.product-link {
  margin-top: auto;

  padding: 13px 20px;

  color: #fff;

  font-size: 17px;
  font-weight: 400;

  text-decoration: none;

  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 11px;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.telemedicine-section {
  position: relative;
  width: 100%;

  padding: 130px 0 60px;

  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(50, 35, 110, 0.14),
      transparent 55%
    ),
    #000;

  overflow: hidden;
}

.telemedicine-title {
  width: 100%;
  margin-bottom: 90px;

  text-align: center;
}

.telemedicine-title h2 {
  margin: 0;

  color: #fff;

  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;

  letter-spacing: -1.5px;
}

.telemedicine-content,
.telemedicine-monitoring {
  width: 100%;
  max-width: none;

  margin: 0;
}

.telemedicine-box:last-child {
  margin-bottom: 0;
}

.telemedicine-content {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  align-items: stretch;

  gap: 90px;

  margin-bottom: 0;
}

.telemedicine-text {
  max-width: 590px;
}

.telemedicine-text h3 {
  margin: 0 0 38px;

  color: #fff;

  font-size: 38px;
  font-weight: 400;

  line-height: 1.2;
}

.telemedicine-item {
  margin-bottom: 30px;
}

.telemedicine-item h4 {
  margin: 0 0 9px;

  color: #fff;

  font-size: 20px;
  font-weight: 400;

  line-height: 1.3;
}

.telemedicine-item p {
  margin: 0;

  color: #aaa8b6;

  font-size: 17px;
  font-weight: 300;

  line-height: 1.65;
}

.telemedicine-visual {
  align-self: stretch;

  display: flex;

  align-items: flex-end;

  justify-content: center;

  margin-bottom: 0;
}

.telemedicine-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;

  position: relative;
  top: 45px;
}

.telemedicine-monitoring {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 90px;
}

.telemedicine-box2 {
  width: calc(100% - 220px);

  max-width: 1280px;

  margin: 0 auto 70px;

  padding: 45px 55px 0;

  border: 1px solid rgba(120, 125, 180, 0.25);

  border-radius: 20px;

  background:
    radial-gradient(
      ellipse at 50% 0%,

      rgba(48, 42, 100, 0.2),
      transparent 70%
    ),
    rgba(8, 8, 16, 0.75);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);

  overflow: hidden;
}

.telemedicine-box1 {
  width: calc(100% - 220px);
  max-width: 1280px;

  margin: 0 auto 70px;

  padding: 45px 55px;

  border: 1px solid rgba(120, 125, 180, 0.25);
  border-radius: 20px;

  background:
    radial-gradient(ellipse at 50% 0%, rgba(48, 42, 100, 0.2), transparent 70%),
    rgba(8, 8, 16, 0.75);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.telemedicine-box:last-child {
  margin-bottom: 0;
}

.robotics-section {
  position: relative;
  width: 100%;

  padding: 0 0 50px;

  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(50, 35, 110, 0.14),
      transparent 55%
    ),
    #000;

  overflow: hidden;
}

.robotics-title {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}

.robotics-title h2 {
  margin: 0;

  color: #fff;

  font-size: 52px;
  font-weight: 400;

  line-height: 1.1;
  letter-spacing: -1.5px;
}

.robotics-box {
  width: calc(100% - 220px);
  max-width: 1280px;

  margin: 0 auto;

  padding: 55px 60px 0;

  border: 1px solid rgba(120, 125, 180, 0.25);
  border-radius: 20px;

  background:
    radial-gradient(ellipse at 50% 0%, rgba(48, 42, 100, 0.2), transparent 70%),
    rgba(8, 8, 16, 0.75);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);

  overflow: hidden;
}

.robotics-content {
  display: grid;

  grid-template-columns: 1fr 0.9fr;

  align-items: stretch;

  gap: 70px;
}

.robotics-text {
  max-width: 600px;
}

.robotics-text h3 {
  margin: 0 0 25px;

  color: #fff;

  font-size: 36px;
  font-weight: 400;

  line-height: 1.2;
}

.robotics-text > p {
  margin: 0 0 35px;

  color: #aaa8b6;

  font-size: 17px;
  font-weight: 300;

  line-height: 1.65;
}

.robotics-item {
  margin-bottom: 30px;
}

.robotics-item h4 {
  margin: 0 0 9px;

  color: #fff;

  font-size: 20px;
  font-weight: 400;

  line-height: 1.3;
}

.robotics-item p {
  margin: 0;

  color: #aaa8b6;

  font-size: 17px;
  font-weight: 300;

  line-height: 1.65;
}

.robotics-visual {
  display: flex;

  align-items: flex-end;
  justify-content: center;
}

.robotics-visual img {
  width: 100%;
  max-width: 520px;

  height: auto;

  display: block;

  margin-bottom: -1px;
}

.banking-section {
  width: 100%;
  padding: 55px 0 140px;
  background: #000;
  overflow: hidden;
}

.banking-title {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}

.banking-title h2 {
  margin: 0;
  color: #fff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.banking-grid {
  width: calc(100% - 220px);
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.banking-card:nth-child(1),
.banking-card:nth-child(2),
.banking-card:nth-child(3) {
  grid-column: span 2;
}

.banking-card:nth-child(4),
.banking-card:nth-child(5) {
  grid-column: span 3;
}

.banking-card {
  min-height: 285px;
  padding: 35px 38px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  border: 1px solid rgba(120, 125, 180, 0.25);
  border-radius: 20px;

  background:
    radial-gradient(ellipse at 50% 0%, rgba(48, 42, 100, 0.2), transparent 70%),
    rgba(8, 8, 16, 0.75);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.banking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 28px;
  padding: 12px 20px;

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;

  color: #fff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 400;

  transition: 0.2s ease;
}

.banking-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.banking-card h3 {
  margin: 0 0 18px;

  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.banking-card p {
  margin: 0;

  color: #aaa8b6;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.accessibility-section {
  width: 100%;
  padding: 110px 0 120px;
  background: #000;
  overflow: hidden;
}

.accessibility-title {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 65px;
  text-align: center;
}

.accessibility-title h2 {
  margin: 0;
  color: #fff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.accessibility-grid {
  width: calc(100% - 220px);
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.accessibility-card {
  min-height: 250px;
  padding: 40px 38px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;

  border: 1px solid rgba(120, 125, 180, 0.25);
  border-radius: 20px;

  background:
    radial-gradient(ellipse at 50% 0%, rgba(48, 42, 100, 0.2), transparent 70%),
    rgba(8, 8, 16, 0.75);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.accessibility-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.accessibility-card p {
  margin: 0;
  color: #aaa8b6;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.agid-section {
  position: relative;
  width: 100%;
  padding: 70px 0 120px;

  background:
    radial-gradient(
      ellipse at 50% 15%,
      rgba(48, 35, 100, 0.22),
      transparent 55%
    ),
    #000;

  overflow: hidden;
}

.agid-title {
  width: calc(100% - 220px);
  max-width: 1280px;
  margin: 0 auto 55px;
  text-align: center;
}

.agid-title h2 {
  margin: 0 0 48px;

  color: #fff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.agid-title p {
  max-width: 1250px;
  margin: 0 auto;

  color: #aaa8b6;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
}

.agid-content {
  width: calc(100% - 220px);
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.agid-text {
  max-width: 560px;
}

.agid-text p {
  margin: 0 0 18px;

  color: #aaa8b6;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}

.agid-text ul {
  margin: 0;
  padding-left: 20px;

  color: #aaa8b6;
}

.agid-text li {
  margin-bottom: 8px;

  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.agid-visual {
  position: relative;
  width: 100%;
  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.agid-image-main {
  position: relative;
  z-index: 2;

  width: 88%;
  max-width: 650px;

  display: flex;
  justify-content: center;
}

.agid-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.agid-image-small {
  position: absolute;
  z-index: 3;

  width: 27%;
  max-width: 190px;
}

.agid-image-small img {
  width: 100%;
  height: auto;
  display: block;
}

.agid-image-top {
  top: 7%;
  right: -2%;

  border-radius: 15px;

  border: 5px solid rgba(33, 30, 30, 0.855);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);

  overflow: hidden;
}

.agid-image-bottom {
  bottom: 0;
  left: 2%;
}

.software-section {
  position: relative;
  width: 100%;
  padding: 25px 0 150px;
  background: #000;
  overflow: hidden;
}

dotlottie-wc {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
}

.software-title {
  width: 100%;

  margin-bottom: 95px;

  text-align: center;
}

.software-title h2 {
  margin: 0 auto;

  color: #fff;

  font-size: 52px;
  font-weight: 400;

  line-height: 1.15;

  letter-spacing: -1.5px;
}

.software-grid {
  width: calc(100% - 90px);
  max-width: 1350px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  column-gap: 38px;
  row-gap: 28px;
}

.software-card {
  min-height: 285px;

  padding: 36px 38px;

  border: 1px solid rgba(110, 116, 170, 0.28);

  border-radius: 17px;

  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(38, 39, 82, 0.28),
    rgba(8, 8, 18, 0.92) 70%
  );

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);

  overflow: hidden;
}

.software-card h3 {
  margin: 0 0 35px;

  color: #fff;

  font-size: 29px;
  font-weight: 400;

  line-height: 1.2;
}

.software-logos {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  column-gap: 30px;
  row-gap: 25px;

  align-items: center;
}

.software-logo {
  width: 100%;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.software-logo img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 60px;

  display: block;

  object-fit: contain;
  object-position: center;
}

.ai-research-section {
  width: 100%;
  padding: 25px 0 150px;
  background: #000;
}

.ai-research-title {
  width: 100%;
  margin-bottom: 70px;
  text-align: center;
}

.ai-research-title dotlottie-wc {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
}

.ai-research-title h2 {
  max-width: 850px;
  margin: 0 auto;

  color: #fff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.ai-research-grid {
  width: calc(100% - 140px);
  max-width: 1420px;

  margin: 0 auto 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ai-research-card {
  min-height: 180px;
  padding: 28px;

  border: 1px solid rgba(120, 125, 180, 0.25);
  border-radius: 20px;

  background:
    radial-gradient(ellipse at 50% 0%, rgba(48, 42, 100, 0.2), transparent 70%),
    rgba(8, 8, 16, 0.75);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-research-card h3 {
  margin: 0 0 18px;

  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;

  white-space: normal;
}

.ai-research-card p {
  margin: 0;

  color: #aaa8b6;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.ai-feature-card {
  width: calc(100% - 250px);
  max-width: 1360px;

  min-height: 400px;
  height: auto;

  margin: 0 auto 50px;

  padding: 55px 70px;

  display: grid;

  grid-template-columns: 1fr 1.35fr;

  align-items: center;

  gap: 70px;

  border-radius: 20px;

  background:
    radial-gradient(ellipse at 50% 0%, rgba(48, 42, 100, 0.2), transparent 70%),
    rgba(8, 8, 25, 0.85);

  overflow: hidden;
}

.ai-business-card {
  grid-template-columns: 1fr 1.35fr;
}

.ai-chatbot-card {
  grid-template-columns: 1.35fr 1fr;
}

.ai-feature-image {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-feature-image dotlottie-wc {
  display: block;

  width: 100%;
  max-width: 500px;

  height: 350px;
}

.ai-feature-image img {
  width: 100%;
  max-width: 480px;

  height: auto;

  display: block;
}

.ai-feature-content {
  max-width: 800px;
}

.ai-feature-content h3 {
  margin: 0 0 18px;

  color: #fff;

  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
}

.ai-feature-content p {
  margin: 0;

  color: #aaa8b6;

  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
}

.contact-section {
  width: 100%;
  min-height: 100vh;

  /* spazio per la navbar */
  padding: 125px 5% 70px;

  background:
    radial-gradient(
      ellipse at 22% 35%,
      rgba(52, 30, 130, 0.2),
      transparent 38%
    ),
    #000;
}

.contact-container {
  width: 100%;
  max-width: 1380px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;

  align-items: center;
}

.contact-form {
  width: 100%;

  padding: 38px 38px 30px;

  border: 1px solid rgba(120, 125, 180, 0.2);
  border-radius: 18px;

  background:
    radial-gradient(
      ellipse at 20% 20%,
      rgba(55, 35, 145, 0.18),
      transparent 60%
    ),
    rgba(8, 8, 25, 0.58);

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-title {
  margin-bottom: 8px;
}

.contact-title h1 {
  margin: 0;

  color: #fff;

  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.contact-field {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  color: #9997a6;

  font-size: 15px;
  font-weight: 400;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;

  padding: 12px 14px;

  border: none;
  border-radius: 9px;

  outline: none;

  background: rgba(30, 29, 42, 0.72);

  color: #aaa8b6;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;

  transition: background 0.2s ease;
}

.contact-field input {
  height: 48px;
}

.contact-field select {
  height: 48px;

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
}

.contact-field textarea {
  min-height: 112px;

  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aaa8b6;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  background: rgba(35, 34, 48, 0.85);
}

.contact-form button {
  width: 100%;
  height: 46px;

  margin-top: 0;

  border: none;
  border-radius: 9px;

  background: #8038ed;

  color: #fff;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;

  cursor: pointer;

  transition: opacity 0.2s ease;
}

.contact-form button:hover {
  opacity: 0.88;
}

.contact-support {
  width: 100%;
  background: transparent;
}

.contact-support-container {
  width: 100%;

  display: flex;
  flex-direction: column;
}

.contact-support-title {
  margin-bottom: 35px;
}

.contact-support-title h2 {
  margin: 0 0 28px;

  color: #fff;

  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.contact-support-title p,
.contact-support-title a {
  position: relative;

  display: block;

  margin: 0 0 18px;
  padding-left: 0;

  color: #aaa8b6;

  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;

  text-decoration: none;
}

.contact-support-info {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-info-block {
  min-height: 280px;

  padding: 30px;

  border: 1px solid rgba(120, 125, 180, 0.2);
  border-radius: 18px;

  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(48, 42, 100, 0.16),
      transparent 70%
    ),
    rgba(8, 8, 16, 0.68);
}

.contact-info-block::before {
  display: none;
}

.contact-info-block h3 {
  margin: 0 0 20px;

  color: #fff;

  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}

.contact-info-block p {
  margin: 0 0 20px;

  color: #aaa8b6;

  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.contact-info-block a {
  color: #b278ff;

  font-size: 16px;
  font-weight: 300;

  text-decoration: none;
}

.captcha-image {
    width: 220px;
    height: 70px;
    display: block;
    border-radius: 9px;
    object-fit: cover;
}

@keyframes move-left {
  from {
    transform: translateX(0);
  }

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

@keyframes move-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .contact-section {
    padding: 110px 20px 70px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-form {
    padding: 32px 25px 28px;
  }

  .contact-title h1 {
    font-size: 42px;
  }

  .contact-support-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .contact-support-info {
    grid-template-columns: 1fr;
  }

  .contact-info-block {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
    padding: 0 20px;
  }

  @media (max-width: 1100px) {
    .navbar {
      padding-inline: 28px;
    }

    .nav-links {
      gap: 24px;
    }

    .logo img {
      width: 210px;
    }

    .hero h1 {
      font-size: clamp(48px, 7vw, 68px);
    }

    .team {
      padding-inline: 6%;
      gap: 42px;
    }

    .products-grid,
    .telemedicine-box1,
    .telemedicine-box2,
    .robotics-box,
    .banking-grid,
    .accessibility-grid,
    .agid-title,
    .agid-content,
    .software-grid,
    .ai-feature-card {
      width: calc(100% - 80px);
    }

    .products-grid,
    .software-grid {
      column-gap: 24px;
    }

    .telemedicine-content,
    .telemedicine-monitoring,
    .robotics-content,
    .agid-content,
    .contact-container {
      gap: 42px;
    }

    .ai-research-grid {
      width: calc(100% - 80px);
      grid-template-columns: repeat(2, 1fr);
    }

    .footer {
      padding-inline: 40px;
    }
  }

  @media (max-width: 900px) {
    .nav-links {
      gap: 18px;
    }

    .nav-links a,
    .language-selector {
      font-size: 14px;
    }

    .hero {
      padding-inline: 32px;
    }

    .about-intro p {
      font-size: clamp(24px, 4vw, 38px);
    }

    .products-grid,
    .software-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .telemedicine-content,
    .telemedicine-monitoring,
    .robotics-content,
    .agid-content {
      grid-template-columns: 1fr;
    }

    .telemedicine-visual,
    .robotics-visual {
      order: 2;
    }

    .telemedicine-text,
    .robotics-text,
    .agid-text {
      max-width: none;
    }

    .telemedicine-visual img {
      top: 0;
    }

    .banking-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .banking-card:nth-child(n) {
      grid-column: auto;
    }

    .accessibility-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .accessibility-card:last-child {
      grid-column: 1 / -1;
    }

    .agid-visual {
      min-height: 440px;
    }

    .contact-container {
      align-items: stretch;
    }

    .ai-feature-card,
    .ai-business-card,
    .ai-chatbot-card {
      grid-template-columns: 1fr;
    }

    .ai-feature-image {
      order: -1;
    }
  }

  @media (max-width: 768px) {
    .navbar {
      min-height: 70px;
      height: auto;
      padding: 14px 20px;
    }

    .logo img {
      width: min(180px, 58vw);
    }

    .menu-toggle {
      display: block;
    }

    .navbar.menu-open .nav-links {
      display: flex;
      position: absolute;
      top: calc(100% - 1px);
      right: 16px;
      left: 16px;
      padding: 18px;
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0 0 14px 14px;
      background: rgba(8, 8, 16, 0.98);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }

    .navbar.menu-open .nav-links a,
    .navbar.menu-open .language-selector {
      width: 100%;
      padding: 12px 8px;
      font-size: 16px;
    }

    .navbar.menu-open .language-selector {
      padding-right: 26px;
    }

    .navbar.menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .navbar.menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .navbar.menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
      min-height: 70svh;
      padding: 110px 20px 70px;
    }

    .hero h1,
    .about-intro h2,
    .team-content h2,
    .products-title,
    .telemedicine-title h2,
    .robotics-title h2,
    .banking-title h2,
    .accessibility-title h2,
    .agid-title h2,
    .software-title h2,
    .ai-research-title h2,
    .cta-content h2,
    .contact-title h1,
    .contact-support-title h2 {
      font-size: clamp(32px, 9vw, 42px);
      letter-spacing: -0.8px;
    }

    .hero h1 {
      line-height: 1.08;
      margin-bottom: 24px;
    }

    .hero p,
    .team-content p,
    .cta-content p {
      font-size: 16px;
    }

    .hero-button,
    .cta-button,
    .product-link,
    .banking-button {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .about-section,
    .team,
    .partners,
    .cta,
    .products-section,
    .telemedicine-section,
    .robotics-section,
    .banking-section,
    .accessibility-section,
    .agid-section,
    .software-section,
    .ai-research-section {
      padding-inline: 20px;
    }

    .about-intro p {
      font-size: clamp(22px, 6vw, 28px);
      letter-spacing: -0.3px;
    }

    .values,
    .products-grid,
    .software-grid,
    .banking-grid,
    .accessibility-grid,
    .ai-research-grid {
      width: 100%;
      grid-template-columns: 1fr;
    }

    .accessibility-card:last-child {
      grid-column: auto;
    }

    .value-card,
    .product-card,
    .software-card,
    .banking-card,
    .accessibility-card,
    .ai-research-card {
      min-height: 0;
      height: auto;
    }

    .product-card {
      min-height: 260px;
    }

    .telemedicine-box1,
    .telemedicine-box2,
    .robotics-box,
    .ai-feature-card {
      width: 100%;
      padding: 30px 22px;
    }

    .telemedicine-content,
    .telemedicine-monitoring,
    .robotics-content,
    .agid-content {
      gap: 35px;
    }

    .telemedicine-text h3,
    .robotics-text h3 {
      font-size: clamp(26px, 7vw, 32px);
    }

    .telemedicine-item p,
    .robotics-text > p,
    .robotics-item p,
    .agid-text p,
    .agid-text li,
    .ai-feature-content p {
      font-size: 16px;
    }

    .banking-grid,
    .accessibility-grid {
      gap: 18px;
    }

    .agid-title,
    .agid-content {
      width: 100%;
    }

    .agid-title h2 {
      margin-bottom: 28px;
    }

    .agid-title p {
      font-size: 17px;
    }

    .agid-visual {
      min-height: 320px;
    }

    .agid-image-main {
      width: 88%;
    }

    .agid-image-small {
      width: 28%;
    }

    .software-logo img {
      max-width: 130px;
    }

    .ai-research-card h3 {
      white-space: normal;
    }

    .ai-feature-image dotlottie-wc {
      height: 240px;
    }

    .dashboard-section {
      height: auto;
      min-height: 360px;
      padding: 0 20px 70px;
    }

    .dashboard-image {
      width: 115%;
      max-width: none;
      margin-top: 55px;
      border-radius: 16px;
      transform: perspective(900px) rotateX(4deg) rotateZ(-7deg);
    }

    .footer {
      padding-inline: 20px;
    }
  }

  @media (max-width: 480px) {
    .navbar {
      padding-inline: 16px;
    }

    .hero {
      padding-inline: 16px;
    }

    .about-section,
    .team,
    .cta,
    .products-section,
    .telemedicine-section,
    .robotics-section,
    .banking-section,
    .accessibility-section,
    .agid-section,
    .software-section,
    .ai-research-section {
      padding-inline: 16px;
    }

    .value-card,
    .product-card,
    .software-card,
    .banking-card,
    .accessibility-card,
    .ai-research-card {
      padding: 26px 22px;
    }

    .telemedicine-box1,
    .telemedicine-box2,
    .robotics-box,
    .ai-feature-card {
      padding-inline: 18px;
      border-radius: 16px;
    }

    .contact-section {
      padding-inline: 16px;
    }

    .contact-form {
      padding-inline: 20px;
    }

    .contact-info-block {
      padding: 24px;
    }

    .footer-navigation {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .footer-column:last-child {
      grid-column: auto;
    }

    .footer-bottom {
      gap: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  .logo img {
    width: 180px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .about-section {
    padding: 90px 20px 100px;
  }

  .about-intro {
    margin-bottom: 45px;
  }

  .about-intro h2 {
    font-size: 40px;
    margin-bottom: 22px;
  }

  .about-intro p {
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: -0.5px;
  }

  .values {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    min-height: auto;
    padding: 28px;
  }

  .value-card h3 {
    font-size: 27px;
  }

  .value-card p {
    font-size: 16px;
  }

  .team {
    min-height: auto;
    padding: 80px 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-content h2 {
    font-size: 40px;
  }

  .team-content p {
    font-size: 17px;
  }

  .team-image {
    transform: none;
  }

  .team-image img {
    max-width: 420px;
  }

  .partners {
    padding: 80px 0 90px;
  }

  .partners h2 {
    font-size: 40px;
    margin-bottom: 45px;
  }

  .partners-slider {
    gap: 25px;
  }

  .partner-card {
    height: 48px;
    padding: 0 18px;
    margin-right: 20px;
    gap: 10px;
  }

  .partner-card img {
    width: 26px;
    height: 26px;
  }

  .partner-card span {
    font-size: 14px;
  }

  .row-right,
  .row-left {
    animation-duration: 28s;
  }

  .cta {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 40px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .dashboard-section {
    padding: 0 20px 80px;
  }

  .dashboard-image {
    border-radius: 16px;
  }

  .footer {
    padding: 70px 20px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-bottom: 60px;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-navigation {
    grid-template-columns: 1fr 1fr;

    gap: 45px 25px;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-legal {
    gap: 15px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .products-section {
    padding: 95px 20px 70px;
  }

  .products-title {
    margin-bottom: 45px;
    font-size: 40px;
  }

  .products-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card {
    width: 100%;
    height: auto;
    min-height: 280px;

    padding: 30px 28px;

    align-items: center;
    text-align: center;
  }

  .product-card h2 {
    max-width: 100%;

    margin-bottom: 18px;

    font-size: 27px;
    line-height: 1.2;
  }

  .product-card p {
    max-width: 330px;

    font-size: 16px;
    line-height: 1.55;
  }

  .product-link {
    margin-top: 28px;

    padding: 11px 18px;

    font-size: 16px;
  }

  .telemedicine-section {
    padding: 90px 20px 100px;
  }

  .telemedicine-title {
    margin-bottom: 60px;
  }

  .telemedicine-title h2 {
    font-size: 40px;
  }

  .telemedicine-box {
    width: 100%;

    padding: 35px 25px;

    margin-bottom: 40px;
  }

  .telemedicine-content,
  .telemedicine-monitoring {
    width: 100%;
  }

  .telemedicine-content {
    margin-bottom: 90px;
  }

  .telemedicine-monitoring .telemedicine-visual {
    order: 2;
  }

  .telemedicine-monitoring .telemedicine-text {
    order: 1;
  }

  .telemedicine-text h3 {
    font-size: 31px;
    margin-bottom: 30px;
  }

  .telemedicine-item {
    margin-bottom: 25px;
  }

  .telemedicine-item h4 {
    font-size: 19px;
  }

  .telemedicine-item p {
    font-size: 16px;
  }

  .telemedicine-visual img {
    max-width: 480px;
  }

  .robotics-section {
    padding: 90px 20px 100px;
  }

  .robotics-title {
    margin-bottom: 50px;
  }

  .robotics-title h2 {
    font-size: 40px;
  }

  .robotics-box {
    width: 100%;
    padding: 35px 25px 0;
  }

  .robotics-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .robotics-text h3 {
    font-size: 30px;
  }

  .robotics-text > p,
  .robotics-item p {
    font-size: 16px;
  }

  .robotics-item h4 {
    font-size: 19px;
  }

  .robotics-visual img {
    max-width: 420px;
  }

  .banking-section {
    padding: 80px 20px 100px;
  }

  .banking-title {
    margin-bottom: 45px;
  }

  .banking-title h2 {
    font-size: 40px;
  }

  .banking-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .banking-card {
    min-height: 220px;
    padding: 35px 25px;
  }

  .banking-card h3 {
    font-size: 22px;
  }

  .banking-card p {
    font-size: 16px;
  }

  .accessibility-section {
    padding: 80px 20px 100px;
  }

  .accessibility-title {
    margin-bottom: 45px;
  }

  .accessibility-title h2 {
    font-size: 40px;
  }

  .accessibility-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .accessibility-card {
    min-height: 220px;
    padding: 35px 25px;
  }

  .accessibility-card h3 {
    font-size: 22px;
  }

  .accessibility-card p {
    font-size: 16px;
  }

  .agid-section {
    padding: 80px 20px 100px;
  }

  .agid-title {
    width: 100%;
    margin-bottom: 50px;
  }

  .agid-title h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .agid-title p {
    font-size: 17px;
  }

  .agid-content {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .agid-text {
    max-width: none;
  }

  .agid-text p,
  .agid-text li {
    font-size: 16px;
  }

  .agid-visual {
    min-height: 420px;
  }

  .agid-image-main {
    width: 88%;
  }

  .agid-image-small {
    width: 30%;
  }

  .software-section {
    padding: 70px 20px 100px;
  }

  .software-animation {
    width: 100px;
    height: 100px;

    margin-bottom: 25px;
  }

  .software-title {
    margin-bottom: 60px;
  }

  .software-title h2 {
    font-size: 38px;
    line-height: 1.15;
  }

  .software-grid {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 22px;
  }

  .software-card {
    min-height: 280px;

    padding: 32px 28px;
  }

  .software-card h3 {
    font-size: 27px;
    margin-bottom: 30px;
  }

  .software-logos {
    column-gap: 20px;
    row-gap: 22px;
  }

  .software-logo img {
    max-width: 200px;
    max-height: 60px;
  }

  .ai-research-section {
    padding: 90px 20px 100px;
  }

  .ai-research-title {
    margin-bottom: 50px;
  }

  .ai-research-title dotlottie-wc {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .ai-research-title h2 {
    font-size: 40px;
  }

  .ai-research-grid {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 22px;

    margin-bottom: 50px;
  }

  .ai-research-card {
    min-height: 250px;
    padding: 32px 28px;
  }

  .ai-feature-card,
  .ai-chatbot-card {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 35px;

    padding: 35px 25px;
  }

  .ai-feature-image {
    order: -1;
  }

  .ai-chatbot-card .ai-feature-image {
    order: -1;
  }

  .ai-feature-image dotlottie-wc {
    width: 100%;
    max-width: 400px;
    height: 300px;
  }

  .ai-feature-content h3 {
    font-size: 26px;
  }

  .ai-feature-content p {
    font-size: 16px;
  }
}

.value-card,
.product-card,
.software-card,
.banking-card,
.accessibility-card,
.ai-research-card,
.ai-feature-card {
  min-width: 0;
  overflow-wrap: anywhere;
}

.value-card p,
.product-card p,
.software-card p,
.banking-card p,
.accessibility-card p,
.ai-research-card p,
.ai-feature-content p {
  max-width: 100%;
}

.product-card,
.value-card {
  height: auto;
}

.product-link,
.banking-button {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

@media (max-width: 1100px) {
  .products-grid,
  .software-grid {
    width: min(100% - 48px, 1340px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-research-grid {
    width: min(100% - 48px, 1420px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .telemedicine-box1,
  .telemedicine-box2,
  .robotics-box,
  .banking-grid,
  .accessibility-grid,
  .agid-title,
  .agid-content,
  .ai-feature-card {
    width: min(100% - 48px, 1280px);
  }

  .telemedicine-content,
  .telemedicine-monitoring,
  .robotics-content,
  .agid-content,
  .ai-feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .products-grid,
  .software-grid,
  .ai-research-grid,
  .banking-grid,
  .accessibility-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .telemedicine-box1,
  .telemedicine-box2,
  .robotics-box,
  .agid-title,
  .agid-content,
  .ai-feature-card {
    width: 100%;
  }

  .telemedicine-content,
  .telemedicine-monitoring,
  .robotics-content,
  .agid-content,
  .ai-feature-card,
  .ai-business-card,
  .ai-chatbot-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card,
  .value-card,
  .software-card,
  .banking-card,
  .accessibility-card,
  .ai-research-card {
    min-height: 0;
  }

  .product-card {
    padding: 28px 22px;
  }

  .product-link,
  .banking-button {
    align-self: center;
    margin-top: 24px;
  }

  .ai-feature-image {
    order: -1;
  }

  .ai-research-card h3 {
    white-space: normal;
  }
}

/* Software logo alignment */
.software-card {
  display: flex;
  flex-direction: column;
}

.software-logos {
  flex: 1;
  align-content: center;
}

.software-logo {
  min-width: 0;
  height: 48px;
  padding: 4px 8px;
  justify-content: flex-start;
}

.software-logo img {
  width: auto;
  max-width: 100%;
  height: 46px;
  max-height: 46px;
  object-fit: contain;
  object-position: center;
}

.software-card:first-child .software-logo:nth-child(3) img {
  transform: translateX(10px);
}

.software-card:first-child .software-logo:nth-child(4) img {
  transform: translateX(-10px);
}


.software-logos > .software-logo:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 15px);
  justify-self: center;
}

@media (max-width: 768px) {
  .software-logo {
    height: 52px;
    padding-inline: 4px;
  }

  .software-logo img {
    height: 42px;
    max-height: 42px;
  }

  .software-card:first-child .software-logo:nth-child(3) img {
    transform: translateX(8px);
  }

  .software-card:first-child .software-logo:nth-child(4) img {
    transform: translateX(-8px);
  }

  .software-logos > .software-logo:last-child:nth-child(odd) {
    width: calc(50% - 10px);
  }
}

/* Responsive fallbacks kept outside the legacy nested media queries. */
@media (max-width: 900px) {
  .navbar {
    padding-inline: 28px;
  }

  .logo img {
    width: min(210px, 45vw);
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a,
  .language-selector {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .navbar {
    min-height: 70px;
    height: auto;
    padding: 14px 20px;
  }

  .logo img {
    width: min(180px, 58vw);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .navbar.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% - 1px);
    right: 16px;
    left: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 14px 14px;
    background: rgba(8, 8, 16, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .navbar.menu-open .nav-links a,
  .navbar.menu-open .language-selector {
    width: 100%;
    padding: 12px 8px;
    font-size: 16px;
  }

  .navbar.menu-open .language-selector {
    padding-right: 26px;
  }

  .navbar.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .software-logos {
    justify-items: center;
  }

  .software-logo {
    justify-content: center;
  }

  .software-logo img {
    width: auto;
    max-width: 100%;
    height: 42px;
    max-height: 42px;
  }

  .software-card:first-child .software-logo:nth-child(3) img,
  .software-card:first-child .software-logo:nth-child(4) img {
    transform: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .row-right,
  .row-left {
    animation-play-state: running;
  }
}

@media (max-width: 768px) {
  .hero {
    width: 100%;
    min-height: 70svh;
    padding: 110px 20px 70px;
  }

  .hero-content {
    width: min(100%, 900px);
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.8px;
    overflow-wrap: anywhere;
  }

  .hero p {
    width: 100%;
    max-width: 680px;
    font-size: clamp(16px, 4.2vw, 18px);
    overflow-wrap: anywhere;
  }

  .hero-button {
    max-width: 100%;
    padding-inline: clamp(16px, 5vw, 24px);
    font-size: clamp(15px, 4vw, 17px);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .partners h2 {
    max-width: 100%;
    padding-inline: 16px;
    font-size: clamp(32px, 9vw, 40px);
    overflow-wrap: anywhere;
  }

  .partners-slider {
    max-width: 100%;
    overflow: hidden;
    contain: paint;
  }

  .partners-row {
    will-change: transform;
  }

  .footer {
    width: 100%;
    padding: 70px 20px 25px;
    overflow: hidden;
  }

  .footer-main,
  .footer-navigation {
    width: 100%;
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 25px;
  }

  .footer-column,
  .footer-column a,
  .footer-column span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-legal {
    max-width: 100%;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero,
  .footer {
    padding-inline: 16px;
  }

  .footer-navigation {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .products-heading-section {
    padding-bottom: 20px;
  }

  .products-heading-section .products-title {
    margin-bottom: 20px;
  }

  .products-heading-section + .products-section {
    padding-top: 20px;
  }
}

@media (max-width: 900px) {
  .team-image {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .telemedicine-box1,
  .telemedicine-box2 {
    padding-bottom: 0;
  }

  .telemedicine-content {
    margin-bottom: 0;
  }

  .telemedicine-visual {
    align-self: stretch;
    align-items: flex-end;
    justify-content: center;
  }

  .telemedicine-visual img {
    top: 0;
    margin-bottom: -1px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    width: 36px;
    height: 36px;
    padding: 5px 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: translateY(1px);
  }

  .menu-toggle span {
    width: 30px;
    margin: 5px auto;
  }
}
