/* ══════════════════════════════════════

           PAGE-HERO (Products page specific)

        ══════════════════════════════════════ */

#page-hero {

  min-height: 60vh;

  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: var(--white);

  padding: 9rem 5% 5rem;

}

.contact-left .section-label.light {
  color: var(--accent);
}

.page-hero-inner {

  position: relative;

  z-index: 2;

  max-width: 1280px;

  width: 100%;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: center;

}



.page-hero-text .hero-badge {

  margin-bottom: 1.4rem;

}



.page-hero-title {

  font-family: var(--font-display);

  font-size: clamp(2.4rem, 4.5vw, 4rem);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.03em;

  color: var(--dark);

}



.page-hero-title .grad-text {

  background: var(--grad);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.page-hero-sub {

  font-size: 1.05rem;

  color: #666;

  line-height: 1.75;

  margin: 1.2rem 0 2rem;

  max-width: 480px;

}



/* Right side — product icon cloud */

.page-hero-visual {

  position: relative;

  height: 380px;

}



.icon-cloud {

  position: absolute;

  inset: 0;

}



.ic-bubble {

  position: absolute;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 0.3rem;

  font-size: 0.68rem;

  font-family: var(--font-display);

  font-weight: 700;

  letter-spacing: 0.03em;

  text-align: center;

  animation: floatBubble 5s ease-in-out infinite;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);

  

  transition: transform 0.3s;

}



.ic-bubble:hover {

  transform: scale(1.1);

}



.ic-bubble .ic-emoji {

  font-size: 1.6rem;

  margin-bottom: 0.2rem;

}



.ic-b1 {

  width: 110px;

  height: 110px;

  background: var(--grad);

  color: #fff;

  top: 10px;

  left: 80px;

  animation-delay: 0s;

}



.ic-b2 {

  width: 95px;

  height: 95px;

  background: #fff;

  color: var(--dark);

  border: 2px solid rgba(30, 57, 143, 0.1);

  top: 0;

  right: 60px;

  animation-delay: -1.2s;

  animation-duration: 6s;

}



.ic-b3 {

  width: 105px;

  height: 105px;

  background: var(--dark);

  color: #fff;

  top: 130px;

  left: 10px;

  animation-delay: -2.4s;

  animation-duration: 5.5s;

}



.ic-b4 {

  width: 90px;

  height: 90px;

  background: rgba(30, 57, 143, 0.08);

  color: var(--blue);

  border: 1.5px solid rgba(30, 57, 143, 0.15);

  top: 120px;

  right: 20px;

  animation-delay: -3s;

  animation-duration: 7s;

}



