:root {
  --bg: #0b0f1a;
  --bg-2: #101726;
  --brand: #a78bfa;
  /* violet */
  --accent: #7c3aed;
  --text: #000000;
  --muted: #afbad0;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-brd: rgba(255, 255, 255, 0.12);
}

html,
body {
  /* background: var(--bg); */
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  height: 100%;
}

img {
  max-width: 100%;
}

/* ===== Animated Background ===== */
.banner-image {
  margin: 0 auto;
}
.hero-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  position: relative;
}

.bg-layer {
  background: radial-gradient(
      1000px 500px at 10% -10%,
      rgba(124, 58, 237, 0.25),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at 110% 10%,
      rgba(14, 165, 233, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 350px at 50% 120%,
      rgba(99, 102, 241, 0.18),
      transparent 60%
    ),
    linear-gradient(to bottom, var(--bg), var(--bg-2));
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

/* subtle animated grid */
.bg-layer::before {
  animation: gridMove 40s linear infinite;
  background-image: linear-gradient(
      transparent 98%,
      rgba(255, 255, 255, 0.05) 0%
    ),
    linear-gradient(90deg, transparent 98%, rgba(255, 255, 255, 0.05) 0%);
  background-size: 60px 60px, 60px 60px;
  content: "";
  inset: -200% -200%;
  position: absolute;
  transform: rotate(0.001deg);
}

@keyframes gridMove {
  to {
    transform: translate3d(-120px, -120px, 0) rotate(0.001deg);
  }
}

/* floating orbs */
.orb {
  border-radius: 50%;
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.35;
  position: absolute;
}

.orb.o1 {
  animation: floatY 4s ease-in-out infinite alternate;
  background: #7c3aed;
  height: 180px;
  left: 6%;
  top: 30%;
  width: 180px;
}

.orb.o2 {
  animation: floatX 5s ease-in-out infinite alternate;
  background: #06b6d4;
  height: 140px;
  right: 12%;
  top: 18%;
  width: 140px;
}

.orb.o3 {
  animation: floatXY 6s ease-in-out infinite alternate;
  background: #6366f1;
  bottom: 10%;
  height: 220px;
  right: 8%;
  width: 220px;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatX {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(40px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes floatXY {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, -20px);
  }

  50% {
    transform: translate(-20px, 20px);
  }

  75% {
    transform: translate(10px, -15px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ===== Navbar ===== */
.navbar {
  backdrop-filter: saturate(130%) blur(6px);
  background: transparent;
}

.navbar .nav-link {
  color: var(--muted);
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: #ffffff;
}
.navbar-toggler {
  border: 0;
  padding: 0;
}
.navbar-toggler svg {
  height: 40px;
  width: auto;
}
.navbar-toggler svg path {
  stroke: #ffffff;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.btn-rounded {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.6rem 1.05rem;
}

.btn-brand {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  border: 0;
  color: white;
}

.btn-brand:hover {
  color: #fff;
  filter: brightness(0.95);
}

/* ===== Hero copy ===== */
.hero {
  padding-bottom: 4rem;
  padding-top: 10rem;
  position: relative;
  z-index: 1;
}

.lead-big {
  color: var(--muted);
  max-width: 980px;
}

.title-xl {
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: normal;
}

.grad-text {
  background: linear-gradient(90deg, #fff, #c7c9ff 40%, #b1b6ff 60%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* animated reveal */
.reveal {
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
  transform: translateY(12px);
}

.reveal.delay-1 {
  animation-delay: 0.2s;
}

.reveal.delay-2 {
  animation-delay: 0.45s;
}

.reveal.delay-3 {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* CTA pill */
.cta {
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: inline-flex;
  gap: 0.55rem;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
}

.cta .icon {
  background: radial-gradient(
    75% 75% at 30% 30%,
    #ffffff,
    #e9ddff 60%,
    #a78bfa
  );
  border-radius: 50%;
  color: #392168;
  display: grid;
  height: 44px;
  place-items: center;
  width: 44px;
}

.cta .txt {
  color: #f6f7ff;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.4rem 0.9rem;
}

.cta:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* scroll indicator */
.scroll-ind {
  bottom: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  transform: translateX(-50%);
}

/* Responsive type sizing */
.title-xl {
  font-size: clamp(2.2rem, 4.6vw + 0.5rem, 5.2rem);
}

.lead-big {
  font-size: clamp(1rem, 0.6vw + 0.95rem, 1.3rem);
}

/* ===== Platform Overview Section ===== */
#platform-overview {
  background: #fff;
  padding: 5rem 0;
}

#platform-overview .eyebrow {
  color: #7c3aed;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Cards */
#platform-overview .feature-card {
  background: #fff;
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(8, 15, 35, 0.06);
  height: 100%;
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#platform-overview .feature-card:hover {
  box-shadow: 0 18px 40px rgba(8, 15, 35, 0.12);
  transform: translateY(-6px);
}

/* Visual frame (light gray like your mock) */
#platform-overview .visual {
  background: #eef0f4;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(8, 15, 35, 0.05);
  height: 230px;
  overflow: hidden;
  padding: 0.75rem;
  perspective: 800px;
  position: relative;
  transform-style: preserve-3d;
}

/* Different speeds for variety */
#platform-overview .visual.slow img {
  animation-duration: 8s;
}

#platform-overview .visual.fast img {
  animation-duration: 5s;
}

@keyframes bob {
  50% {
    transform: translateY(-8px) translateZ(30px);
  }
}

/* Scroll reveal helper */
.reveal-on-scroll {
  opacity: 0;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
}

/* Equal-height + layout */
#testimonials {
  background: #f6f7fb;
  padding: 5rem 0;
}
#testimonials .t-track {
  align-items: stretch;
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s ease;
}
#testimonials .t-item {
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  #testimonials .t-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  #testimonials .t-item {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}
#testimonials .t-card {
  background: #fff;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(12, 18, 28, 0.06);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.4s ease;
  width: 100%;
}
#testimonials .t-card blockquote {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  margin-bottom: 0;
}

/* First-time reveal */
#testimonials .t-item.revealed .t-card {
  opacity: 1;
  transform: none;
}

