: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 {
  height: 100%;
  /* 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";
}

img {
  max-width: 100%;
}

/* ===== Animated Background ===== */
.banner-image {
  margin: 0 auto;
}
.hero-wrap {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  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));
}

/* subtle animated grid */
.bg-layer::before {
  content: "";
  position: absolute;
  inset: -200% -200%;
  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;
  transform: rotate(0.001deg);
  animation: gridMove 40s linear infinite;
}

@keyframes gridMove {
  to {
    transform: translate3d(-120px, -120px, 0) rotate(0.001deg);
  }
}

/* floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.orb.o1 {
  width: 180px;
  height: 180px;
  left: 6%;
  top: 30%;
  background: #7c3aed;
  animation: floatY 4s ease-in-out infinite alternate;
}

.orb.o2 {
  width: 140px;
  height: 140px;
  right: 12%;
  top: 18%;
  background: #06b6d4;
  animation: floatX 5s ease-in-out infinite alternate;
}

.orb.o3 {
  width: 220px;
  height: 220px;
  right: 8%;
  bottom: 10%;
  background: #6366f1;
  animation: floatXY 6s ease-in-out infinite alternate;
}

@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 {
  background: transparent;
  backdrop-filter: saturate(130%) blur(6px);
}

.navbar .nav-link {
  color: var(--muted);
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: #ffffff;
}
.navbar-toggler {
  border: 0;
  padding: 0;
}
.navbar-toggler svg {
  width: auto;
  height: 40px;
}
.navbar-toggler svg path {
  stroke: #ffffff;
}
.navbar-toggler:focus {
    box-shadow: none;
}

.btn-rounded {
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  font-weight: 700;
}

.btn-brand {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: white;
  border: 0;
}

.btn-brand:hover {
  filter: brightness(0.95);
  color: #fff;
}

/* ===== Hero copy ===== */
.hero {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  padding-bottom: 4rem;
}

.lead-big {
  color: var(--muted);
  max-width: 980px;
}

.title-xl {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.2px;
}

.grad-text {
  background: linear-gradient(90deg, #fff, #c7c9ff 40%, #b1b6ff 60%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* animated reveal */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s ease forwards;
}

.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 {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.cta .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(
    75% 75% at 30% 30%,
    #ffffff,
    #e9ddff 60%,
    #a78bfa
  );
  color: #392168;
}

.cta .txt {
  padding: 0.4rem 0.9rem;
  color: #f6f7ff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.cta:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.75;
  font-size: 0.85rem;
  color: var(--muted);
}

/* 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 {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7c3aed;
  font-size: 0.9rem;
}

/* Cards */
#platform-overview .feature-card {
  border: 0;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(8, 15, 35, 0.06);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#platform-overview .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8, 15, 35, 0.12);
}

/* Visual frame (light gray like your mock) */
#platform-overview .visual {
  background: #eef0f4;
  border-radius: 1rem;
  padding: 0.75rem;
  height: 230px;
  position: relative;
  overflow: hidden;
  perspective: 800px;
  transform-style: preserve-3d;
  box-shadow: inset 0 0 0 1px rgba(8, 15, 35, 0.05);
}

/* 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 {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s ease;
  align-items: stretch;
}
#testimonials .t-item {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
}
@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 {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 10px 25px rgba(12, 18, 28, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(14px);
}
#testimonials .t-card blockquote {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  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 {
  transform: scale(1.06);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Faded edges to hint scrolling */
#testimonials .t-viewport {
  padding: 0.25rem 2.75rem;
}
.t-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  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 {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem; /* big rounded corners */
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.25rem, 4vw, 5rem);
  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);
  box-shadow: 0 30px 60px rgba(7, 12, 24, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* animated grid overlay */
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -200% -200%;
  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;
  transform: rotate(0.001deg);
  animation: ctaGrid 38s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}
@keyframes ctaGrid {
  to {
    transform: translate3d(-140px, -140px, 0) rotate(0.001deg);
  }
}