.ic-b5 {

  width: 100px;

  height: 100px;

  background: linear-gradient(135deg, #c7007e22, #1e398f22);

  color: var(--dark);

  border: 1.5px solid rgba(199, 0, 126, 0.15);

  top: 260px;

  left: 120px;

  animation-delay: -1.8s;

  animation-duration: 4.8s;

}



.ic-b6 {

  width: 88px;

  height: 88px;

  background: var(--grad);

  color: #fff;

  top: 230px;

  right: 90px;

  animation-delay: -4s;

  animation-duration: 6.5s;

}



.ic-b7 {

  width: 80px;

  height: 80px;

  background: #fff;

  color: var(--dark);

  border: 1.5px solid rgba(30, 57, 143, 0.1);

  top: 150px;

  left: 160px;

  animation-delay: -2s;

  animation-duration: 5.2s;

}



@keyframes floatBubble {



  0%,

  100% {

    transform: translateY(0);

  }



  50% {

    transform: translateY(-14px);

  }

}



/* ══════════════════════════════════════

           PRODUCT NAV TABS

        ══════════════════════════════════════ */

.svc-nav-wrap {

  background: #fff;

  border-bottom: 1px solid rgba(30, 57, 143, 0.08);

  position: sticky;

  top: 72px;

  z-index: 800;

  padding: 0 5%;

}



.svc-nav {

  max-width: 1280px;

  margin: 0 auto;

  display: flex;

  gap: 0;

  overflow-x: auto;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;

}



.svc-nav::-webkit-scrollbar {

  display: none;

}



.svc-nav-item {

  padding: 1rem 1.4rem;

  font-family: var(--font-display);

  font-size: 0.82rem;

  font-weight: 700;

  color: #888;

  white-space: nowrap;

  border: none;

  background: none;

  

  border-bottom: 2.5px solid transparent;

  transition:

    color 0.25s,

    border-color 0.25s;

  letter-spacing: 0.03em;

  display: flex;

  align-items: center;

  gap: 0.45rem;

}



.svc-nav-item:hover {

  color: var(--blue);

}



.svc-nav-item.active {

  color: var(--pink);

  border-bottom-color: var(--pink);

}



/* ══════════════════════════════════════

           PRODUCT DETAIL BLOCKS

        ══════════════════════════════════════ */

.svc-block {

  padding: 6rem 5%;

  position: relative;

  overflow: hidden;

}



.svc-block:nth-child(odd) {

  background: var(--white);

}



.svc-block:nth-child(even) {

  background: var(--off-white);

}



.svc-block-inner {

  max-width: 1280px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 5rem;

  align-items: center;

}



.svc-block-inner.reverse {

  direction: rtl;

}



.svc-block-inner.reverse>* {

  direction: ltr;

}



/* Block left — text */

.svc-block-num {

  font-family: var(--font-mono);

  font-size: 0.72rem;

  color: rgba(30, 57, 143, 0.3);

  letter-spacing: 0.12em;

  margin-bottom: 1rem;

}



.svc-block-title {

  font-family: var(--font-display);

  font-size: clamp(1.8rem, 2.8vw, 2.5rem);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -0.025em;

  color: var(--dark);

  margin-bottom: 1rem;

}



.svc-block-title .hl {

  background: var(--grad);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.svc-block-desc {

  font-size: 0.98rem;

  color: #666;

  line-height: 1.75;

  margin-bottom: 1.8rem;

}



/* Feature list */

.svc-feature-list {

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 0.85rem;

  margin-bottom: 2rem;

}



.svc-feature-list li {

  display: flex;

  align-items: flex-start;

  gap: 0.8rem;

  font-size: 0.9rem;

  color: #555;

  line-height: 1.5;

}



.svc-feature-list li .fi {

  width: 22px;

  height: 22px;

  border-radius: 50%;

  background: var(--grad);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  font-size: 0.65rem;

  color: #fff;

  font-weight: 700;

  margin-top: 0.1rem;

}



.svc-tags-row {

  display: flex;

  flex-wrap: wrap;

  gap: 0.5rem;

  margin-bottom: 1.8rem;

}



/* sc-tag same as services page */

.sc-tag {

  font-family: var(--font-mono);

  font-size: 0.68rem;

  letter-spacing: 0.06em;

  padding: 0.28rem 0.85rem;

  border-radius: 50px;

  background: rgba(30, 57, 143, 0.07);

  color: var(--blue);

  border: 1px solid rgba(30, 57, 143, 0.14);

}



/* Block right — visual card */

.svc-visual-card {

  border-radius: 28px;

  padding: 2.5rem;

  position: relative;

  overflow: hidden;

  min-height: 380px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);

}



.svc-vc-dark {

  background: var(--dark);

}



.svc-vc-grad {

  background: var(--grad);

}



.svc-vc-light {

  background: #fff;

  border: 1.5px solid rgba(30, 57, 143, 0.1);

}



.svc-vc-glow {

  position: absolute;

  border-radius: 50%;

  filter: blur(60px);

  pointer-events: none;

}



.svc-vc-icon {

  font-size: 3.5rem;

  position: relative;

  z-index: 1;

}



.svc-vc-heading {

  font-family: var(--font-display);

  font-size: 1.4rem;

  font-weight: 800;

  color: #fff;

  position: relative;

  z-index: 1;

  line-height: 1.2;

  margin-top: 0.5rem;

}



.svc-vc-heading.dark-txt {

  color: var(--dark);

}



.svc-vc-sub {

  font-size: 0.82rem;

  color: rgba(255, 255, 255, 0.55);

  position: relative;

  z-index: 1;

  line-height: 1.55;

  margin-top: 0.4rem;

}



.svc-vc-sub.dark-txt {

  color: #888;

}



/* Mini stat pills */

.vc-pills {

  display: flex;

  flex-wrap: wrap;

  gap: 0.5rem;

  position: relative;

  z-index: 1;

  padding: 10px;

}



.vc-pill {

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 50px;

  padding: 0.4rem 1rem;

  font-family: var(--font-mono);

  font-size: 0.7rem;

  color: rgba(255, 255, 255, 0.85);

  letter-spacing: 0.05em;

}



.vc-pill.dark-pill {

  background: rgba(30, 57, 143, 0.07);

  border-color: rgba(30, 57, 143, 0.14);

  color: var(--blue);

}



/* Metric blocks */

.vc-metrics {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 0.8rem;

  position: relative;

  z-index: 1;

}



.vc-metric {

  background: rgba(255, 255, 255, 0.08);

  border-radius: 14px;

  padding: 1rem;

}



.vc-metric.light {

  background: rgba(30, 57, 143, 0.05);

}



.vcm-val {

  font-family: var(--font-display);

  font-size: 1.5rem;

  font-weight: 800;

  color: #fff;

}



.vcm-val.grad-text {

  background: var(--grad);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.vcm-label {

  font-family: var(--font-mono);

  font-size: 0.6rem;

  color: rgba(255, 255, 255, 0.4);

  letter-spacing: 0.08em;

  margin-top: 0.2rem;

}



.vcm-label.dark-lbl {

  color: #aaa;

}



/* Checklist */

.vc-checklist {

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 0.6rem;

  position: relative;

  z-index: 1;

}



.vc-checklist li {

  display: flex;

  align-items: center;

  gap: 0.6rem;

  font-size: 0.82rem;

  color: rgba(255, 255, 255, 0.8);

}



.vc-checklist li::before {

  content: "✓";

  width: 18px;

  height: 18px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 0.6rem;

  font-weight: 700;

  flex-shrink: 0;

}



/* ══════════════════════════════════════

           USE CASES GRID (Power Manager)

        ══════════════════════════════════════ */

.usecase-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 1.5rem;

  margin-top: 2rem;

}



.usecase-card {

  background: #fff;

  border: 1.5px solid rgba(30, 57, 143, 0.1);

  border-radius: 20px;

  padding: 1.6rem 1.25rem;

  text-align: center;

  transition:

    transform 0.3s,

    box-shadow 0.3s,

    border-color 0.3s;

  

  position: relative;

  overflow: hidden;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

}



.usecase-card::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: var(--grad);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s;

}