/* Arrow hovers */
.end-0 {
  right: -40px !important;
}
.t-arrow {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.t-arrow:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.06);
}

/* Faded edges to hint scrolling */
#testimonials .t-viewport {
  padding: 0.25rem 2.75rem;
}
.t-fade {
  bottom: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 60px;
  z-index: 1;
}
.t-fade-left {
  left: 0;
}
.t-fade-right {
  right: 0;
}

/* wrapper keeps the page background white */
#cta-visibility {
  background: #fff;
  padding: 5rem 0;
}

/* rounded, animated panel */
.cta-panel {
  background: radial-gradient(
      1000px 500px at 10% -10%,
      rgba(124, 58, 237, 0.25),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at 110% 10%,
      rgba(14, 165, 233, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 350px at 50% 120%,
      rgba(99, 102, 241, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #0c1120, #121a2f);
  border-radius: 2.25rem; /* big rounded corners */
  box-shadow: 0 30px 60px rgba(7, 12, 24, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.25rem, 4vw, 5rem);
  position: relative;
}

/* animated grid overlay */
.cta-panel::before {
  animation: ctaGrid 38s linear infinite;
  background-image: linear-gradient(
      transparent 98%,
      rgba(255, 255, 255, 0.06) 0
    ),
    linear-gradient(90deg, transparent 98%, rgba(255, 255, 255, 0.06) 0);
  background-size: 60px 60px, 60px 60px;
  content: "";
  inset: -200% -200%;
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
  transform: rotate(0.001deg);
}
@keyframes ctaGrid {
  to {
    transform: translate3d(-140px, -140px, 0) rotate(0.001deg);
  }
}

/* floating orbs for depth */
.cta-orb {
  border-radius: 50%;
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.35;
  position: absolute;
}
.cta-orb.o1 {
  animation: orbY 3s ease-in-out infinite alternate;
  background: #7c3aed;
  height: 180px;
  left: 6%;
  top: 20%;
  width: 180px;
}
.cta-orb.o2 {
  animation: orbX 4s ease-in-out infinite alternate;
  background: #06b6d4;
  height: 140px;
  right: 10%;
  top: 18%;
  width: 140px;
}
.cta-orb.o3 {
  animation: orbXY 5s ease-in-out infinite alternate;
  background: #6366f1;
  bottom: 8%;
  height: 220px;
  right: 6%;
  width: 220px;
}
@keyframes orbY {
  50% {
    transform: translateY(-36px);
  }
}
@keyframes orbX {
  50% {
    transform: translateX(36px);
  }
}
@keyframes orbXY {
  25% {
    transform: translate(18px, -18px);
  }
  50% {
    transform: translate(-18px, 18px);
  }
  75% {
    transform: translate(10px, -12px);
  }
}

/* text */
.cta-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
.cta-sub {
  color: #c6cbe3;
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.25rem);
}

/* CTA pill button */
.btn-cta {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta:hover {
  box-shadow: 0 18px 38px rgba(124, 58, 237, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* reveal on scroll */
.cta-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cta-reveal.visible {
  opacity: 1;
  transform: none;
}

/* Typography + spacing */
#benefits-intro {
  background: #f6f7fb;
  padding: 5rem 0;
}
#benefits-intro .benefits-title {
  font-size: clamp(1.8rem, 2.6vw + 1rem, 3.2rem);
  letter-spacing: 0.1px;
  line-height: 1.15;
}
#benefits-intro .benefits-sub {
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.35rem);
}

/* Eyebrow style with subtle gradient underline */
.benefits-eyebrow {
  color: #7c3aed;
  font-weight: 800;
  letter-spacing: 0.14em;
  position: relative;
  text-transform: uppercase;
}
.benefits-eyebrow::after {
  animation: benefitsShine 2.6s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.15),
    rgba(124, 58, 237, 0.55),
    rgba(124, 58, 237, 0.15)
  );
  border-radius: 999px;
  bottom: -8px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 120px;
}
@keyframes benefitsShine {
  50% {
    filter: brightness(1.4);
    width: 150px;
  }
}

/* Reveal on scroll (no external libs) */
.benefits-reveal {
  opacity: 0;
  transform: translateY(14px);
}
.benefits-reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Typography */
#built-for-optimization {
  background: #f6f7fb;
  padding-top: 5rem;
}
#built-for-optimization .opt-title {
  font-size: clamp(1.9rem, 2.6vw + 1rem, 3.2rem);
  letter-spacing: 0.1px;
  line-height: 1.15;
}
#built-for-optimization .opt-sub {
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.35rem);
}

/* Eyebrow with animated underline */
.opt-eyebrow {
  color: #7c3aed;
  font-weight: 800;
  letter-spacing: 0.14em;
  position: relative;
  text-transform: uppercase;
}
.opt-eyebrow::after {
  animation: optShimmer 2.6s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.15),
    rgba(124, 58, 237, 0.55),
    rgba(124, 58, 237, 0.15)
  );
  border-radius: 999px;
  bottom: -8px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 120px;
}
@keyframes optShimmer {
  50% {
    filter: brightness(1.4);
    width: 150px;
  }
}

/* Scroll reveal */
.opt-reveal {
  opacity: 0;
  transform: translateY(14px);
}
.opt-reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

:root {
  --violet: #6f3df4;
  --violet-2: #8a61ff;
  --ink: #0d1220;
  --card-brd: #e7eaf1;
  --panel-brd: #e8ebf2;
  --shadow: 0 14px 40px rgba(20, 24, 36, 0.1);
  --shadow-soft: 0 12px 32px rgba(20, 24, 36, 0.08);
}

/* Card shell */
#benefits-cards .bcard {
  background: #fff;
  border: 1px solid var(--panel-brd);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
#benefits-cards .bcard:hover {
  box-shadow: 0 18px 46px rgba(20, 24, 36, 0.14);
  transform: translateY(-4px);
}
.bcard-title {
  color: var(--ink);
  font-size: clamp(1.35rem, 0.9rem + 0.9vw, 1.9rem);
  font-weight: 800;
}
.bcard-copy {
  color: #6b748a;
}

