.nexovate-logo {
  height: 42px !important;
  width: auto !important;
  object-fit: contain;
}

.nexovate-brand-word {
  margin-left: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
}

a,
button,
.group,
.transition,
.transition-all,
.transition-colors,
.transition-transform {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.group,
button,
img {
  backface-visibility: hidden;
}

.nexovate-page-enter {
  animation: nexovate-blur-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nexovate-route-card {
  animation: nexovate-card-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nexovate-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 32px auto 48px;
}

.nexovate-switch button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #374151;
  border-radius: 10px;
  color: #d1d5db;
  background: rgba(31, 41, 55, 0.7);
  font-weight: 700;
}

.nexovate-switch button.is-active,
.nexovate-switch button:hover {
  color: #fff;
  border-color: #3b82f6;
  background: #2563eb;
}

.nexovate-home-pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.nexovate-location-list {
  align-items: center;
  gap: 56px !important;
}

.nexovate-location-item {
  min-width: 220px;
}

.nexovate-flag {
  display: inline-block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(37, 99, 235, 0.24);
  overflow: hidden;
  position: relative;
}

.nexovate-flag-india {
  background: linear-gradient(#ff9933 0 33.333%, #fff 33.333% 66.666%, #138808 66.666%);
}

.nexovate-flag-india::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid #000080;
  border-radius: 999px;
  background: radial-gradient(circle, #000080 0 2px, transparent 3px);
}

.nexovate-flag-usa {
  background:
    linear-gradient(#3c3b6e 0 54%, transparent 54%),
    repeating-linear-gradient(#b22234 0 7.7%, #fff 7.7% 15.4%);
}

.nexovate-flag-singapore {
  background: linear-gradient(#ef3340 0 50%, #fff 50%);
}

.nexovate-flag-singapore::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  box-shadow: -4px 0 0 2px #fff;
}

.nexovate-map-wrap {
  position: relative;
}

.nexovate-map-pin {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.16), 0 0 28px rgba(96, 165, 250, 0.9);
  transform: translate(-50%, -50%);
  animation: nexovate-pin-pulse 1900ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.nexovate-map-pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: inherit;
}

.nexovate-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@keyframes nexovate-blur-in {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes nexovate-card-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes nexovate-pin-pulse {
  0%, 100% {
    filter: blur(0);
    opacity: 0.85;
  }
  50% {
    filter: blur(0.4px);
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .nexovate-home-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .nexovate-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nexovate-home-pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .nexovate-location-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px !important;
  }

  .nexovate-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nexovate-page-enter,
  .nexovate-route-card,
  .nexovate-map-pin {
    animation: none;
  }
}