.usecase-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 16px 40px rgba(30, 57, 143, 0.12);

  border-color: rgba(199, 0, 126, 0.2);

}



.usecase-card:hover::after {

  transform: scaleX(1);

}



.uc-icon {

  width: 64px;

  height: 64px;

  margin: 0 auto 1rem;

  border-radius: 16px;

  background: rgba(30, 57, 143, 0.05);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.9rem;

  flex-shrink: 0;

}



.uc-icon i {

  background: var(--grad);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.uc-title {

  font-family: var(--font-display);

  font-size: 1rem;

  font-weight: 700;

  color: var(--dark);

  margin-bottom: 0.55rem;

  line-height: 1.25;

}



.uc-desc {

  font-size: 0.84rem;

  color: #777;

  line-height: 1.65;

  margin: 0;

}





/* ══════════════════════════════════════

           PRODUCTS MINI-GRID (3-col)

        ══════════════════════════════════════ */

.prod-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.4rem;

  margin-top: 3rem;

}



.prod-card {

  background: #fff;

  border-radius: 22px;

  padding: 2rem;

  border: 1.5px solid rgba(30, 57, 143, 0.09);

  position: relative;

  overflow: hidden;

  transition:

    transform 0.3s,

    box-shadow 0.3s,

    border-color 0.3s;

  

}



.prod-card::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: var(--grad);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s;

}



.prod-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 20px 50px rgba(30, 57, 143, 0.12);

  border-color: rgba(199, 0, 126, 0.2);

}



.prod-card:hover::after {

  transform: scaleX(1);

}