/* Pills */
.btn-outline-violet {
  --bs-btn-color: #6f3df4;
  --bs-btn-border-color: #6f3df4;
  --bs-btn-hover-bg: #6f3df4;
  --bs-btn-hover-border-color: #6f3df4;
  --bs-btn-hover-color: #fff;
  background: #fff;
  border-width: 2px;
  font-weight: 600;
  padding: 0.6rem 1.15rem;
}
.btn-pill {
  border-radius: 999px;
}

/* Inner panel */
.panel {
  background: #fff;
  border: 1px solid var(--card-brd);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.panel-head {
  border-bottom: 1px solid #eceff4;
  color: #1b2333;
  font-size: 1rem;
  height: 56px;
  padding: 0 16px;
}
.dot {
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  width: 8px;
}
.dot-teal {
  background: #14b8a6;
}

/* ---- Bars with Y-axis ---- */
.bars-wrap {
  padding: 12px 12px 8px 12px;
}
.bars-grid {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: 64px 1fr; /* left axis column */
}
.yaxis {
  color: #9aa3b2;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  height: 176px;
  justify-content: space-between;
  padding: 0 6px 36px 4px; /* leave room for bottom labels gridline */
  user-select: none;
}
.bars {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(7, 1fr);
  height: 176px;
  padding: 0 8px 0 2px;
  position: relative;
}
/* bottom grid line */
.bars::after {
  background: #edf1f6;
  bottom: 36px;
  content: "";
  height: 1px;
  left: -64px;
  position: absolute;
  right: 0;
}
.bars span {
  animation: grow 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  background: linear-gradient(180deg, var(--violet-2), var(--violet) 65%);
  border-radius: 12px;
  box-shadow: inset 0 -12px 18px rgba(255, 255, 255, 0.25);
  height: 0;
  transform-origin: bottom;
}
.bars span:nth-child(1) {
  animation-delay: 0.05s;
}
.bars span:nth-child(2) {
  animation-delay: 0.1s;
}
.bars span:nth-child(3) {
  animation-delay: 0.15s;
}
.bars span:nth-child(4) {
  animation-delay: 0.2s;
}
.bars span:nth-child(5) {
  animation-delay: 0.25s;
}
.bars span:nth-child(6) {
  animation-delay: 0.3s;
}
.bars span:nth-child(7) {
  animation-delay: 0.35s;
}
@keyframes grow {
  to {
    height: var(--h);
  }
}

.labels {
  color: #a1a9ba;
  display: grid;
  font-size: 0.9rem;
  gap: 14px;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 14px;
  padding: 0 8px 8px 2px;
  text-align: center;
}

/* ---- Gauge with labels + needle ---- */
.gauge-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;
}
.gauge {
  background: conic-gradient(from 180deg, #dfe4ec 0 180deg);
  border-radius: 130px 130px 0 0;
  height: 130px;
  mask: radial-gradient(closest-side, transparent 64%, #000 65%);
  -webkit-mask: radial-gradient(closest-side, transparent 64%, #000 65%);
  position: relative;
  width: 260px;
}
.gauge::before {
  background: conic-gradient(
    from 180deg,
    #7f54ff var(--progress, 0.62turn),
    #dfe4ec var(--progress, 0.62turn) 180deg
  );
  /* purple progress */
  content: "";
  inset: 0;
  mask: radial-gradient(closest-side, transparent 64%, #000 65%);
  -webkit-mask: radial-gradient(closest-side, transparent 64%, #000 65%);
  position: absolute;
}
/* center knob */
.gauge::after {
  background: #7f54ff;
  border-radius: 50%;
  bottom: -2px;
  box-shadow: 0 0 0 8px rgba(127, 84, 255, 0.18);
  content: "";
  height: 16px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 16px;
}
/* needle */
.gauge .needle {
  background: linear-gradient(90deg, #7f54ff, #b39cff);
  border-radius: 2px;
  bottom: 0;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: rotate(calc(-180deg + (var(--progress, 0.62turn) * 360)));
  transform-origin: 0 100%;
  width: 110px;
}
.gauge .needle::after {
  background: #7f54ff;
  border-radius: 1px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  /* little triangle tip */
  content: "";
  height: 8px;
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
}
.gauge-labels {
  color: #8892a6;
  font-size: 0.95rem;
}
.gauge-labels .fw-bold {
  color: #1b2333;
}

/* Reveal */
#benefits-cards {
  background: #f6f7fb;
  padding-bottom: 2rem;
  padding-top: 5rem;
}
#benefits-cards .reveal {
  opacity: 0;
  transform: translateY(14px);
}
#benefits-cards .reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* ---------- Base text sizes ---------- */
#benefits-list {
  padding: 5rem 0;
}
#benefits-list h2 {
  font-size: clamp(1.9rem, 2.6vw + 1rem, 3.2rem);
}
#benefits-list h4 {
  font-size: clamp(1.1rem, 0.5vw + 1rem, 1.5rem);
}
#benefits-list p {
  color: #68758b !important;
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.35rem);
}

/* ---------- Icon tile with breathing, shimmer & ripple ---------- */
#benefits-list .benefit-icon {
  animation: breathe 4.5s ease-in-out infinite;
  background: radial-gradient(120% 120% at 20% 15%, #b296ff, #7c3aed 58%);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
  display: grid;
  flex: 0 0 62px;
  font-size: 1.35rem;
  height: 62px;
  overflow: hidden;
  place-items: center;
  position: relative;
  transform: translateZ(0);
  width: 62px;
}
/* shimmer sweep */
#benefits-list .benefit-icon .shine {
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  filter: blur(2px);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-120%);
}
#benefits-list .benefit:hover .shine {
  animation: shine 1.15s ease;
  opacity: 0.7;
}
/* ripple on hover */
#benefits-list .benefit-icon::after {
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: box-shadow 0.35s ease;
}
#benefits-list .benefit:hover .benefit-icon::after {
  box-shadow: 0 0 0 10px rgba(124, 58, 237, 0.18);
}
/* lift + subtle rotate */
#benefits-list .benefit:hover .benefit-icon {
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.34);
  transform: translateY(-4px) rotate(-2deg);
}

