/* Product landing pages (IPortal, ITOS platform) */
.product-page .glass-effect {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-page .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a7c2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-page .animate-float {
  animation: product-float 6s ease-in-out infinite;
}

@keyframes product-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.product-page .glow-accent {
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.15);
}

.product-page .hero-gradient-light {
  background: radial-gradient(circle at 100% 0%, #d7e3ff 0%, #ffffff 50%);
}

.product-page .bento-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-page .bento-item:hover {
  transform: translateY(-4px);
  border-color: #06b6d4;
}

/* iPortal redesign */
.iportal-page .iportal-hero-visual {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.iportal-page .iportal-eco-hub {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1;
  margin-inline: auto;
}

.iportal-page .iportal-eco-hub__core {
  position: absolute;
  inset: 50%;
  z-index: 20;
  width: 10rem;
  height: 10rem;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #00377a;
  border: 4px solid #06b6d4;
  box-shadow: 0 25px 50px -12px rgba(0, 55, 122, 0.45);
  font-weight: 700;
  color: #06b6d4;
}

.iportal-page .iportal-eco-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.iportal-page .iportal-eco-node__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #c3c6d4;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.iportal-page .iportal-eco-node--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.iportal-page .iportal-eco-node--bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.iportal-page .iportal-eco-node--left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.iportal-page .iportal-eco-node--right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.iportal-page .iportal-eco-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

/* ITOS product page (stitch redesign) */
.itos-page .card-hover-cyan {
  transition: all 0.3s ease;
  border-left: 0 solid transparent;
}

.itos-page .card-hover-cyan:hover {
  border-left-width: 4px;
  border-left-color: #06b6d4;
  transform: translateX(4px);
}

.itos-page .bg-mesh {
  background-color: #f9f9ff;
  background-image:
    radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 55, 122, 0.05) 0px, transparent 50%);
}

/* iERP product page (stitch redesign) */
.ierp-page .ierp-hero-gradient {
  background: linear-gradient(135deg, rgba(0, 55, 122, 0.95) 0%, rgba(0, 86, 179, 0.8) 100%);
}

.ierp-page .bento-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ierp-page .bento-card:hover {
  transform: translateY(-4px);
  border-color: #06b6d4;
}

.ierp-page .smart-cyan-border {
  border-left: 4px solid #06b6d4;
}

/* SmartPort AI & IoT product page (stitch redesign) */
.aiiot-page .aiiot-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aiiot-page .aiiot-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.aiiot-page .aiiot-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: aiiot-marquee 45s linear infinite;
}

@keyframes aiiot-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiiot-page .aiiot-marquee-track {
    animation: none;
  }
}

.aiiot-page .aiiot-cta-pattern {
  background-image: linear-gradient(
    45deg,
    rgba(6, 182, 212, 0.12) 25%,
    transparent 25%,
    transparent 50%,
    rgba(6, 182, 212, 0.12) 50%,
    rgba(6, 182, 212, 0.12) 75%,
    transparent 75%,
    transparent
  );
  background-size: 64px 64px;
}