.pc-icon {

  width: 52px;

  height: 52px;

  border-radius: 14px;

  background: var(--grad);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.4rem;

  color: #fff;

  margin-bottom: 1.2rem;

  box-shadow: 0 6px 20px rgba(199, 0, 126, 0.28);

}



.pc-status {

  position: absolute;

  top: 1.2rem;

  right: 1.2rem;

  font-family: var(--font-mono);

  font-size: 0.58rem;

  letter-spacing: 0.08em;

  padding: 0.22rem 0.7rem;

  border-radius: 50px;

  font-weight: 700;

}



.pc-status.live {

  background: rgba(34, 197, 94, 0.12);

  color: #22c55e;

  border: 1px solid rgba(34, 197, 94, 0.25);

}



.pc-status.soon {

  background: rgba(199, 0, 126, 0.1);

  color: var(--pink);

  border: 1px solid rgba(199, 0, 126, 0.2);

}



.pc-title {

  font-family: var(--font-display);

  font-size: 1rem;

  font-weight: 700;

  color: var(--dark);

  margin-bottom: 0.5rem;

}



.pc-desc {

  font-size: 0.82rem;

  color: #777;

  line-height: 1.6;

}



.pc-tags {

  display: flex;

  flex-wrap: wrap;

  gap: 0.3rem;

  margin-top: 1rem;

}



.pc-tag {

  font-size: 0.6rem;

  padding: 0.2rem 0.6rem;

  border-radius: 50px;

  background: rgba(30, 57, 143, 0.06);

  color: var(--blue);

  border: 1px solid rgba(30, 57, 143, 0.12);

  font-family: var(--font-mono);

}



/* ══════════════════════════════════════

           COMMON FEATURES BAND

        ══════════════════════════════════════ */

#common-features {

  background: var(--dark) !important;

}



#common-features .svc-block-num {

  color: rgba(255, 255, 255, 0.2);

}



#common-features .svc-block-title {

  color: #fff;

}



#common-features .svc-block-desc {

  color: rgba(255, 255, 255, 0.55);

}



.features-4-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.4rem;

  margin-top: 3rem;

}



.feat4-card {

  background: rgba(255, 255, 255, 0.05);

  border: 1.5px solid rgba(255, 255, 255, 0.1);

  border-radius: 22px;

  padding: 2rem 1.5rem;

  text-align: center;

  transition:

    transform 0.3s,

    background 0.3s;

  

}



.feat4-card:hover {

  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.08);

}



.feat4-icon {

  font-size: 2.4rem;

  margin-bottom: 1rem;

  background: var(--grad);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.feat4-title {

  font-family: var(--font-display);

  font-size: 1rem;

  font-weight: 700;

  color: #fff;

  margin-bottom: 0.5rem;

}



.feat4-desc {

  font-size: 0.8rem;

  color: rgba(255, 255, 255, 0.5);

  line-height: 1.6;

}



/* ══════════════════════════════════════

           DEMO CTA BAND

        ══════════════════════════════════════ */

.pricing-band {

  background: var(--grad);

  padding: 4.5rem 5%;

  text-align: center;

}



.pricing-band h2 {

  font-family: var(--font-display);

  font-size: clamp(1.7rem, 3vw, 2.6rem);

  font-weight: 800;

  color: #fff;

  letter-spacing: -0.025em;

  line-height: 1.15;

  margin-bottom: 0.8rem;

}



.pricing-band p {

  color: rgba(255, 255, 255, 0.75);

  font-size: 1rem;

  margin-bottom: 2rem;

  line-height: 1.6;

}



.pricing-band-btns {

  display: flex;

  gap: 1rem;

  justify-content: center;

  flex-wrap: wrap;

}



.pb-btn-white {

  background: #fff;

  color: var(--pink);

  border: none;

  padding: 0.9rem 2.2rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-weight: 700;

  font-size: 0.95rem;

  

  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);

  transition:

    transform 0.2s,

    box-shadow 0.2s;

}



.pb-btn-white:hover {

  transform: translateY(-3px);

  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);

}



.pb-btn-outline {

  background: transparent;

  color: #fff;

  border: 2px solid rgba(255, 255, 255, 0.55);

  padding: 0.9rem 2.2rem;

  border-radius: 50px;

  font-family: var(--font-display);

  font-weight: 700;

  font-size: 0.95rem;

  

  transition: all 0.2s;

}