/* ---------- Illustration wrapper (floating + subtle yaw) ---------- */
#benefits-list .illu-wrap {
  display: inline-block;
  filter: drop-shadow(0 18px 40px rgba(10, 15, 30, 0.12));
  position: relative;
}
#benefits-list .illustration {
  animation: floatY 7s ease-in-out infinite, yaw 10s ease-in-out infinite;
  border-radius: 12px;
  display: block;
  will-change: transform;
}

/* ---------- Reveal animations ---------- */
.reveal-x {
  opacity: 0;
  transform: translateX(-18px);
}
.reveal-float {
  opacity: 0;
  transform: translateY(14px);
}
.reveal-x.visible,
.reveal-float.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---------- Keyframes ---------- */
@keyframes floatY {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes yaw {
  50% {
    transform: rotateX(0) rotateY(1.5deg);
  }
}
@keyframes breathe {
  50% {
    filter: brightness(1.06);
    transform: translateZ(0) scale(1.03);
  }
}
@keyframes shine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
}

/* Layout & type */
#pill-strip {
  padding-bottom: 5rem;
}
#pill-strip .pill {
  align-items: center;
  animation: floatY 8s ease-in-out infinite;
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(12, 18, 28, 0.06);
  color: #21242c;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  overflow: hidden;
  padding: 0.9rem 1.6rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  will-change: transform, box-shadow;
}

/* Hover: lift + glow + shimmer */
#pill-strip .pill::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(124, 58, 237, 0.25) 50%,
    transparent 70%
  );
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-120%);
}
#pill-strip .pill:hover {
  border-color: #e4e8f2;
  box-shadow: 0 16px 40px rgba(12, 18, 28, 0.12);
  transform: translateY(-4px);
}
#pill-strip .pill:hover::after {
  animation: shine 1.1s ease;
  opacity: 1;
}

/* Entrance reveal */
#pill-strip .reveal {
  opacity: 0;
  transform: translateY(12px);
}
#pill-strip .reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Subtle idle float (can disable if you prefer) */
@keyframes floatY {
  50% {
    transform: translateY(-6px);
  }
}
@keyframes shine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

/* Stack nicely on mobile */
@media (max-width: 767.98px) {
  #pill-strip .pill {
    width: 100%;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #pill-strip .pill {
    animation: none !important;
  }
}

/* Typography */
#outcome-section {
  background: #f6f7fb;
  padding: 5rem 0;
}
#outcome-section .outcome-title {
  font-size: clamp(1.9rem, 2.6vw + 1rem, 3.1rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
#outcome-section .outcome-sub {
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.3rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
}

/* Eyebrow with underline shimmer */
.outcome-eyebrow {
  color: #7c3aed;
  font-weight: 700;
  letter-spacing: 0.14em;
  position: relative;
  text-transform: uppercase;
}
.outcome-eyebrow::after {
  animation: outcomeShimmer 2.8s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.2),
    rgba(124, 58, 237, 0.6),
    rgba(124, 58, 237, 0.2)
  );
  border-radius: 999px;
  bottom: -8px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 120px;
}
@keyframes outcomeShimmer {
  50% {
    filter: brightness(1.3);
    width: 150px;
  }
}

/* Reveal (fade + rise) */
.outcome-reveal {
  opacity: 0;
  transform: translateY(16px);
}
.outcome-reveal.visible {
  opacity: 1;
  transform: none;
  transition: 0.6s ease;
}

/* Word split reveal */
.outcome-reveal-words {
  opacity: 1;
}
.outcome-reveal-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
}
.outcome-reveal-words.visible .word {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.outcome-reveal-words .word:nth-child(odd) {
  transition-delay: 0.05s;
}
.outcome-reveal-words .word:nth-child(even) {
  transition-delay: 0.12s;
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .outcome-reveal,
  .outcome-reveal-words .word {
    transform: none !important;
    transition: none !important;
  }
  .outcome-eyebrow::after {
    animation: none !important;
  }
}

:root {
  --navy: #1b2133;
}

/* ---- Slide bottom->up reveal ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
}
.reveal-up.in {
  animation: slideUp 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- Card look ---- */
#outcome-stats {
  background: #f6f7fb;
  padding-bottom: 5rem;
}
#outcome-stats .stat-card {
  align-items: center;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  box-shadow: 0 18px 42px rgba(16, 18, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  overflow: hidden;
  padding: clamp(1.5rem, 2vw, 2.25rem);
  position: relative;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* moving glow */
#outcome-stats .spotlight {
  animation: sweep 18s linear infinite;
  background: radial-gradient(
      420px 220px at 12% 12%,
      rgba(140, 110, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      380px 180px at 90% 90%,
      rgba(56, 189, 248, 0.12),
      transparent 60%
    );
  inset: -40% -40%;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
}
@keyframes sweep {
  to {
    transform: translate(-8%, -8%) rotate(0.001deg);
  }
}

/* hover tilt + glow */
#outcome-stats .stat-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(16, 18, 26, 0.28);
  transform: translateY(-8px);
}
#outcome-stats .stat-card::after {
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(140, 110, 255, 0.2);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: box-shadow 0.45s ease;
}
#outcome-stats .stat-card:hover::after {
  box-shadow: 0 0 0 14px rgba(140, 110, 255, 0.08);
}

/* numbers */
#outcome-stats .stat-value {
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 0.8rem;
  transform-origin: center;
}
#outcome-stats .stat-value.spring.pop {
  animation: pop 0.35s cubic-bezier(0.2, 1.5, 0.2, 1) 1;
}
@keyframes pop {
  0% {
    transform: scale(0.94);
  }
  100% {
    transform: scale(1);
  }
}
#outcome-stats .stat-value .mono {
  font-variant-numeric: tabular-nums;
  opacity: 0.96;
}

#outcome-stats .stat-caption {
  color: #cdd3e4;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.15rem);
  margin: 0;
}

/* motion safety */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #outcome-stats .spotlight {
    animation: none !important;
  }
  #outcome-stats .stat-card::after {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
} /* smooth anchor/scrollTo */

