@import "../new-global.css";

:root {
  --bg: #ffffff;
  --bg2: #f7f8fc;
  --white: #ffffff;
  --blue: #074fae;
  --blue2: #1a3ec4;
  --sky: #0ea5e9;
  --cyan: #06b6d4;
  --violet: #7c3aed;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --green: #059669;
  --orange: #ea580c;
  --pink: #ec4899;
  --ink: #0f172a;
  --ink2: #1e293b;
  --sub: #475569;
  --muted: #94a3b8;
  --line: #e2e8f0;
  --line2: #cbd5e1;
  --rxx: 28px;
  --rxl: 20px;
  --rxm: 14px;
  --sh: 0 2px 8px rgba(15, 23, 42, 0.06), 0 8px 12px rgba(15, 23, 42, 0.08);

  --primary: hsl(214, 92%, 35%);
  --border: #e5e8ef;
  --tr: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-s: 0 2px 12px rgba(13, 17, 23, 0.07);
  --shadow-m: 0 8px 32px rgba(13, 17, 23, 0.1);
  --text-muted: #6b7280;
}



/* eyebrow pills */
.eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(36, 85, 232, 0.08);
  border: 1.5px solid rgba(36, 85, 232, 0.18);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eye::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
.eye-violet {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.25);
  color: var(--violet);
}
.eye-violet::before {
  background: var(--violet);
}
.eye-green {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.25);
  color: var(--green);
}
.eye-green::before {
  background: var(--green);
}
.eye-amber {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--amber);
}
.eye-amber::before {
  background: var(--amber);
}
.eye-pink {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.25);
  color: var(--pink);
}
.eye-pink::before {
  background: var(--pink);
}
/* -------- */

.snav{
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
/* -------- */

/* titles */
.stitle {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}
.stitle em,
.heading-1 em {
  font-style: normal;
  /* background: linear-gradient(120deg, var(--blue), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}
.stitle em.ev,
.heading-1 em.ev {
  color: var(--blue);
}
.stitle em.eg {
  background: linear-gradient(120deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stitle em.ea {
  background: linear-gradient(120deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ssub {
  color: var(--sub);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 580px;
}
.tbar {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  margin: 22px 0 0;
}

/* scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.rv.rl {
  transform: translateX(-54px);
}
.rv.rr {
  transform: translateX(54px);
}
.rv.in {
  opacity: 1;
  transform: translate(0);
}

/* swiper bullets */
.swiper-pagination-bullet {
  background: var(--line2);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  background: var(--blue);
  width: 28px;
  border-radius: 4px;
}

/* shared nav btn */
.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line2);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: var(--sh);
}
.nav-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.1);
}

/* shared buttons */
.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a3ec4, #2455e8, #0ea5e9);
  background-size: 200%;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(36, 85, 232, 0.3);
  transition: all 0.35s;
  animation: gradAni 4s ease infinite;
  border: none;
  cursor: pointer;
}
.btn-pri:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(36, 85, 232, 0.4);
}
.btn-pri i {
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.btn-pri:hover i {
  transform: translateX(4px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--line2);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--white);
  transition: all 0.35s;
  box-shadow: var(--sh);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
}

/* KEYFRAMES */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.7);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-9px) rotate(4deg);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(-3deg);
  }
}
@keyframes scw {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sccw {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes bounce {
  0% {
    transform: scale(0.35) translateY(18px);
    opacity: 0;
  }
  60% {
    transform: scale(1.12) translateY(-5px);
    opacity: 1;
  }
  80% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
@keyframes ripout {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes orbit {
  from {
    transform: rotate(var(--oa)) translateX(var(--or))
      rotate(calc(-1 * var(--oa)));
  }
  to {
    transform: rotate(calc(var(--oa)+360deg)) translateX(var(--or))
      rotate(calc(-1 * (var(--oa)+360deg)));
  }
}
@keyframes mblob {
  0%,
  100% {
    border-radius: 60% 40% 55% 45%/45% 60% 40% 55%;
  }
  33% {
    border-radius: 35% 65% 40% 60%/60% 30% 70% 40%;
  }
  66% {
    border-radius: 65% 35% 60% 40%/30% 65% 35% 70%;
  }
}
@keyframes gradAni {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}
@keyframes screenGlow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(36, 85, 232, 0.2);
  }
  50% {
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.35);
  }
}
@keyframes barFill {
  from {
    width: 0;
  }
  to {
    width: var(--w);
  }
}
@keyframes tabSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}
@keyframes notifIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* section: hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}