/* floating orbs for depth */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.35;
  mix-blend-mode: screen;
}
.cta-orb.o1 {
  width: 180px;
  height: 180px;
  left: 6%;
  top: 20%;
  background: #7c3aed;
  animation: orbY 3s ease-in-out infinite alternate;
}
.cta-orb.o2 {
  width: 140px;
  height: 140px;
  right: 10%;
  top: 18%;
  background: #06b6d4;
  animation: orbX 4s ease-in-out infinite alternate;
}
.cta-orb.o3 {
  width: 220px;
  height: 220px;
  right: 6%;
  bottom: 8%;
  background: #6366f1;
  animation: orbXY 5s ease-in-out infinite alternate;
}
@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 {
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(1.8rem, 3.2vw + 0.5rem, 3.5rem);
  color: #ffffff;
}
.cta-sub {
  color: #c6cbe3;
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.25rem);
}

/* CTA pill button */
.btn-cta {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(124, 58, 237, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* 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 {
  line-height: 1.15;
  font-size: clamp(1.8rem, 2.6vw + 1rem, 3.2rem);
  letter-spacing: 0.1px;
}
#benefits-intro .benefits-sub {
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.35rem);
}

/* Eyebrow style with subtle gradient underline */
.benefits-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #7c3aed;
  position: relative;
}
.benefits-eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.15),
    rgba(124, 58, 237, 0.55),
    rgba(124, 58, 237, 0.15)
  );
  animation: benefitsShine 2.6s ease-in-out infinite;
}
@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 {
  line-height: 1.15;
  letter-spacing: 0.1px;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 3.2rem);
}
#built-for-optimization .opt-sub {
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.35rem);
}

/* Eyebrow with animated underline */
.opt-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #7c3aed;
  position: relative;
}
.opt-eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.15),
    rgba(124, 58, 237, 0.55),
    rgba(124, 58, 237, 0.15)
  );
  animation: optShimmer 2.6s ease-in-out infinite;
}
@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-radius: 28px;
  border: 1px solid var(--panel-brd);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
#benefits-cards .bcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(20, 24, 36, 0.14);
}
.bcard-title {
  font-weight: 800;
  font-size: clamp(1.35rem, 0.9rem + 0.9vw, 1.9rem);
  color: var(--ink);
}
.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;
  border-width: 2px;
  padding: 0.6rem 1.15rem;
  font-weight: 600;
  background: #fff;
}
.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 {
  height: 56px;
  padding: 0 16px;
  border-bottom: 1px solid #eceff4;
  font-size: 1rem;
  color: #1b2333;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot-teal {
  background: #14b8a6;
}

/* ---- Bars with Y-axis ---- */
.bars-wrap {
  padding: 12px 12px 8px 12px;
}
.bars-grid {
  display: grid;
  grid-template-columns: 64px 1fr; /* left axis column */
  gap: 8px;
  align-items: end;
}
.yaxis {
  height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 6px 36px 4px; /* leave room for bottom labels gridline */
  color: #9aa3b2;
  font-size: 0.9rem;
  user-select: none;
}
.bars {
  height: 176px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 14px;
  padding: 0 8px 0 2px;
  position: relative;
}
/* bottom grid line */
.bars::after {
  content: "";
  position: absolute;
  left: -64px;
  right: 0;
  bottom: 36px;
  height: 1px;
  background: #edf1f6;
}
.bars span {
  height: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--violet-2), var(--violet) 65%);
  box-shadow: inset 0 -12px 18px rgba(255, 255, 255, 0.25);
  animation: grow 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  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 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  text-align: center;
  margin-top: 14px;
  padding: 0 8px 8px 2px;
  color: #a1a9ba;
  font-size: 0.9rem;
}