.pb-btn-outline:hover {

  background: rgba(255, 255, 255, 0.12);

  border-color: #fff;

}



/* ══════════════════════════════════════

           FUTURE PRODUCTS

        ══════════════════════════════════════ */

.future-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1.4rem;

  margin-top: 3rem;

}



.future-card {

  border-radius: 22px;

  padding: 2rem;

  border: 1.5px dashed rgba(30, 57, 143, 0.2);

  background: rgba(30, 57, 143, 0.03);

  position: relative;

  overflow: hidden;

  transition:

    transform 0.3s,

    border-color 0.3s;

  

}



.future-card:hover {

  transform: translateY(-5px);

  border-color: rgba(199, 0, 126, 0.3);

}



.future-badge {

  display: inline-flex;

  align-items: center;

  gap: 0.4rem;

  font-family: var(--font-mono);

  font-size: 0.62rem;

  letter-spacing: 0.1em;

  padding: 0.25rem 0.8rem;

  border-radius: 50px;

  background: rgba(199, 0, 126, 0.1);

  color: var(--pink);

  border: 1px solid rgba(199, 0, 126, 0.2);

  margin-bottom: 1rem;

}



.future-badge::before {

  content: "◉";

  font-size: 0.55rem;

  animation: blink 1.5s infinite;

}



@keyframes blink {



  0%,

  100% {

    opacity: 1;

  }



  50% {

    opacity: 0.3;

  }

}



.future-title {

  font-family: var(--font-display);

  font-size: 1.1rem;

  font-weight: 700;

  color: var(--dark);

  margin-bottom: 0.5rem;





}



.future-title i {

  background: var(--grad);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.future-desc {

  font-size: 0.84rem;

  color: #777;

  line-height: 1.6;

}



/* ══════════════════════════════════════

           RESPONSIVE

        ══════════════════════════════════════ */

@media (min-width: 1281px) {

  .usecase-grid {

    gap: 1.6rem;

  }



  .usecase-card {

    padding: 1.8rem 1.4rem;

  }

}



@media (max-width: 1024px) {

  .page-hero-inner {

    grid-template-columns: 1fr;

  }



  .page-hero-visual {

    display: none;

  }



  .svc-block-inner {

    grid-template-columns: 1fr;

    gap: 3rem;

  }



  .svc-block-inner.reverse {

    direction: ltr;

  }



  .svc-visual-card {

    min-height: 300px;

  }



  .usecase-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1.2rem;

  }



  .usecase-card {

    padding: 1.4rem 1.1rem;

  }



  .uc-icon {

    width: 58px;

    height: 58px;

    font-size: 1.7rem;

  }



  .uc-title {

    font-size: 0.95rem;

  }



  .uc-desc {

    font-size: 0.8rem;

  }



  .prod-grid {

    grid-template-columns: 1fr 1fr;

  }



  .features-4-grid {

    grid-template-columns: 1fr 1fr;

  }



  .future-grid {

    grid-template-columns: 1fr;

  }

}



@media (max-width: 640px) {

  .svc-nav-item {

    padding: 0.8rem 1rem;

    font-size: 0.75rem;

  }



  .svc-block {

    padding: 4rem 5%;

  }



  .page-hero-title {

    font-size: clamp(2rem, 6vw, 2.6rem);

  }



  .usecase-grid {

    grid-template-columns: 1fr;

    gap: 1rem;

  }



  .usecase-card {

    padding: 1.25rem 1rem;

    border-radius: 18px;

  }



  .uc-icon {

    width: 52px;

    height: 52px;

    font-size: 1.5rem;

    border-radius: 14px;

    margin-bottom: 0.85rem;

  }



  .uc-title {

    font-size: 0.92rem;

  }



  .uc-desc {

    font-size: 0.78rem;

    line-height: 1.55;

  }



  .prod-grid {

    grid-template-columns: 1fr;

  }



  .features-4-grid {

    grid-template-columns: 1fr 1fr;

  }



  .vc-metrics {

    grid-template-columns: 1fr 1fr;

  }

}