.to-top-btn {
  --size: 52px;
  --ring: rgba(124, 58, 237, 0.25); /* ring color */
  --grad: linear-gradient(135deg, #a78bfa, #7c3aed);
  background: var(--grad);
  background-clip: content-box, border-box;

  /* progress ring */
  background-image: conic-gradient(
      #ffffff00 0 var(--p, 0deg),
      var(--ring) var(--p, 0deg) 360deg
    ),
    var(--grad);
  background-origin: border-box;
  border: 0;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: grid;
  height: var(--size);
  opacity: 0;
  padding: 3px; /* ring thickness */
  place-items: center;
  position: fixed;
  right: 22px;

  /* slide-in/out */
  transform: translateY(18px);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.2s ease;
  visibility: hidden;
  width: var(--size);
  z-index: 1040;
}
.to-top-btn i {
  font-size: 1.1rem;
}
.to-top-btn:hover {
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.to-top-btn.show {
  animation: bump 0.28s ease-out 1;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@keyframes bump {
  0% {
    transform: translateY(10px) scale(0.96);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .to-top-btn {
    animation: none;
    transition: none;
  }
}

/* === Card shell === */
#cta-benchmark {
  padding: 5rem 0;
}
#cta-benchmark .cta-card {
  background: linear-gradient(180deg, #f2ecff 0%, #edf1ff 100%);
  border: 1px solid #ece8ff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(60, 40, 120, 0.12);
  isolation: isolate; /* keep veil below content */
  overflow: hidden;
  padding: clamp(2rem, 3.6vw, 4rem) clamp(1.25rem, 3vw, 3rem);
  position: relative;
}

/* Gradient veil that slowly sweeps for depth */
#cta-benchmark .cta-veil {
  animation: veilMove 30s linear infinite;
  background: radial-gradient(
      60% 80% at 10% 10%,
      rgba(124, 58, 237, 0.18),
      transparent 60%
    ),
    radial-gradient(
      70% 90% at 110% 20%,
      rgba(99, 102, 241, 0.16),
      transparent 65%
    );
  inset: -40% -10%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
@keyframes veilMove {
  50% {
    transform: translateY(-3%) translateX(-2%);
  }
}

/* Title / copy sizes */
#cta-benchmark .cta-title {
  color: #000000;
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.8rem);
  letter-spacing: 0.02em;
}
#cta-benchmark .cta-copy {
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.15rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

/* CTA button */
#cta-benchmark .btn-cta {
  --grad: linear-gradient(135deg, #a78bfa, #7c3aed 68%);
  background: var(--grad);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
#cta-benchmark .btn-cta:hover {
  box-shadow: 0 18px 44px rgba(124, 58, 237, 0.45);
  filter: brightness(1.03);
  transform: translateY(-2px);
}

/* Floating rounded squares & typographic hint */
#cta-benchmark .shape {
  animation: floaty 8s ease-in-out infinite;
  backdrop-filter: blur(0.5px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(30, 30, 60, 0.08);
  opacity: 0.35;
  position: absolute;
  z-index: 0;
}
#cta-benchmark .shape-a {
  animation-delay: 0.2s;
  height: 64px;
  left: 26%;
  top: 160px;
  width: 84px;
}
#cta-benchmark .shape-b {
  animation-delay: 1.1s;
  bottom: 90px;
  height: 60px;
  left: 7%;
  width: 70px;
}
#cta-benchmark .shape-c {
  animation-delay: 0.6s;
  bottom: 80px;
  height: 80px;
  right: 9%;
  width: 70px;
}
#cta-benchmark .shape-d {
  animation-delay: 1.6s;
  height: 56px;
  right: 28%;
  top: 340px;
  width: 72px;
}
/* 'Aa' outline on the right like the reference */
#cta-benchmark .shape-e {
  background: none;
  border: 0;
  box-shadow: none;
  color: #7c3aed;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  opacity: 0.25;
  position: absolute;
  right: 12%;
  top: 110px;
  z-index: 0;
  -webkit-text-stroke: 2px rgba(124, 58, 237, 0.35);
  animation: floaty 10s ease-in-out infinite;
  text-shadow: none;
}

@keyframes floaty {
  50% {
    transform: translateY(-10px);
  }
}

/* Slide-up reveal (uses your global helper if present; included here as well) */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-up.in {
  animation: slideUp 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #cta-benchmark .cta-veil,
  #cta-benchmark .shape {
    animation: none !important;
  }
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Eyebrow */
#faq {
  padding-bottom: 5rem;
}
#faq .faq-eyebrow {
  color: #7c3aed;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Accordion shell: divider style */
#faq .faq-accordion .accordion-item {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #eceff4;
}
#faq .faq-accordion .accordion-item:first-child {
  border-top: 1px solid #eceff4;
}

/* Button layout */
#faq .accordion-button {
  align-items: center;
  background: #fff;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #0f1225;
  display: flex;
  font-size: clamp(1.05rem, 0.6vw + 1rem, 1.35rem);
  font-weight: 600;
  gap: 0.85rem;
  padding: 1.25rem 0;
}
#faq .accordion-button.collapsed {
  color: #101325;
}
#faq .accordion-button:focus {
  box-shadow: none;
}

/* Purple lead bar */
#faq .accordion-button .lead-bar {
  background: #7c3aed;
  border-radius: 6px;
  display: inline-block;
  height: 16px;
  width: 6px;
}

/* Chevron override (Bootstrap uses ::after) */
#faq .accordion-button::after {
  background-image: none !important;
  border-bottom: 2px solid #94a3b8;
  border-right: 2px solid #94a3b8;
  content: "";
  height: 1.1rem;
  margin-left: auto;
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
  width: 1.1rem;
}
#faq .accordion-button:not(.collapsed)::after {
  border-color: #7c3aed;
  transform: rotate(-135deg);
}

/* Body copy */
#faq .accordion-body {
  color: #5f6b82;
  font-size: 1.05rem;
  max-width: 56rem;
  padding: 0 0 1.25rem 1.65rem;
}