/* ---- Gauge with labels + needle ---- */
.gauge-wrap {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.gauge {
  width: 260px;
  height: 130px;
  border-radius: 130px 130px 0 0;
  position: relative;
  background: conic-gradient(from 180deg, #dfe4ec 0 180deg);
  mask: radial-gradient(closest-side, transparent 64%, #000 65%);
  -webkit-mask: radial-gradient(closest-side, transparent 64%, #000 65%);
}
.gauge::before {
  /* purple progress */
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 180deg,
    #7f54ff var(--progress, 0.62turn),
    #dfe4ec var(--progress, 0.62turn) 180deg
  );
  mask: radial-gradient(closest-side, transparent 64%, #000 65%);
  -webkit-mask: radial-gradient(closest-side, transparent 64%, #000 65%);
}
/* center knob */
.gauge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7f54ff;
  box-shadow: 0 0 0 8px rgba(127, 84, 255, 0.18);
}
/* needle */
.gauge .needle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 110px;
  height: 2px;
  transform-origin: 0 100%;
  background: linear-gradient(90deg, #7f54ff, #b39cff);
  transform: rotate(calc(-180deg + (var(--progress, 0.62turn) * 360)));
  border-radius: 2px;
}
.gauge .needle::after {
  /* little triangle tip */
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #7f54ff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  border-radius: 1px;
}
.gauge-labels {
  font-size: 0.95rem;
  color: #8892a6;
}
.gauge-labels .fw-bold {
  color: #1b2333;
}

/* Reveal */
#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 {
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.35rem);
  color: #68758b !important;
}

/* ---------- Icon tile with breathing, shimmer & ripple ---------- */
#benefits-list .benefit-icon {
  position: relative;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  overflow: hidden;
  background: radial-gradient(120% 120% at 20% 15%, #b296ff, #7c3aed 58%);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateZ(0);
  animation: breathe 4.5s ease-in-out infinite;
}
/* shimmer sweep */
#benefits-list .benefit-icon .shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  filter: blur(2px);
  opacity: 0;
}
#benefits-list .benefit:hover .shine {
  animation: shine 1.15s ease;
  opacity: 0.7;
}
/* ripple on hover */
#benefits-list .benefit-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  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 {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.34);
}

/* ---------- Illustration wrapper (floating + subtle yaw) ---------- */
#benefits-list .illu-wrap {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 18px 40px rgba(10, 15, 30, 0.12));
}
#benefits-list .illustration {
  border-radius: 12px;
  display: block;
  animation: floatY 7s ease-in-out infinite, yaw 10s ease-in-out infinite;
  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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #eceff4;
  box-shadow: 0 10px 24px rgba(12, 18, 28, 0.06);
  font-weight: 600;
  color: #21242c;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  will-change: transform, box-shadow;
  animation: floatY 8s ease-in-out infinite;
}

/* Hover: lift + glow + shimmer */
#pill-strip .pill::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(124, 58, 237, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  opacity: 0;
}
#pill-strip .pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 18, 28, 0.12);
  border-color: #e4e8f2;
}
#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 {
  line-height: 1.2;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 3.1rem);
  letter-spacing: 0.01em;
}
#outcome-section .outcome-sub {
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.3rem);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Eyebrow with underline shimmer */
.outcome-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #7c3aed;
  position: relative;
}
.outcome-eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.2),
    rgba(124, 58, 237, 0.6),
    rgba(124, 58, 237, 0.2)
  );
  animation: outcomeShimmer 2.8s ease-in-out infinite;
}
@keyframes outcomeShimmer {
  50% {
    width: 150px;
    filter: brightness(1.3);
  }
}

/* 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 {
    transition: none !important;
    transform: 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 {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 2vw, 2.25rem);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 42px rgba(16, 18, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* moving glow */
#outcome-stats .spotlight {
  position: absolute;
  inset: -40% -40%;
  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%
    );
  animation: sweep 18s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes sweep {
  to {
    transform: translate(-8%, -8%) rotate(0.001deg);
  }
}

/* hover tilt + glow */
#outcome-stats .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(16, 18, 26, 0.28);
  border-color: rgba(255, 255, 255, 0.12);
}
#outcome-stats .stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(140, 110, 255, 0.2);
  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-weight: 800;
  line-height: 1;
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  letter-spacing: 0.5px;
  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 {
  margin: 0;
  color: #cdd3e4;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.15rem);
}

/* motion safety */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    animation: 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);
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  cursor: pointer;

  /* slide-in/out */
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.2s ease;

  /* progress ring */
  background-image: conic-gradient(
      #ffffff00 0 var(--p, 0deg),
      var(--ring) var(--p, 0deg) 360deg
    ),
    var(--grad);
  background-origin: border-box;
  background-clip: content-box, border-box;
  padding: 3px; /* ring thickness */
}
.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 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: bump 0.28s ease-out 1;
}
@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 {
    transition: none;
    animation: none;
  }
}