/* cta row */
.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* phone stack */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 60% 40% 55% 45%/45% 60% 40% 55%;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.09),
    rgba(36, 85, 232, 0.06)
  );
  animation: mblob 10s ease-in-out infinite;
}
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed;
}
.hv-r1 {
  width: 520px;
  height: 520px;
  border-color: rgba(124, 58, 237, 0.12);
  animation: scw 32s linear infinite;
}
.hv-r2 {
  width: 370px;
  height: 370px;
  border-color: rgba(36, 85, 232, 0.1);
  animation: sccw 22s linear infinite;
}
.hv-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  color: #fff;
  font-family: var(--fh);
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
.hv-chip i {
  font-size: 0.95rem;
}
.hv-chip-sm {
  padding: 6px 12px;
  font-size: 0.7rem;
}

/* phone stack */
.phone-stack {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.phone {
  position: relative;
  flex-shrink: 0;
}
.phone-shell {
  border-radius: 36px;
  border: 3px solid rgba(15, 23, 42, 0.12);
  background: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.16),
    0 4px 16px rgba(15, 23, 42, 0.1);
}
.phone-notch {
  width: 60px;
  height: 10px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 0px;
  opacity: 0.7;
}
.phone-screen {
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  position: relative;
}
.phone-home-bar {
  width: 50%;
  height: 4px;
  background: var(--ink);
  border-radius: 4px;
  opacity: 0.2;
  margin: 6px auto;
}

/* main phone */
.phone-main {
  z-index: 3;
  animation: phoneFloat 6s ease-in-out infinite;
}
.phone-shell-main {
  width: 220px;
  border-radius: 24px;
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow:
    0 32px 80px rgba(124, 58, 237, 0.22),
    0 8px 24px rgba(15, 23, 42, 0.12);
}
.pn-main {
  width: 70px;
  height: 12px;
  background: #0f172a;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 0px;
}
.ps-main {
  height: 380px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
/* screen overlay UI */
.ps-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
}
.pso-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 5px 10px;
}
.psob-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.pso-bar span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ink);
  margin-left: 4px;
  font-family: var(--fh);
}
.pso-nav {
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 8px;
}
.pson-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pson-item i {
  font-size: 1.1rem;
  color: var(--sub);
}
.pson-active {
  background: var(--violet);
}
.pson-active i {
  color: #fff;
}

/* back phones */
.phone-back {
  z-index: 1;
  transform: translateX(70px) translateY(16px) rotate(6deg);
  opacity: 0.75;
  animation: float3 7s ease-in-out infinite 1s;
}
.phone-right {
  z-index: 1;
  transform: translateX(-70px) translateY(16px) rotate(-6deg);
  opacity: 0.75;
  animation: float2 8s ease-in-out infinite 2s;
}
.phone-back .phone-shell,
.phone-right .phone-shell {
  width: 170px;
}
.phone-back .phone-screen,
.phone-right .phone-screen {
  height: 320px;
  border-radius: 0 0 22px 22px;
}

/* floating notif cards */
.hv-notif {
  position: absolute;
  z-index: 12;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rxl);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
}
.hv-n1 {
  top: 30px;
  right: -20px;
  animation: float 5s ease-in-out infinite 0.6s;
}
.hv-n2 {
  bottom: 100px;
  left: -30px;
  animation: float 6.5s ease-in-out infinite 1.2s;
}
.hv-n3 {
  top: 50%;
  right: -30px;
  animation: float 7s ease-in-out infinite 1.8s;
}
.hvn-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.hvn-ico i {
  font-size: 1.2rem;
  color: #fff;
}
.hvn-ping {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgb(7, 79, 174, 0.25);
  animation: ping 2s ease-out infinite;
}
.hv-notif strong {
  display: block;
  font-family: var(--fh);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
}
.hv-notif small {
  font-size: 0.72rem;
  color: var(--sub);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 520px;
    margin-top: 16px;
  }
}
@media (max-width: 620px) {
  .hero-visual {
    height: 420px;
  }
  .phone-shell-main {
    width: 180px;
  }
  .ps-main {
    height: 340px;
  }
  .phone-back,
  .phone-right {
    display: none;
  }
  .hv-n2 {
    left: -10px;
  }
  .hv-n3 {
    display: none;
  }
}
@media (max-width: 440px) {
  .hero-stats {
    flex-wrap: wrap;
    width: auto;
  }
  .hs-div {
    display: none;
  }
  .hs-pill {
    flex: 1 0 30%;
  }
}