/* Slide-up reveal (reuses the same pattern used elsewhere) */
#faq .reveal-up {
  opacity: 0;
  transform: translateY(28px);
}
#faq .reveal-up.in {
  animation: faqSlideUp 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes faqSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  #faq .reveal-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Eyebrow */
#insights {
  background: #f7f8fb;
  padding: 5rem 0;
}
#insights .insight-eyebrow {
  color: #7c3aed;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Figure wrapper with glow rim */
#insights .insight-figure {
  position: relative;
}
#insights .insight-img {
  border-radius: 1.35rem;
  display: block;
}
#insights .figure-glow {
  background: radial-gradient(
      60% 60% at 15% 10%,
      rgba(124, 58, 237, 0.18),
      transparent 60%
    ),
    radial-gradient(
      70% 70% at 85% 90%,
      rgba(56, 189, 248, 0.12),
      transparent 65%
    );
  border-radius: 1.6rem;
  filter: blur(18px);
  inset: -10px;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
}

/* Insight list cards */
#insights .insight-card {
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(12, 18, 28, 0.06);
  display: flex;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}
#insights .insight-card:hover {
  border-color: #e3e7f0;
  box-shadow: 0 20px 46px rgba(12, 18, 28, 0.12);
  transform: translateY(-6px);
}
#insights .insight-card .dot {
  background: linear-gradient(135deg, #a78bfa, #7c3aed 70%);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #fff;
  display: inline-grid;
  flex: 0 0 36px;
  font-weight: 800;
  height: 36px;
  place-items: center;
  width: 36px;
}

/* Slide-up reveal (same pattern used across pages) */
#insights .reveal-up {
  opacity: 0;
  transform: translateY(28px);
}
#insights .reveal-up.in {
  animation: insSlideUp 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes insSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Subtle tilt on image (parallax feel) */
#insights .js-tilt-img {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #insights .reveal-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Card */
#contact-inquiry {
  background: #f6f7fb;
  padding-bottom: 5rem;
}
#contact-inquiry .contact-card {
  background: radial-gradient(
    120% 140% at 8% 12%,
    #1e2340 0%,
    #12182b 55%,
    #101424 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(10, 14, 30, 0.3);
  overflow: hidden;
  padding: clamp(1.8rem, 3.2vw, 2.6rem);
  position: relative;
}
/* Animated spotlight */
#contact-inquiry .spot {
  animation: spotMove 26s linear infinite;
  background: radial-gradient(
      60% 60% at 10% 15%,
      rgba(140, 110, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      55% 55% at 90% 80%,
      rgba(66, 153, 255, 0.16),
      transparent 60%
    );
  inset: -35% -10%;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
}
@keyframes spotMove {
  50% {
    transform: translate(-3%, -2%);
  }
}

/* Dark form look */
#contact-inquiry .form-dark {
  background: #0c1120;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #e9ecf5;
  padding: 0.85rem 1rem;
}
#contact-inquiry .form-dark::placeholder {
  color: #6b7390;
}
#contact-inquiry .form-dark:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.2);
  outline: 0;
}
#contact-inquiry .form-dark-textarea {
  resize: vertical;
}

/* Character counter */
#contact-inquiry .charcount {
  bottom: 0.35rem;
  color: #9aa3c1;
  font-size: 0.9rem;
  position: absolute;
  right: 0.5rem;
}

/* Submit button (pill) */
#contact-inquiry .btn-cta {
  --grad: linear-gradient(135deg, #a78bfa, #7c3aed 65%);
  background: var(--grad);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.25rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
#contact-inquiry .btn-cta:hover {
  box-shadow: 0 24px 58px rgba(124, 58, 237, 0.45);
  filter: brightness(1.03);
  transform: translateY(-2px);
}

/* Slide-up reveal for the whole card */
#contact-inquiry .reveal-up {
  opacity: 0;
  transform: translateY(28px);
}
#contact-inquiry .reveal-up.in {
  animation: ciSlide 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes ciSlide {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.contact-toast {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border-radius: 12px;
  bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  padding: 0.85rem 1.25rem;
  position: fixed;
  right: 2rem;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1055;
}
.contact-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  #contact-inquiry .reveal-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #contact-inquiry .spot {
    animation: none !important;
  }
}

/* Footer */
.footer-fiopti {
  padding-bottom: 2rem;
  padding-top: 4rem;
}
.footer-head {
  color: #4267ff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}

/* Links */
.footer-link {
  color: #6b7383;
  display: inline-block;
  padding: 0.35rem 0;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.footer-link:hover {
  color: #111827;
  transform: translateX(2px);
}

/* Social icons */
.footer-social {
  border: 1px solid #e6eaf0;
  border-radius: 50%;
  color: #606b79;
  display: inline-grid;
  height: 36px;
  place-items: center;
  transition: all 0.2s ease;
  width: 36px;
}
.footer-social:hover {
  border-color: #7c3aed;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.18);
  color: #7c3aed;
  transform: translateY(-2px);
}
.footer-social i {
  font-size: 1rem;
}

/* Newsletter input */
.footer-input {
  background: #fff;
  box-shadow: 0 6px 24px rgba(17, 23, 28, 0.05);
}
.footer-input:focus-within {
  border-color: #7c3aed;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.12);
}

.newsletter-form .form-control::placeholder {
  color: #9aa3b2;
}

/* Reveal on scroll */
.footer-reveal {
  opacity: 0;
  transform: translateY(20px);
}
.footer-reveal.in {
  animation: footerIn 0.6s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes footerIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .footer-link,
  .footer-social {
    transition: none !important;
  }
}

/* Primary tint */
.btn-primary {
  --bs-btn-bg: #7c3aed;
  --bs-btn-border-color: #7c3aed;
  --bs-btn-hover-bg: #6a2ee6;
  --bs-btn-hover-border-color: #6a2ee6;
  --bs-btn-active-bg: #5d28cc;
  --bs-btn-active-border-color: #5d28cc;
}

/* Card shell */
#smart-procurement {
  background: #f7f8fb;
  padding-bottom: 5rem;
}
#smart-procurement .spa-card {
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(12, 18, 28, 0.06);
  min-height: 345px;
}