/* === Card shell === */
#cta-benchmark {
  padding: 5rem 0;
}
#cta-benchmark .cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(2rem, 3.6vw, 4rem) clamp(1.25rem, 3vw, 3rem);
  background: linear-gradient(180deg, #f2ecff 0%, #edf1ff 100%);
  border: 1px solid #ece8ff;
  box-shadow: 0 24px 60px rgba(60, 40, 120, 0.12);
  isolation: isolate; /* keep veil below content */
}

/* Gradient veil that slowly sweeps for depth */
#cta-benchmark .cta-veil {
  position: absolute;
  inset: -40% -10%;
  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%
    );
  animation: veilMove 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes veilMove {
  50% {
    transform: translateY(-3%) translateX(-2%);
  }
}

/* Title / copy sizes */
#cta-benchmark .cta-title {
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.8rem);
  letter-spacing: 0.02em;
  color: #000000;
}
#cta-benchmark .cta-copy {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.15rem);
}

/* CTA button */
#cta-benchmark .btn-cta {
  --grad: linear-gradient(135deg, #a78bfa, #7c3aed 68%);
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
#cta-benchmark .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(124, 58, 237, 0.45);
  filter: brightness(1.03);
}

/* Floating rounded squares & typographic hint */
#cta-benchmark .shape {
  position: absolute;
  z-index: 0;
  opacity: 0.35;
  backdrop-filter: blur(0.5px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 22px rgba(30, 30, 60, 0.08);
  border-radius: 14px;
  animation: floaty 8s ease-in-out infinite;
}
#cta-benchmark .shape-a {
  width: 84px;
  height: 64px;
  left: 26%;
  top: 160px;
  animation-delay: 0.2s;
}
#cta-benchmark .shape-b {
  width: 70px;
  height: 60px;
  left: 7%;
  bottom: 90px;
  animation-delay: 1.1s;
}
#cta-benchmark .shape-c {
  width: 70px;
  height: 80px;
  right: 9%;
  bottom: 80px;
  animation-delay: 0.6s;
}
#cta-benchmark .shape-d {
  width: 72px;
  height: 56px;
  right: 28%;
  top: 340px;
  animation-delay: 1.6s;
}
/* 'Aa' outline on the right like the reference */
#cta-benchmark .shape-e {
  position: absolute;
  right: 12%;
  top: 110px;
  z-index: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.25;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: #7c3aed;
  -webkit-text-stroke: 2px rgba(124, 58, 237, 0.35);
  text-shadow: none;
  animation: floaty 10s ease-in-out infinite;
}

@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 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #7c3aed;
}

/* Accordion shell: divider style */
#faq .faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #eceff4;
  background: #fff;
}
#faq .faq-accordion .accordion-item:first-child {
  border-top: 1px solid #eceff4;
}

/* Button layout */
#faq .accordion-button {
  background: #fff;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: clamp(1.05rem, 0.6vw + 1rem, 1.35rem);
  color: #0f1225;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
#faq .accordion-button.collapsed {
  color: #101325;
}
#faq .accordion-button:focus {
  box-shadow: none;
}

/* Purple lead bar */
#faq .accordion-button .lead-bar {
  width: 6px;
  height: 16px;
  border-radius: 6px;
  background: #7c3aed;
  display: inline-block;
}

/* Chevron override (Bootstrap uses ::after) */
#faq .accordion-button::after {
  background-image: none !important;
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  margin-left: auto;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
#faq .accordion-button:not(.collapsed)::after {
  transform: rotate(-135deg);
  border-color: #7c3aed;
}

/* Body copy */
#faq .accordion-body {
  padding: 0 0 1.25rem 1.65rem;
  color: #5f6b82;
  font-size: 1.05rem;
  max-width: 56rem;
}

/* 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 {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Eyebrow */
#insights {
  background: #f7f8fb;
  padding: 5rem 0;
}
#insights .insight-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #7c3aed;
  font-size: 0.95rem;
}