/* ------------------------------------------------------ */

.tick-outer {
  position: relative;
  overflow: hidden;
}
.tick-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.tick-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.tick-track:hover {
  animation-play-state: paused;
}
.t-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 50px;
  padding: 12px 22px;
  font-family: var(--fh);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sub);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: all 0.3s;
}
.t-chip i {
  font-size: 1.1rem;
  color: var(--ci, var(--violet));
}
.t-chip:hover {
  color: var(--violet);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

/* ------------------------------------------------------------------------ */
/* hero 2-up */
.svc-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.svc-big-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rxx);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.svc-big-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(124, 58, 237, 0.12);
}
.sbc-bg-orb {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
  pointer-events: none;
  transition: transform 0.5s;
}
.svc-big-card:hover .sbc-bg-orb {
  transform: scale(1.5);
}
/* icon spin wrap */
.sbc-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
}
.sbci-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed;
  animation: scw 14s linear infinite;
}
.sbci-s2 {
  inset: 11px;
  animation: sccw 9s linear infinite;
}
.svc-big-card:hover .sbci-spin {
  animation-duration: 3s;
}
.sbci-core {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}
.svc-big-card:hover .sbci-core {
  transform: scale(1.12) rotate(8deg);
  animation: bounce 0.5s both;
}
.sbci-core i {
  font-size: 2rem;
}
/* content */
.sbc-content h3 {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.sbc-content p {
  color: var(--sub);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.sbc-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 0;
}
.sbc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink2);
  font-weight: 500;
}
.sbc-list li i {
  font-size: 1rem;
  color: var(--violet);
  flex-shrink: 0;
}
.sbc-green .sbc-list li i {
  color: var(--blue);
}
.sbc-green .sbc-tag {
  background: rgba(36, 85, 232, 0.1);
  color: var(--blue);
  border: 1.5px solid rgba(36, 85, 232, 0.25);
}
.sbc-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet);
  border: 1.5px solid rgba(124, 58, 237, 0.25);
}

/* 6 mid cards */
.svc-mid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.svc-mid {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rxl);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
}
.svc-mid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ac, var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.svc-mid:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.09);
  border-color: rgba(124, 58, 237, 0.2);
}
.svc-mid:hover::after {
  transform: scaleX(1);
}
.smc-top {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}
.smc-icon {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.35s;
}
.svc-mid:hover .smc-icon {
  transform: scale(1.15) rotate(-7deg);
  animation: bounce 0.5s both;
}
.smc-icon i {
  font-size: 1.55rem;
}
.smc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed;
  animation: scw 13s linear infinite;
}
.svc-mid h3 {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.svc-mid p {
  color: var(--sub);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.smc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.smc-tags span {
  padding: 3px 11px;
  border-radius: 50px;
  background: var(--bg2);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sub);
}

@media (max-width: 960px) {
  .svc-hero-row {
    grid-template-columns: 1fr;
  }
  .svc-mid-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .svc-mid-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------------ */
.proc-head {
  text-align: center;
  margin-bottom: 60px;
}
.proc-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  gap: 0;
}
.proc-track::before {
  content: "";
  position: absolute;
  top: 46px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0 12px,
    transparent 12px 22px
  );
}
.proc-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
}
.ps-orb {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: var(--tr);
  box-shadow: var(--shadow-s);
}
.proc-step:hover .ps-orb {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow:
    0 0 0 8px rgba(26, 86, 255, 0.12),
    var(--shadow-m);
  transform: scale(1.08);
}
.proc-step .ps-orb i {
  color: #074fae;
}
.proc-step:hover .ps-orb i {
  color: #fff;
}
.ps-orb svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  transition: var(--tr);
}
.ps-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e8eeff;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proc-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.proc-step p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------------------ */
.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* stacked layers */
.tech-layers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tl-layer {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid;
  border-radius: var(--rxm);
  padding: 13px 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.tl-layer:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
}
.tl-layer i {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.tl-layer strong {
  display: block;
  font-family: var(--fh);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.tl-layer small {
  font-size: 0.75rem;
  color: var(--sub);
}
/* icon grid */
.tech-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tig-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rxl);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  cursor: default;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  box-shadow: var(--sh);
}
.tig-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.25);
}
.tig-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s;
}
.tig-card:hover .tig-icon {
  transform: scale(1.12) rotate(-6deg);
  animation: bounce 0.5s both;
}
.tig-icon i {
  font-size: 1.6rem;
}
.tig-card span {
  font-family: var(--fh);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sub);
}
@media (max-width: 960px) {
  .tech-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tig-card{
    box-shadow: none;
  }
}
@media (max-width: 560px) {
  .tech-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-layout .right-bx{
    display: none;
  }
}