/* CTA button (pill) */
#smart-procurement .btn-cta {
  --grad: linear-gradient(135deg, #a78bfa, #7c3aed 65%);
  background: var(--grad);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.2rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
#smart-procurement .btn-cta:hover {
  box-shadow: 0 18px 44px rgba(124, 58, 237, 0.45);
  filter: brightness(1.03);
  transform: translateY(-2px);
}

/* Table */
#smart-procurement .spa-table thead th {
  border: 0;
  color: #7a8399;
  font-size: 0.9rem;
  font-weight: 700;
}
#smart-procurement .spa-table tbody td {
  border: 0;
  padding-block: 0.9rem;
}
#smart-procurement .avatar {
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 1px 6px rgba(12, 18, 28, 0.15);
  height: 32px;
  object-fit: cover;
  width: 32px;
}

/* Compliance mini bars */
#smart-procurement .mini-bar {
  --bg: #e9edf6;
  --fg: #22c55e; /* default green */
  background: var(--bg);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  position: relative;
}
#smart-procurement .mini-bar::after {
  background: var(--fg);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
  content: "";
  inset: 2px;
  max-width: calc(100% - 4px);
  position: absolute;
  width: 80%;
}
#smart-procurement .mini-bar.ok::after {
  width: 90%;
}
#smart-procurement .mini-bar.warn {
  --fg: #22c55e;
}
#smart-procurement .mini-bar.warn::after {
  width: 70%;
}
#smart-procurement .mini-bar.bad {
  --fg: #ef4444;
}
#smart-procurement .mini-bar.bad::after {
  width: 30%;
}

/* Status pills */
#smart-procurement .status {
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
}
#smart-procurement .status.success {
  background: #e7f9ef;
  color: #0e9f6e;
}
#smart-procurement .status.pending {
  background: #eef2ff;
  color: #4338ca;
}
#smart-procurement .status.hold {
  background: #fee2e2;
  color: #b91c1c;
}

/* Slide-up reveal for section cards */
#smart-procurement .reveal-up {
  opacity: 0;
  transform: translateY(28px);
}
#smart-procurement .reveal-up.in {
  animation: spaSlide 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes spaSlide {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Row stagger animation */
#smart-procurement .row-reveal {
  opacity: 0;
  transform: translateY(10px);
}
#smart-procurement .row-reveal.in {
  animation: rowIn 0.5s ease-out forwards;
}
@keyframes rowIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #smart-procurement .reveal-up,
  #smart-procurement .row-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============ Why Choose Page ============  */
.why-choose-hero {
  min-height: auto;
}
#benefits-grid {
  background: #f7f8fb;
  padding: 5rem 0;
}
#benefits-grid .bcard {
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(12, 18, 28, 0.06);
  min-height: 450px;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

#benefits-grid .bcard:hover {
  border-color: #e4e8f2;
  box-shadow: 0 24px 60px rgba(12, 18, 28, 0.12);
  transform: translateY(-6px);
}

#benefits-grid .bcard-body {
  padding: 1.25rem 1.25rem 1rem 1.25rem;
  position: relative;
  z-index: 2;
}

/* Icon badge */
#benefits-grid .b-ico {
  background: linear-gradient(180deg, #f4efff 0%, #ece6ff 100%);
  border: 1px solid #e3dbff;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: grid;
  flex: 0 0 26px;
  height: 26px;
  place-items: center;
  width: 26px;
}

#benefits-grid .b-ico i {
  color: #7c3aed;
  font-size: 14px;
  line-height: 1;
}

/* List */
#benefits-grid .b-list {
  color: #5f6b82;
  margin: 0;
  padding-left: 1.2rem;
}

#benefits-grid .b-list li {
  margin: 0.45rem 0;
}

/* Illustration image (bottom-right) */
#benefits-grid .b-illus {
  bottom: -6px;
  opacity: 0.98;
  pointer-events: none;
  position: absolute;
  right: -4px;
  transform: translateY(6px);
  transition: transform 0.35s ease;
  user-select: none;
  width: min(58%, 420px);
}

#benefits-grid .bcard:hover .b-illus {
  transform: translateY(0);
}

/* Slide-up reveal */
#benefits-grid .reveal-up {
  opacity: 0;
  transform: translateY(28px);
}

#benefits-grid .reveal-up.in {
  animation: benSlide 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}

@keyframes benSlide {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #benefits-grid .reveal-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  #benefits-grid .bcard:hover {
    transform: none !important;
  }

  #benefits-grid .bcard:hover .b-illus {
    transform: none !important;
  }
}

/* Logo hover effect */
.logo-row .col-6 {
  margin: 20px 25px;
}
#trusted-logos {
  background: #f7f8fb;
  padding: 5rem 0;
}
#trusted-logos .logo-item {
  filter: grayscale(20%);
  max-height: 64px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}
#trusted-logos .logo-item:hover {
  filter: grayscale(0%);
  transform: scale(1.12);
}

/* Reveal animation */
#trusted-logos .reveal-up {
  opacity: 0;
  transform: translateY(25px);
}
#trusted-logos .reveal-up.in {
  animation: logoSlide 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes logoSlide {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #trusted-logos .reveal-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #trusted-logos .logo-item {
    transition: none !important;
  }
}

/* Card cell */
#the-challenge {
  background: #ffffff;
  padding: 5rem 0;
}
#the-challenge .ch-card {
  background: #fff;
  padding: 2rem 1rem;
  position: relative;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#the-challenge .ch-card:hover {
  background: #fcfcff;
  box-shadow: 0 16px 36px rgba(12, 18, 28, 0.08);
  transform: translateY(-4px);
}

/* Icon disc */
#the-challenge .ch-ico {
  background: linear-gradient(180deg, #f6f2ff 0%, #eee8ff 100%);
  border: 1px solid #dddddd;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: grid;
  height: 56px;
  margin: 0 auto 12px;
  place-items: center;
  width: 56px;
}
#the-challenge .ch-ico i {
  color: #7c3aed;
  font-size: 22px;
}