/* Figure wrapper with glow rim */
#insights .insight-figure {
  position: relative;
}
#insights .insight-img {
  border-radius: 1.35rem;
  display: block;
}
#insights .figure-glow {
  position: absolute;
  inset: -10px;
  border-radius: 1.6rem;
  pointer-events: none;
  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%
    );
  filter: blur(18px);
  opacity: 0.9;
}

/* Insight list cards */
#insights .insight-card {
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 18px;
  padding: 1.05rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 14px 34px rgba(12, 18, 28, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}
#insights .insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(12, 18, 28, 0.12);
  border-color: #e3e7f0;
}
#insights .insight-card .dot {
  display: inline-grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #7c3aed 70%);
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* 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 {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Card */
#contact-inquiry {
  background: #f6f7fb;
  padding-bottom: 5rem;
}
#contact-inquiry .contact-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(1.8rem, 3.2vw, 2.6rem);
  background: radial-gradient(
    120% 140% at 8% 12%,
    #1e2340 0%,
    #12182b 55%,
    #101424 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(10, 14, 30, 0.3);
}
/* Animated spotlight */
#contact-inquiry .spot {
  position: absolute;
  inset: -35% -10%;
  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%
    );
  animation: spotMove 26s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes spotMove {
  50% {
    transform: translate(-3%, -2%);
  }
}

/* Dark form look */
#contact-inquiry .form-dark {
  background: #0c1120;
  color: #e9ecf5;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
#contact-inquiry .form-dark::placeholder {
  color: #6b7390;
}
#contact-inquiry .form-dark:focus {
  border-color: #7c3aed;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.2);
}
#contact-inquiry .form-dark-textarea {
  resize: vertical;
}

/* Character counter */
#contact-inquiry .charcount {
  position: absolute;
  right: 0.5rem;
  bottom: 0.35rem;
  color: #9aa3c1;
  font-size: 0.9rem;
}

/* Submit button (pill) */
#contact-inquiry .btn-cta {
  --grad: linear-gradient(135deg, #a78bfa, #7c3aed 65%);
  background: var(--grad);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
#contact-inquiry .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(124, 58, 237, 0.45);
  filter: brightness(1.03);
}

/* 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 {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  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 {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  #contact-inquiry .spot {
    animation: none !important;
  }
}

/* Footer links */
#site-footer {
  padding-top: 5rem;
  padding-bottom: 1rem;
}
#site-footer .footer-link {
  color: #151821;
  font-weight: 600;
}
#site-footer .nav .footer-link {
  color: #161a23;
  opacity: 0.9;
}
#site-footer .footer-link:hover {
  color: #7c3aed;
}

/* Social icons */
#site-footer .social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid #e6e9f0;
  color: #222;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease;
}
#site-footer .social:hover {
  color: #7c3aed;
  border-color: #d8ccff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.14);
}

/* Inline icons (address/email/phone) */
#site-footer .fi {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e6e9f0;
  color: #7b8497;
}

/* Slide-up reveal */
#site-footer .reveal-up {
  opacity: 0;
  transform: translateY(18px);
}
#site-footer .reveal-up.in {
  animation: fSlideUp 0.55s cubic-bezier(0.22, 0.9, 0.22, 1) forwards;
}
@keyframes fSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #site-footer .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Card shell */
#smart-procurement {
  background: #f7f8fb;
  padding-bottom: 5rem;
}
#smart-procurement .spa-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eceff4;
  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);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
#smart-procurement .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(124, 58, 237, 0.45);
  filter: brightness(1.03);
}

/* Table */
#smart-procurement .spa-table thead th {
  border: 0;
  color: #7a8399;
  font-weight: 700;
  font-size: 0.9rem;
}
#smart-procurement .spa-table tbody td {
  border: 0;
  padding-block: 0.9rem;
}
#smart-procurement .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px #fff, 0 1px 6px rgba(12, 18, 28, 0.15);
}

/* Compliance mini bars */
#smart-procurement .mini-bar {
  --bg: #e9edf6;
  --fg: #22c55e; /* default green */
  height: 10px;
  border-radius: 999px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#smart-procurement .mini-bar::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  width: 80%;
  max-width: calc(100% - 4px);
  background: var(--fg);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}
#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 {
  font-weight: 700;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
}
#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 {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