/* ------------------------------------------------------------------------ */
.pf-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rxx);
  overflow: hidden;
  box-shadow: var(--sh);
  height: 100%;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.pf-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 14px rgba(124, 58, 237, 0.12);
}
.pfc-top {
  height: 260px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  overflow: hidden;
}
/* phone in card */
.pfc-phone {
  position: absolute;
  bottom: -10px;
  z-index: 2;
}
.pfcp-notch {
  width: 50px;
  height: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 10px 10px;
  margin: 0 auto 3px;
}
.pfcp-screen {
  width: 130px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}
.pfcp-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* metric badge */
.pfc-metric {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rxm);
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}
.pfc-metric i {
  font-size: 1rem;
}
.pfc-metric strong {
  font-family: var(--fh);
  font-size: 0.9rem;
  font-weight: 800;
}
.pfc-metric small {
  font-size: 0.68rem;
  opacity: 0.8;
}
/* card body */
.pfc-body {
  padding: 22px;
}
.pfc-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.pfc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 700;
}
.pfc-tag i {
  font-size: 0.85rem;
}
.pfc-body h3 {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.pfc-body p {
  color: var(--sub);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.pfc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pfc-stats div {
  background: var(--bg2);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
}
.pfc-stats strong {
  display: block;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--violet);
}
.pfc-stats span {
  font-size: 0.65rem;
  color: var(--sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ------------------------------------------------------------------------ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: center;
}
.why-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed;
}
.wvr1 {
  width: 380px;
  height: 380px;
  animation: scw 28s linear infinite;
}
.wvr2 {
  width: 290px;
  height: 290px;
  animation: sccw 20s linear infinite;
}
.wvr3 {
  width: 200px;
  height: 200px;
  animation: scw 14s linear infinite;
}
.wv-od {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
}
.wvc {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 50px;
  color: #fff;
  font-family: var(--fh);
  font-size: 0.73rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
.wvc i {
  font-size: 0.9rem;
}
.wv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 40px rgba(124, 58, 237, 0.2),
    0 0 0 8px rgba(124, 58, 237, 0.06);
  z-index: 5;
}
.wv-center small {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.wv-card {
  position: absolute;
  bottom: 16px;
  left: -10px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rxl);
  padding: 18px;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.12);
  z-index: 10;
  animation: float 7s ease-in-out infinite;
  width: 240px;
}
.wvc-title {
  font-family: var(--fh);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.wvc-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.wvc-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wvc-row span {
  font-size: 0.72rem;
  color: var(--sub);
  width: 60px;
  flex-shrink: 0;
}
.wvc-row small {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sub);
  flex-shrink: 0;
  width: 36px;
  text-align: right;
}
.wvc-bar-bg {
  flex: 1;
  height: 6px;
  background: var(--bg2);
  border-radius: 4px;
  overflow: hidden;
}
.wvc-fill {
  height: 100%;
  border-radius: 4px;
  width: var(--w, 50%);
  animation: barFill 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
/* features 2-col */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 28px;
}
.wf-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rxl);
  padding: 20px;
  box-shadow: var(--sh);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.wf-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.1);
}
.wf-ico {
  /* width: 56px; */
  /* height: 56px; */
  /* border-radius: 11px; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  flex-shrink: 0;
  transition: transform 0.35s;
}
.wf-item:hover .wf-ico {
  transform: scale(1.1) rotate(-5deg);
  animation: bounce 0.5s both;
}
.wf-ico i {
  font-size: 1.3rem;
}
.wf-item h3 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.wf-item p {
  color: var(--sub);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 960px) {
  .why-layout {
    grid-template-columns: 1fr;
  }
  .why-visual {
    height: 360px;
  }
}
@media (max-width: 580px) {
  .why-features {
    grid-template-columns: 1fr;
  }
  .why-visual {
    height: 320px;
  }
}

/* ------------------------------------------------------------------------ */
/* RESPONSIVE */
@media (max-width: 1100px) {
  .proc-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .proc-track::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .proc-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .snav{
    display: none;
  }
}
@media (max-width: 520px) {
  .proc-track {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }
}