/* Vertical split lines on row 1 (md+ only) */
@media (min-width: 768px) {
  #the-challenge .ch-split-right {
    border-right: 1px solid #dddddd;
  }
}

/* Middle horizontal divider under row 1 (md+ only) */
#the-challenge .ch-divider {
  background: #dddddd;
  bottom: -1px;
  display: none;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}
@media (min-width: 768px) {
  #the-challenge .ch-divider {
    display: block;
  }
}

/* Optional tiny vertical split between the two bottom cells (md+ only) */
@media (min-width: 768px) {
  #the-challenge .ch-bottom-split-right {
    border-right: 1px solid #dddddd;
  }
}

/* Reveal animation (slide-up) */
#the-challenge .reveal-up {
  opacity: 0;
  transform: translateY(26px);
}
#the-challenge .reveal-up.in {
  animation: chSlide 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes chSlide {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #the-challenge .reveal-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #the-challenge .ch-card {
    transition: none !important;
  }
}

/* ===== Board & Grid ===== */
#how-it-works {
  background: #f3f5f9;
  padding: 5rem 0;
}
.hiw-board {
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(12, 18, 28, 0.06);
  overflow: hidden;
}

/* Grid: 3 cols, 2 rows
     Row1: s1 s2 s4
     Row2: s1 s3 s4
  */
.hiw-grid-1324 {
  display: grid;
  grid-template-areas:
    "s1 s2 s4"
    "s1 s3 s4";
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
}

.hiw-s1 {
  grid-area: s1;
  min-height: 360px;
}
.hiw-s2 {
  grid-area: s2;
}
.hiw-s3 {
  grid-area: s3;
  min-height: 280px;
}
.hiw-s4 {
  grid-area: s4;
  min-height: 360px;
}

/* Hairline internal borders */
.b-r {
  border-right: 1px solid #eceff4;
}
.b-b {
  border-bottom: 1px solid #eceff4;
}

/* Cells */
.hiw-cell {
  background: #fff;
  padding: 18px 18px 16px 18px;
  position: relative;
}
.hiw-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hiw-card:hover {
  background: #fcfcff;
  box-shadow: 0 10px 28px rgba(12, 18, 28, 0.07);
  transform: translateY(-3px);
}

/* Typography */
.hiw-step {
  color: #7c3aed;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.hiw-title {
  color: #0e1320;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.hiw-copy {
  color: #6b7383;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-width: 40ch;
}
.hiw-copy--tight {
  margin-bottom: 0.75rem;
}

/* Illustrations (default block) */
.hiw-illus {
  height: auto;
  max-width: 520px;
  pointer-events: none;
  user-select: none;
  width: 92%;
}
.hiw-illus-lg {
  max-width: 620px;
  width: 66%;
}

/* ── Internal layout for Step 2 & 3: text left / image right ───────── */
.hiw-inner {
  align-items: end;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr; /* mobile: stack */
  margin-top: 0.35rem;
}
@media (min-width: 768px) {
  .hiw-s2 .hiw-inner,
  .hiw-s3 .hiw-inner {
    column-gap: 24px;
    grid-template-columns: 1fr auto; /* text | image */
  }
  .hiw-s2 .hiw-illus,
  .hiw-s3 .hiw-illus {
    align-self: end;
    justify-self: end;
    max-width: 360px;
    width: 44%;
  }
  .hiw-s3 .hiw-illus.hiw-illus-lg {
    max-width: 420px;
    width: 52%;
  }
}
@media (max-width: 767.98px) {
  .hiw-s2 .hiw-illus,
  .hiw-s3 .hiw-illus {
    justify-self: center;
    max-width: 520px;
    width: 86%;
  }
}

@media (min-width: 992px) {
  .hiw-cell {
    padding: 22px 22px 20px 22px;
  }
  .hiw-s1,
  .hiw-s4 {
    min-height: 420px;
  }
  .hiw-s3 {
    min-height: 320px;
  }
}

/* Reveal animation */
.hiw-reveal {
  opacity: 0;
  transform: translateY(26px);
}
.hiw-reveal.hiw-in {
  animation: hiwIn 0.7s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes hiwIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hiw-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hiw-card {
    transition: none !important;
  }
}

/* Mobile stacking for whole board */
@media (max-width: 991.98px) {
  .hiw-grid-1324 {
    grid-template-areas:
      "s1"
      "s2"
      "s3"
      "s4";
    grid-template-columns: 1fr;
  }
  .b-r {
    border-right: 0;
  }
  .hiw-s1,
  .hiw-s2,
  .hiw-s3 {
    border-bottom: 1px solid #eceff4;
  }
}

.transparent-saas {
  padding-bottom: 10rem !important;
}
.transparent-saas .stat-value {
  font-size: clamp(2.4rem, 4.2vw, 3rem) !important;
}

/* keep sections from hiding beneath a fixed/sticky header */
#privacy-policy,
#terms {
  background: #f6f7fb;
  padding: 5rem 0;
}
.policy-block {
  scroll-margin-top: 120px;
}

.policy-sidebar .nav-link {
  border-left: 2px solid transparent;
  color: #6b7280;
  padding: 0.6rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.policy-sidebar .nav-link:hover {
  color: #4b5563;
}
.policy-sidebar .nav-link.active {
  border-left-color: #7c3aed;
  color: #5b21b6;
  font-weight: 600;
}

/* == Contact Page == */
#contact {
  background: #f6f7fb;
  padding: 5rem 0;
}
.contact-card {
  background: radial-gradient(
      1200px 600px at 20% -20%,
      rgba(130, 120, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 90% 110%,
      rgba(120, 200, 255, 0.2),
      transparent 55%
    ),
    linear-gradient(180deg, #1a1c2b 0%, #191a27 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-input {
  background: rgba(10, 12, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  padding: 0.9rem 1rem;
}
.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contact-input:focus {
  background: rgba(10, 12, 25, 0.92);
  border-color: rgba(168, 126, 255, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(121, 82, 255, 0.15);
  color: #fff;
}
.btn-primary {
  background: linear-gradient(90deg, #7c5cff, #7f5bff);
  border: none;
}
.btn-primary:hover {
  filter: brightness(1.05);
}
