/* ============================================================
   KurippEdu — Landing Page Styles
   ============================================================ */
:root {
  --violet: #6d49f8;
  --violet-d: #5a35e0;
  --violet-l: #8a6bff;
  --grad: linear-gradient(135deg, #6d49f8 0%, #9b6bff 100%);
  --grad-soft: linear-gradient(135deg, #f3f0ff 0%, #eef4ff 100%);
  --ink: #13132b;
  --ink-2: #3a3a55;
  --muted: #6b7280;
  --line: #e9e9f2;
  --bg: transparent;
  --bg-alt: transparent;
  --green: #22c55e;
  --red: #ef4444;
  --gold: #f5a623;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(24, 24, 60, .05);
  --shadow: 0 14px 40px rgba(70, 50, 160, .10);
  --shadow-lg: 0 24px 60px rgba(70, 50, 160, .16);
  --maxw: 1540px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Fluid Scaling for Laptops/Desktops: 
   Makes the webpage zoom perfectly to fit 14", 15.6", and 16" screens 
   1.0416vw means 1rem = 16px at 1536px width (Standard 15.6") */
@media (min-width: 1024px) {
  html {
    font-size: clamp(12px, 1.0416vw, 18px);
  }
}

/* never allow sideways panning — matches working reference (kurippeduerp/styles.css) */
/* clip (not hidden) doesn't create a scroll container, so position: sticky keeps working */
html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  line-height: 1.18;
  color: var(--ink)
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.container.narrow {
  max-width: 820px
}

.center {
  text-align: center
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .25s cubic-bezier(0.16, 1, 0.3, 1), background-color .25s, border-color .25s, color .25s;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(109, 73, 248, .3)
}

.btn-primary::after,
.btn-light::after,
.btn-ghost-light::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-20deg);
  animation: shine 4.2s ease-in-out infinite;
}

@keyframes shine {

  0%,
  60% {
    left: -80%;
  }

  80%,
  100% {
    left: 130%;
  }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(109, 73, 248, .4)
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm)
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: 0 8px 20px rgba(109, 73, 248, .12)
}

.btn-outline {
  background: transparent;
  color: var(--violet);
  border-color: var(--violet)
}

.btn-outline:hover {
  background: var(--violet);
  color: #fff;
  transform: translateY(-2px)
}

.btn-light {
  background: #fff;
  color: var(--violet);
  border: 1px solid rgba(109, 73, 248, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05)
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(109, 73, 248, .15)
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.1) !important;
}

.btn.full {
  width: 100%
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(24, 24, 60, .07);
  border-color: var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 20px;
  font-family: "Plus Jakarta Sans"
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff
}

.brand .accent {
  color: var(--violet)
}

.nav-links {
  display: flex;
  gap: 26px
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color .2s
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width .3s var(--ease)
}

.nav-links a:hover {
  color: var(--violet)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 75% -10%, #efeaff 0%, transparent 60%),
    radial-gradient(700px 400px at 100% 20%, #e7efff 0%, transparent 55%);
  z-index: -1
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center
}

.pill-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 22px;
  white-space: nowrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--violet);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.pill svg {
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--violet), #a88bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 22px 0 30px
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* Laptop / phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.laptop {
  width: 100%;
  max-width: 470px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12))
}

.laptop-screen {
  background: #fff;
  border: 10px solid #1c1c34;
  border-radius: 16px 16px 0 0;
  overflow: hidden
}

.laptop-base {
  height: 14px;
  background: linear-gradient(#d7d9e8, #b9bcd0);
  border-radius: 0 0 14px 14px;
  margin: 0 -14px;
  position: relative
}

.laptop-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #9a9db4;
  border-radius: 0 0 8px 8px
}

.mini-dash {
  padding: 14px;
  background: linear-gradient(180deg, #fbfaff, #f4f6ff)
}

.mini-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px
}

.mini-logo {
  font-weight: 800;
  font-size: 13px;
  color: var(--ink)
}

.mini-logo b {
  color: var(--violet)
}

.mini-title {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 12px
}

.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 6px;
  text-align: left
}

.mini-card small {
  font-size: 8px;
  color: var(--muted);
  display: block
}

.mini-card strong {
  font-size: 13px;
  color: var(--ink)
}

.mini-charts {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px
}

.mini-bars,
.mini-donut {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  display: grid;
  place-items: center
}

.mini-bars svg {
  width: 100%;
  height: 80px
}

.mini-donut svg {
  width: 72px;
  height: 72px
}

.bar {
  fill: url(#g)
}

svg .bar {
  fill: #7c5cff
}

.phone {
  position: absolute;
  right: -6px;
  bottom: -26px;
  width: 120px;
  background: #1c1c34;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, .15);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.phone-screen {
  background: linear-gradient(180deg, #fbfaff, #eef1ff);
  border-radius: 13px;
  padding: 12px 10px;
  min-height: 230px
}

.phone-logo {
  font-size: 10px;
  font-weight: 800;
  color: var(--ink)
}

.phone-logo b {
  color: var(--violet)
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 12px 0
}

.phone-grid span {
  height: 24px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line)
}

.phone-donut {
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px
}

.phone-donut svg {
  width: 78px;
  height: 78px
}

/* ---------- Sections ---------- */
.section {
  padding: 72px 0
}

.section-alt {
  background: var(--bg-alt)
}

.section-title {
  text-align: center;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.4px;
  background: linear-gradient(135deg, var(--violet), #a88bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Purple gradient text (theme accent for inline words) */
.grad-text {
  background: linear-gradient(to right, #7c3aed, #9333ea, #c026d3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Premium flowing text shine sweep, synchronized with button transition */
.hero-shine-text {
  background: linear-gradient(120deg, #7c3aed 0%, #c026d3 33%, #ffffff 50%, #c026d3 67%, #7c3aed 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTextShine 4.5s infinite linear;
}

@keyframes heroTextShine {
  0% {
    background-position: 300% center;
  }

  30% {
    background-position: 0% center;
  }

  100% {
    background-position: 0% center;
  }
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
  font-size: 16px
}

.section-title+.section-sub {
  margin-top: -2px
}

.section .section-title {
  margin-bottom: 42px
}

.section .section-sub {
  margin-top: -32px;
  margin-bottom: 42px
}

/* ---------- Institutions ---------- */
.inst-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px
}

.inst-card {
  text-align: center
}

.inst-img {
  position: relative;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease)
}

.inst-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.inst-ico {
  position: relative;
  font-size: 34px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25))
}

.inst-card:hover .inst-img {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow)
}

.inst-card h4 {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2)
}

.grad-1 {
  background: linear-gradient(135deg, #6d49f8, #9b6bff)
}

.grad-2 {
  background: linear-gradient(135deg, #3b82f6, #60a5fa)
}

.grad-3 {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8)
}

.grad-4 {
  background: linear-gradient(135deg, #8b5cf6, #c084fc)
}

.grad-5 {
  background: linear-gradient(135deg, #f59e0b, #fbbf24)
}

/* ---------- Stats ---------- */
.stats-band {
  background: var(--grad-soft);
  border-block: 1px solid var(--line)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 0
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center
}

.stat-ico {
  font-size: 30px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm)
}

.stat-num {
  font-size: 30px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans";
  color: var(--ink);
  display: block;
  line-height: 1.1
}

.stat p {
  font-size: 14px;
  color: var(--muted)
}

/* ---------- Lifecycle ---------- */
.lifecycle,
.process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap
}

.lc-step,
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 108px;
  text-align: center;
  transition: transform .3s var(--ease)
}

.lc-step:hover,
.proc-step:hover {
  transform: translateY(-6px)
}

.lc-ico,
.proc-ico {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  font-size: 26px;
  color: var(--violet);
  box-shadow: var(--shadow-sm);
  transition: .3s
}

.lc-step:hover .lc-ico,
.proc-step:hover .proc-ico {
  background: var(--grad);
  box-shadow: var(--shadow)
}

.lc-step p,
.proc-step p {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2)
}

.lc-arrow,
.proc-arrow {
  color: var(--violet-l);
  font-size: 22px;
  font-weight: 700
}

/* ---------- Modules (alternating zig-zag rows) ---------- */
.zz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  margin-top: 54px
}

.zz-row:first-of-type {
  margin-top: 46px
}

.zz-row.reverse .zz-media {
  order: 2
}

.zz-row.reverse .zz-text {
  order: 1
}

.zz-media {
  display: flex;
  justify-content: center
}

.zz-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(155deg, #f3efff, #eaf1ff);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s
}

.zz-row:hover .zz-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.zz-card svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(80, 50, 180, .14))
}

.zz-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-family: "Plus Jakarta Sans";
  font-size: 15px;
  margin-bottom: 14px
}

.zz-text h3 {
  font-size: clamp(21px, 2.4vw, 27px);
  margin-bottom: 12px
}

.zz-text p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px
}

.zz-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.zz-text li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--ink-2)
}

.zz-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800
}

/* ---------- Dashboard Carousel (3D coverflow) ---------- */
.dash-carousel {
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  overflow: hidden;
  position: relative;
  padding: 40px 0 10px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.dash-carousel.dragging {
  cursor: grabbing;
}

.dash-carousel-track {
  position: relative;
  height: 500px;
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.dash-slide {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 44vw;
  min-width: 600px;
  max-width: 820px;
  margin-left: calc(min(-22vw, -300px));
  /* centers the slide */
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) translateZ(-700px) rotateY(0) scale(0.7);
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    filter 0.95s ease;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

/* soft ground shadow that grows under the focused slide */
.dash-slide::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -26px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(43, 22, 100, 0.28), transparent 70%);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.95s ease, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.dash-slide.active {
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  transform: translateX(0) translateZ(0) rotateY(0) scale(1);
  filter: none;
}

.dash-slide.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.dash-slide.prev {
  opacity: 0.95;
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(-58%) translateZ(-280px) rotateY(34deg) scale(0.92);
  filter: brightness(0.9) blur(1px);
}

.dash-slide.next {
  opacity: 0.95;
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(58%) translateZ(-280px) rotateY(-34deg) scale(0.92);
  filter: brightness(0.9) blur(1px);
}

.dash-slide.far-prev {
  opacity: 0.5;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(-100%) translateZ(-520px) rotateY(42deg) scale(0.86);
  filter: brightness(0.8) blur(2.5px);
}

.dash-slide.far-next {
  opacity: 0.5;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(100%) translateZ(-520px) rotateY(-42deg) scale(0.86);
  filter: brightness(0.8) blur(2.5px);
}

.dash-slide.hidden-left {
  opacity: 0;
  z-index: 1;
  transform: translateX(-130%) translateZ(-700px) rotateY(48deg) scale(0.8);
}

.dash-slide.hidden-right {
  opacity: 0;
  z-index: 1;
  transform: translateX(130%) translateZ(-700px) rotateY(-48deg) scale(0.8);
}

.dash-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(30, 15, 80, 0.18);
  border: 1px solid var(--line);
  background: #fff;
  display: block;
}

/* navigation dots */
.dash-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.dash-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  border: none;
  padding: 0;
  background: #d8d0f5;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-dot:hover {
  background: #b3a2ee;
}

.dash-dot.active {
  width: 30px;
  background: linear-gradient(135deg, var(--violet), #a88bff);
  box-shadow: 0 2px 10px rgba(109, 73, 248, 0.45);
}

@media (max-width: 700px) {
  .dash-carousel {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
  }

  .dash-carousel-track {
    height: 58vw;
    perspective: 1100px;
  }

  .dash-slide {
    width: 86vw;
    min-width: 0;
    margin-left: -43vw;
  }

  .dash-slide::after {
    bottom: -14px;
    height: 22px;
  }
}

/* ---------- Integrations ---------- */
.integrations {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px
}

.int-item {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 8px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s
}

.int-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.int-ico {
  font-size: 26px
}

.int-item p {
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  margin-top: 8px
}

/* ---------- Security ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px
}

.sec-item {
  text-align: center
}

.sec-ico {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  font-size: 30px;
  box-shadow: var(--shadow-sm);
  transition: .3s
}

.sec-item:hover .sec-ico {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.sec-item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2)
}

/* ---------- Comparison ---------- */
.compare-showcase {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
  transition: box-shadow 0.4s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}

.compare-showcase>* {
  position: relative;
  z-index: 2;
}

.compare-showcase:hover {
  box-shadow: var(--shadow-lg);
}

.compare-showcase::before,
.compare-showcase::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  background: var(--grad);
  z-index: 0;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.compare-showcase::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translate(-30px, -30px);
}

.compare-showcase::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  transform: translate(30px, 30px);
}

.compare-showcase:hover::before,
.compare-showcase:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px
}

.compare th,
.compare td {
  padding: 18px 26px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px
}

.compare thead th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--ink)
}

.compare th.hl,
.compare td:last-child {
  text-align: center;
  background: rgba(109, 73, 248, .05);
  color: var(--violet);
  font-weight: 600
}

.compare th.hl {
  color: var(--violet)
}

.compare td:nth-child(2) {
  text-align: center;
  color: var(--muted)
}

.compare .yes {
  color: var(--green);
  font-weight: 700
}

.compare .no {
  color: var(--red);
  font-weight: 700
}

.compare .neutral {
  color: var(--muted)
}

.compare tbody tr:hover {
  background: rgba(109, 73, 248, 0.035)
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.price-card.popular {
  border: 2px solid var(--violet);
  box-shadow: var(--shadow);
  transform: translateY(-8px)
}

.price-card.popular:hover {
  transform: translateY(-14px)
}

.badge-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(109, 73, 248, .4)
}

.price-ico {
  font-size: 30px
}

.price-card h3 {
  font-size: 22px;
  margin: 10px 0 6px
}

.price-for {
  font-weight: 600;
  color: var(--ink-2);
  font-size: 14px
}

.price-cap {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px
}

.price-card ul {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px
}

.price-card li {
  font-size: 14px;
  color: var(--ink-2)
}

.price-card li::first-letter {
  color: var(--green);
  font-weight: 700
}

/* ---------- Awards ---------- */
.awards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px
}

.award {
  text-align: center;
  transition: transform .3s var(--ease)
}

.award:hover {
  transform: translateY(-6px)
}

.award-ico {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: linear-gradient(160deg, #1c1c34, #2a2a52);
  color: var(--gold);
  font-size: 40px;
  box-shadow: var(--shadow)
}

.award p {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2)
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 12px
}

.tcard blockquote {
  font-size: 14.5px;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 18px
}

.tcard figcaption {
  display: flex;
  align-items: center;
  gap: 12px
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 14px
}

.tcard figcaption strong {
  display: block;
  font-size: 14px
}

.tcard figcaption small {
  color: var(--muted);
  font-size: 12.5px
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .3s
}

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: transparent
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-toggle {
  color: var(--violet);
  font-size: 22px;
  font-weight: 400;
  transition: transform .3s var(--ease);
  flex-shrink: 0
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg)
}

.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14.5px
}

/* ---------- CTA ---------- */
.cta-band {
  background: var(--grad);
  position: relative;
  overflow: hidden;
  padding: 54px 0
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 80% 120%, rgba(255, 255, 255, .18), transparent)
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap
}

.cta-copy h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px)
}

.cta-copy p {
  color: rgba(255, 255, 255, .9);
  margin: 10px 0 22px
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.cta-form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, .12);
  padding: 8px;
  border-radius: 14px;
  backdrop-filter: blur(6px)
}

.cta-form input {
  border: 0;
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 14px;
  min-width: 230px;
  outline: none
}

/* ---------- Footer ---------- */
/* ---------- Premium Footer ---------- */
.footer {
  background: #080b16;
  color: #b6b8d4;
  padding-top: 80px;
  padding-bottom: 24px;
}

.footer-grid-premium {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1.2fr) 1.8fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(109, 73, 248, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}

.footer-brand-title span.accent {
  color: var(--violet-l);
}

.footer-brand-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--violet-l);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: #8f92b2;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-links a:hover {
  background: var(--violet);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(109, 73, 248, 0.4);
}

/* Footer columns links */
.footer-col-premium h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-premium h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--violet-l);
  border-radius: 2px;
}

.footer-col-premium a {
  display: block;
  font-size: 14px;
  color: #8f92b2;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}

.footer-col-premium a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Contact block styles */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(109, 73, 248, 0.12);
  color: var(--violet-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-content {
  display: flex;
  flex-direction: column;
}

.footer-contact-main {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-main:hover {
  color: var(--violet-l);
}

.footer-contact-sub {
  font-size: 11.5px;
  color: #8f92b2;
  margin-top: 1px;
}

/* Value highlights grid */
.footer-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
}

.footer-badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.footer-badge-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(109, 73, 248, 0.25);
  transform: translateY(-2px);
}

.footer-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(109, 73, 248, 0.15);
  color: var(--violet-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-badge-text {
  display: flex;
  flex-direction: column;
}

.footer-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.footer-badge-subtitle {
  font-size: 11px;
  color: #8f92b2;
  margin-top: 1px;
}

/* Partnerships Recognized Banner */
.footer-rec-banner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-rec-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #8f92b2;
  text-transform: uppercase;
}

.footer-rec-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-rec-logo-img {
  height: 38px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.footer-rec-logo-img:hover {
  opacity: 1;
}

/* Sub-footer Bar */
.footer-bar-premium {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 0 0;
}

.footer-bar-inner-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #8f92b2;
}

.footer-bar-note {
  font-size: 13px;
  color: #b6b8d4;
  font-weight: 500;
}

.footer-legal-premium a {
  color: #8f92b2;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal-premium a:hover {
  color: #ffffff;
}

/* Responsiveness for premium footer */
@media (max-width: 1200px) {
  .footer-grid-premium {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid-premium {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand-desc {
    max-width: none;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-col-premium h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col-premium a:hover {
    padding-left: 0;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-badges-grid {
    grid-template-columns: 1fr;
  }

  .footer-bar-inner-premium {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- STORY: Hero → Lifecycle (scroll-pinned, shared visual) ---------- */
.story {
  position: relative;
  height: 640vh;
  background: var(--bg)
}

.story-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-top: 16vh;
  box-sizing: border-box;
}

.story-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ece8ff;
  z-index: 6
}

.story-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 10px rgba(124, 92, 255, .5);
  transition: width .12s linear
}

.story-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: center
}

.story-col-left {
  position: relative;
  min-height: 650px;
  z-index: 10;
}

.story-col-right {
  position: relative;
  min-height: 650px
}

/* hero copy (phase 1) */
.story-hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.story-hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.5px
}

.story-hero .lead {
  margin: 20px 0 26px
}

/* lifecycle step list (phase 2) */
.story-head {
  position: absolute;
  top: 96px;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 10
}

.story-head .section-title {
  margin-bottom: 0
}

/* phase-2 right side: changing screenshot (center) + step list (right) */
.lc-phase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
}

.lc-stage {
  order: 2;
  position: relative;
  flex: 1.3;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-stage-img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  border-radius: 14px;
  box-shadow: var(--clay-shadow-sm);
}

.lc-stage-img.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.story-steps {
  order: 1;
  flex: 0 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  max-width: 380px;
}

.story-steps-title {
  display: none;
}

/* Hiding old title */
.lc-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s, border-color .35s, transform .35s var(--ease), opacity .35s;
  transform: scale(0.95);
  opacity: 0.5;
}

.lc-step-item.active {
  border-color: var(--violet);
  background: var(--violet);
  box-shadow: 0 16px 36px rgba(109, 73, 248, 0.5);
  transform: translateX(-16px) scale(1.08);
  opacity: 1;
  z-index: 2;
}

.lc-tab-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  background: var(--grad-soft);
  color: var(--violet);
  transition: .3s var(--ease)
}

.lc-step-item.active .lc-tab-num {
  background: #fff;
  color: var(--violet)
}

.lc-tab-text b {
  display: block;
  font-size: 15px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans";
  transition: color .3s
}

.lc-step-item.active .lc-tab-text b {
  color: #fff;
}

.lc-tab-text small {
  font-size: 12.5px;
  color: var(--muted);
  transition: color .3s
}

.lc-step-item.active .lc-tab-text small {
  color: rgba(255, 255, 255, 0.8);
}

/* shared visual (right) — vertical SLIDE carousel (no fade) */
.story-visual {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.sv-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px;
  transform: translateY(-120%);
  transition: transform .75s var(--ease)
}

.sv-slide.sv-dash-slide {
  transform: translateY(0)
}

/* dashboard shown first (pre-JS) */
.sv-dash {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  transition: transform 0.2s var(--ease);
}

.hero-presentation-img {
  max-width: 580px;
  margin: 0 auto;
}

/* Presenter (phase 2) — sits in the LEFT column, explaining the steps on the right.
   Fades in as the lifecycle phase takes over (opacity driven from JS). */
.story-presenter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.lifecycle-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  transform: scale(2.25) translateX(8%);
  transform-origin: center;
  filter: drop-shadow(0 24px 48px rgba(24, 24, 60, .18));
}

/* Hide hero image when active step */
.sv-dash[data-active-step] .hero-presentation-img {
  opacity: 0 !important;
  pointer-events: none;
  transform: scale(1.1) !important;
}

.lc-illu {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 330px
}

.lc-illu svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(80, 50, 180, .16))
}

.lc-info {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px
}

.lc-step-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--violet)
}

.lc-info h3 {
  font-size: 23px;
  margin: 6px 0 8px
}

.lc-info p {
  font-size: 15px;
  color: var(--ink-2)
}

/* ---------- Full-page sections (one section per screen) ---------- */
.fullpage {
  /* fill exactly one screen below the 72px sticky header, so the next
     section never peeks in when a nav anchor jumps here */
  min-height: calc(100vh - 72px);
  scroll-margin-top: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullpage>.container {
  width: 100%
}

/* ---------- Modules (compact grid) ---------- */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px
}

.mod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease-out, border-color 0.15s ease-out, color 0.15s ease-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.mod-card:hover,
.mod-card.auto-highlight {
  transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out, color 0.5s ease-in-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.mod-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 30px rgba(109, 73, 248, 0.22) !important;
  border-color: var(--violet);
  z-index: 10;
  position: relative;
}

.mod-card.auto-highlight {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 30px rgba(109, 73, 248, 0.25) !important;
  border-color: var(--violet);
  background: var(--violet);
  color: #fff;
  z-index: 10;
  position: relative;
}

.mod-card.auto-highlight h4,
.mod-card.auto-highlight p {
  color: #fff;
}

.mod-card.auto-highlight .mod-ico {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.mod-ico {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--violet);
  margin-bottom: 14px;
  transition: background 0.15s ease-out, color 0.15s ease-out;
}

.mod-card:hover .mod-ico,
.mod-card.auto-highlight .mod-ico {
  transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.mod-ico svg {
  width: 22px;
  height: 22px;
  transition: color 0.15s ease-out;
}

.mod-card:hover .mod-ico svg,
.mod-card.auto-highlight .mod-ico svg {
  transition: color 0.5s ease-in-out;
}

.mod-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 700;
  transition: color 0.15s ease-out;
}

.mod-card:hover h4,
.mod-card.auto-highlight h4 {
  transition: color 0.5s ease-in-out;
}

.mod-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  transition: color 0.15s ease-out;
}

.mod-card:hover p,
.mod-card.auto-highlight p {
  transition: color 0.5s ease-in-out;
}

/* ---------- Implementation Process (hover-to-reveal cards) ---------- */
#process {
  position: relative;
}

#process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(58% 50% at 50% 42%, rgba(109, 73, 248, 0.10), transparent 70%);
}

#process .container {
  position: relative;
  z-index: 1;
}

.process-wrapper {
  position: relative;
  margin-top: 40px;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 36px;
  position: relative;
  z-index: 2;
  align-items: start;
}

.proc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  min-height: 210px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: default;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s var(--ease),
    background 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

/* number + icon pinned to the top corners; heading centers in the card */
.pc-top {
  position: absolute;
  top: 24px;
  left: 26px;
  right: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
}

.pc-num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s;
}

.pc-icon {
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 10px 10px rgba(109, 73, 248, 0.2));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.proc-card h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.4s;
}

.pc-line {
  width: 30px;
  height: 3px;
  background: var(--violet);
  border-radius: 3px;
  margin: 0 auto;
  transition: all 0.45s var(--ease);
}

/* description hidden by default, expands smoothly on hover / focus */
.pc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-body p {
  overflow: hidden;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.08s, transform 0.45s var(--ease) 0.08s, color 0.4s;
}

/* ---- pop-out state ---- */
.proc-card:hover,
.proc-card:focus-visible {
  transform: translateY(-12px) scale(1.05);
  background: var(--grad);
  border-color: transparent;
  z-index: 6;
  box-shadow: 0 30px 65px rgba(109, 73, 248, 0.42), 0 0 0 7px rgba(109, 73, 248, 0.10);
}

.proc-card:hover h4,
.proc-card:focus-visible h4 {
  color: #fff;
}

.proc-card:hover .pc-num,
.proc-card:focus-visible .pc-num {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
}

.proc-card:hover .pc-icon,
.proc-card:focus-visible .pc-icon {
  transform: translateY(-4px) scale(1.15);
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.25));
}

.proc-card:hover .pc-line,
.proc-card:focus-visible .pc-line {
  background: #fff;
  width: 46px;
  margin-bottom: 14px;
}

.proc-card:hover .pc-body,
.proc-card:focus-visible .pc-body {
  grid-template-rows: 1fr;
}

.proc-card:hover .pc-body p,
.proc-card:focus-visible .pc-body p {
  opacity: 1;
  transform: none;
  color: rgba(255, 255, 255, 0.92);
}

@media(max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* number + icon flow above the title instead of overlaying it */
  .pc-top {
    position: static;
    align-items: center;
    margin-bottom: 14px;
  }

  .pc-icon {
    font-size: 36px;
  }

  .proc-card {
    min-height: 0;
    padding: 24px 22px;
  }

  /* on touch layouts keep descriptions visible — no hover available */
  .pc-body {
    grid-template-rows: 1fr;
  }

  .pc-body p {
    opacity: 1;
    transform: none;
  }

  .pc-line {
    margin-bottom: 14px;
  }

  .proc-card:hover,
  .proc-card:focus-visible {
    transform: none;
  }
}

@media(prefers-reduced-motion: reduce) {

  .proc-card,
  .pc-body,
  .pc-body p,
  .pc-icon,
  .pc-line {
    transition: none;
  }

  .proc-card:hover,
  .proc-card:focus-visible {
    transform: none;
  }
}



/* ---------- Integrations (premium icon-card grid) ---------- */
.int-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 44px auto 0;
}

.int-card {
  --tint: 109, 73, 248;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  cursor: default;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

/* soft tinted wash that sweeps in on hover */
.int-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(var(--tint), 0.10), rgba(var(--tint), 0.02) 60%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.int-card-ico {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(var(--tint), 0.12);
  color: rgb(var(--tint));
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.45s var(--ease), color 0.45s var(--ease);
}

.int-card-ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.int-card-txt h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 3px;
  letter-spacing: -0.2px;
}

.int-card-txt p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.int-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--tint), 0.45);
  box-shadow: 0 18px 40px rgba(var(--tint), 0.18), 0 4px 12px rgba(15, 23, 42, 0.06);
}

.int-card:hover::before {
  opacity: 1;
}

.int-card:hover .int-card-ico {
  transform: scale(1.12) rotate(-4deg);
  background: rgb(var(--tint));
  color: #fff;
}

/* staggered entrance when the grid reveals */
.int-cards[data-reveal] .int-card {
  opacity: 0;
  transform: translateY(26px);
}

.int-cards[data-reveal].in .int-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.int-cards[data-reveal].in .int-card:nth-child(1) {
  transition-delay: 0.00s;
}

.int-cards[data-reveal].in .int-card:nth-child(2) {
  transition-delay: 0.06s;
}

.int-cards[data-reveal].in .int-card:nth-child(3) {
  transition-delay: 0.12s;
}

.int-cards[data-reveal].in .int-card:nth-child(4) {
  transition-delay: 0.18s;
}

.int-cards[data-reveal].in .int-card:nth-child(5) {
  transition-delay: 0.24s;
}

.int-cards[data-reveal].in .int-card:nth-child(6) {
  transition-delay: 0.30s;
}

.int-cards[data-reveal].in .int-card:nth-child(7) {
  transition-delay: 0.36s;
}

.int-cards[data-reveal].in .int-card:nth-child(8) {
  transition-delay: 0.42s;
}

.int-cards[data-reveal].in .int-card:nth-child(9) {
  transition-delay: 0.48s;
}

/* once revealed, hover lift takes over cleanly */
.int-cards[data-reveal].in .int-card:hover {
  transform: translateY(-6px);
  transition-delay: 0s;
}

@media (max-width: 1000px) {
  .int-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .int-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}



/* ---------- Security (Interactive Layout) ---------- */
.sec-interactive-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  margin-top: 20px;
  height: 500px;
  align-items: center
}

.sec-vertical-carousel {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.sec-vertical-carousel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 110px;
  margin-top: -55px;
  background: var(--grad);
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(109, 73, 248, 0.25);
  z-index: 0;
}

.sec-vertical-carousel .sec-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -55px;
  height: 110px;
  cursor: pointer;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s;
  padding: 20px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 20px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.sec-vertical-carousel .sec-card::before {
  display: none;
}

.sec-vertical-carousel .sec-card .sec-ico {
  margin: 0;
  flex-shrink: 0;
  background: var(--bg-2);
  transition: all .4s;
}

.sec-vertical-carousel .sec-card.active .sec-ico {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sec-vertical-carousel .sec-card h4 {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--ink) !important;
  transition: all .4s;
}

.sec-vertical-carousel .sec-card.active h4 {
  color: #fff !important;
}

.sec-vertical-carousel .sec-card p {
  margin-bottom: 0;
  display: none;
}

/* hide desc in carousel */

/* Transform states */
.sec-vertical-carousel .sec-card.active {
  opacity: 1;
  z-index: 3;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sec-vertical-carousel .sec-card.prev {
  opacity: 0.5;
  z-index: 2;
  transform: translateY(-130px) scale(0.95);
  pointer-events: auto;
}

.sec-vertical-carousel .sec-card.next {
  opacity: 0.5;
  z-index: 2;
  transform: translateY(130px) scale(0.95);
  pointer-events: auto;
}

.sec-vertical-carousel .sec-card.hidden-top {
  opacity: 0;
  z-index: 1;
  transform: translateY(-240px) scale(0.9);
}

.sec-vertical-carousel .sec-card.hidden-bottom {
  opacity: 0;
  z-index: 1;
  transform: translateY(240px) scale(0.9);
}

.sec-details-pane {
  padding: 20px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.sec-details-icon {
  font-size: 48px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--violet);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sec-details-title {
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 20px;
}

.sec-details-desc {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.75;
}

.sec-details-pane.updating {
  opacity: 0;
  transform: translateY(0);
}

.sec-details-pane.updating .sec-details-icon {
  transform: scale(0.8);
}

/* Security interactive layout — stack on mobile (fixed 400px/1fr grid overflows) */
@media (max-width: 900px) {
  .sec-interactive-layout {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }

  .sec-vertical-carousel {
    height: 380px;
  }

  .sec-details-pane {
    height: auto;
    padding: 8px 4px 16px;
    align-items: center;
    text-align: center;
  }

  .sec-details-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
    margin-bottom: 18px;
  }

  .sec-details-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .sec-details-desc {
    font-size: 15px;
    line-height: 1.65;
  }
}

.sec-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .5s, opacity .8s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  z-index: 1;
}

.sec-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--grad);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  transition: width .6s cubic-bezier(0.25, 1, 0.5, 1), height .6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.sec-card:hover {
  box-shadow: 0 25px 50px rgba(109, 73, 248, 0.3);
  border-color: transparent;
}

.sec-card:hover::before,
.sec-card.active::before {
  width: 300%;
  height: 300%;
}

.sec-card .sec-ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-soft);
  font-size: 28px;
  transition: transform .7s cubic-bezier(0.34, 1.56, 0.64, 1), background .4s, box-shadow .4s;
  z-index: 2;
}

.sec-card:hover .sec-ico,
.sec-card.active .sec-ico {
  background: #fff;
  transform: rotateY(360deg) scale(1.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sec-card h4 {
  position: relative;
  font-size: 17px;
  margin-bottom: 4px;
  transition: color .4s;
  z-index: 2
}

.sec-card p {
  display: none;
}

.sec-card:hover h4,
.sec-card.active h4 {
  color: #fff;
}

/* ---------- Implementation process (animated timeline) ---------- */
.proc-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 30px;
  padding-top: 6px
}

.proc-line {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 4px;
  border-radius: 4px;
  background: #ece8ff;
  z-index: 0
}

.proc-fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 12px rgba(124, 92, 255, .5);
  transition: transform 1.6s var(--ease) .2s
}

.proc-flow.in .proc-fill {
  transform: scaleX(1)
}

.proc-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease)
}

.proc-flow.in .proc-node {
  opacity: 1;
  transform: none
}

.proc-flow.in .proc-node:nth-child(2) {
  transition-delay: .15s
}

.proc-flow.in .proc-node:nth-child(3) {
  transition-delay: .35s
}

.proc-flow.in .proc-node:nth-child(4) {
  transition-delay: .55s
}

.proc-flow.in .proc-node:nth-child(5) {
  transition-delay: .75s
}

.proc-flow.in .proc-node:nth-child(6) {
  transition-delay: .95s
}

.proc-flow.in .proc-node:nth-child(7) {
  transition-delay: 1.15s
}

.proc-dot {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: #fff;
  border: 2px solid #ece8ff;
  box-shadow: 0 10px 22px rgba(80, 50, 180, .12);
  transition: .35s var(--ease)
}

.proc-node:hover .proc-dot {
  transform: translateY(-5px);
  border-color: transparent;
  background: var(--grad)
}

.proc-step-num {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans";
  color: var(--violet);
  letter-spacing: 1px
}

.proc-node p {
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  max-width: 130px
}

/* ---------- Floating Book a Demo ---------- */
.fab {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 9998 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 28px -6px rgba(124, 58, 237, 0.55), 0 4px 14px rgba(168, 85, 247, 0.35) !important;
  opacity: 0;
  transform: translateY(24px) scale(.9);
  pointer-events: none;
  transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1), transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s !important;
  overflow: hidden;
  text-decoration: none !important;
  cursor: pointer !important;
}

.fab::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-20deg);
  animation: shine 4.2s ease-in-out infinite;
}

.fab.show {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

.fab:hover {
  transform: translateY(-4px) scale(1.02) !important;
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 50%, #d946ef 100%) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 18px 40px -4px rgba(168, 85, 247, 0.75), 0 0 24px rgba(192, 132, 252, 0.45) !important;
  color: #ffffff !important;
}

.fab svg {
  flex-shrink: 0 !important;
}

/* ---------- Demo Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 28, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease)
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.modal-box {
  background: #fff;
  width: 96%;
  max-width: 980px;
  max-height: 92vh;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: scale(0.95);
  transition: transform .3s var(--ease);
  position: relative;
}

.modal-overlay.open .modal-box {
  transform: scale(1)
}

.modal-content {
  display: flex;
  width: 100%;
  height: 100%;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0edf9;
  color: var(--violet);
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .2s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--violet);
  color: #fff;
  transform: scale(1.1)
}

.modal-left {
  flex: 0 0 420px;
  background: linear-gradient(145deg, #f6f3ff 0%, #edf1ff 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.modal-left-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.modal-logo-new {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-logo-new .logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.modal-left-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.modal-left-title .accent-title {
  color: var(--violet);
}

.modal-left-subtitle {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 16px;
}

.modal-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 24px;
}

.mfg-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(109, 73, 248, 0.1);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.mfg-card:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(109, 73, 248, 0.08);
}

.mfg-icon {
  color: var(--violet);
  display: grid;
  place-items: center;
}

.mfg-card span {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
}

.modal-left-trust {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(109, 73, 248, 0.15);
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 200px;
  /* leaves room for the building image at the bottom */
}

.trust-shield {
  color: var(--violet);
  flex-shrink: 0;
}

.modal-left-trust strong {
  display: block;
  font-size: 11.5px;
  color: var(--ink);
  margin-bottom: 2px;
}

.modal-left-trust span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
}

.modal-left-bg-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  /* adjusts height of building */
  z-index: 1;
  overflow: hidden;
}

.modal-left-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-right {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.modal-right-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.modal-right-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}

.form-group-new {
  display: flex;
  flex-direction: column;
}

.form-group-new label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}

.form-group-new label .req {
  color: #ef4444;
}

.input-wrap-new {
  position: relative;
  width: 100%;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9b6bff;
  pointer-events: none;
}

.textarea-icon {
  top: 18px;
  transform: none;
}

.input-wrap-new input,
.input-wrap-new select,
.input-wrap-new textarea {
  width: 100%;
  border: 1px solid #dcd8ea;
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.input-wrap-new input:focus,
.input-wrap-new select:focus,
.input-wrap-new textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(109, 73, 248, 0.1);
  outline: none;
}

/* Dropdown custom styling arrow */
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--muted);
  pointer-events: none;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
}

.form-group-new.full-width-new {
  grid-column: span 2;
  margin-top: 16px;
}

.form-check-new {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  cursor: pointer;
  grid-column: span 2;
}

.form-check-new input {
  width: 18px;
  height: 18px;
  accent-color: var(--violet);
  cursor: pointer;
  margin: 0;
}

.form-check-new span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.form-check-new a {
  color: var(--violet);
  text-decoration: underline;
}

.btn-submit-new {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(109, 73, 248, .3);
  transition: all 0.25s ease;
  grid-column: span 2;
}

.btn-submit-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(109, 73, 248, .45);
}

.btn-calendar-icon {
  stroke: currentColor;
}

.form-secure-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12.5px;
  grid-column: span 2;
}

.secure-icon {
  color: var(--green);
}

@media(max-width:860px) {
  .modal-box {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 90vh;
    width: 92%;
    /* cap keeps the stacked sheet reading as a centered card on portrait tablets
       instead of stretching edge-to-edge */
    max-width: 620px;
    margin: 0 auto;
  }

  /* inner wrapper must stack too, or the form is clipped off-screen right;
     form first — it's what the visitor opened the modal for */
  .modal-content {
    flex-direction: column-reverse;
    height: auto;
  }

  .modal-left {
    flex: none;
    width: 100%;
    padding: 30px 20px;
  }

  .modal-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .modal-left-trust {
    margin-bottom: 24px;
  }

  .modal-left-bg-image {
    display: none;
  }

  .modal-right {
    padding: 30px 20px;
  }

  .form-grid-new {
    grid-template-columns: 1fr;
  }

  .form-group-new.full-width-new {
    grid-column: span 1;
  }

  .form-check-new {
    grid-column: span 1;
  }

  .btn-submit-new {
    grid-column: span 1;
  }

  .form-secure-new {
    grid-column: span 1;
  }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

[data-reveal].in {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none
  }

  .sv-slide,
  .int-card {
    transition: none;
    animation: none
  }
}

/* ---------- Responsive ---------- */
@media(max-width:1024px) {
  .inst-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .mod-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sec-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr)
  }

  .awards {
    grid-template-columns: repeat(3, 1fr)
  }

  .dash-shell {
    grid-template-columns: 1fr
  }

  .dash-side {
    display: none
  }

  .dash-charts {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr
  }
}

/* Full nav (9 links + Book a Demo) needs ~1190px; below that collapse to the
   hamburger menu or the links wrap and the button clips off-screen. */
@media(max-width:1150px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    z-index: 40
  }

  .nav-links.open {
    transform: none
  }

  .nav-links a {
    padding: 10px 0
  }

  .nav-toggle {
    display: flex
  }
}

@media(max-width:860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto
  }

  .price-card.popular {
    transform: none
  }

  /* one-page sections relax to natural height on mobile; no snapping */
  html {
    scroll-snap-type: none
  }

  .fullpage {
    min-height: 0;
    display: block;
    scroll-snap-align: none
  }

  .mod-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sec-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px
  }

  .proc-line {
    display: none
  }

  /* STORY: disable scroll-pinning; show hero then stacked lifecycle */
  .story {
    height: auto
  }

  .story-pin {
    position: static;
    height: auto;
    display: block;
    overflow: visible;
    padding: 56px 0
  }

  .story-bar {
    display: none
  }

  .story-head {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 48px;
    margin-bottom: 24px
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .story-col-left,
  .story-col-right {
    position: static;
    min-height: 0
  }

  .story-hero {
    position: static;
    opacity: 1 !important;
    transform: none !important
  }

  .lc-phase {
    position: static;
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    gap: 18px
  }

  .lc-stage {
    flex: none;
    width: 100%;
    height: 240px
  }

  .story-steps {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    max-width: none;
    margin-top: 0px
  }

  .story-presenter {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 18px
  }

  .sv-dash-slide {
    display: none
  }

  .story-visual {
    position: relative;
    min-height: 430px;
    margin-top: 18px
  }
}

@media(max-width:560px) {
  .mod-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sec-grid {
    grid-template-columns: 1fr
  }

  .proc-flow {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .testimonials {
    grid-template-columns: 1fr
  }

  .awards {
    grid-template-columns: repeat(2, 1fr)
  }

  .dash-charts {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta-form {
    flex-direction: column;
    width: 100%
  }

  .cta-form input {
    min-width: 0;
    width: 100%
  }

  .section {
    padding: 54px 0
  }

  .fab {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 14px
  }
}

/* ============================================================================
   CLAYMORPHISM THEME LAYER  (site-wide soft, puffy, inflated surfaces)
   Appended last so it overrides the base look. Layout & JS untouched.
   ============================================================================ */
:root {
  /* rounder corners */
  --radius: 26px;
  --radius-sm: 16px;

  /* pastel canvas */
  --clay-bg: #eceafb;
  --clay-bg-alt: #e4e6f7;
  --clay-surface: #ffffff;

  /* raised clay: outer float + inner top highlight + inner bottom violet shade */
  --clay-shadow:
    0 16px 30px rgba(99, 67, 225, 0.16),
    0 4px 10px rgba(99, 67, 225, 0.10),
    inset 0 -6px 12px rgba(99, 67, 225, 0.10),
    inset 0 7px 14px rgba(255, 255, 255, 0.9);
  --clay-shadow-sm:
    0 8px 18px rgba(99, 67, 225, 0.12),
    inset 0 -4px 9px rgba(99, 67, 225, 0.08),
    inset 0 5px 10px rgba(255, 255, 255, 0.9);
  --clay-shadow-lg:
    0 28px 54px rgba(99, 67, 225, 0.22),
    inset 0 -9px 16px rgba(99, 67, 225, 0.12),
    inset 0 10px 18px rgba(255, 255, 255, 0.95);
  /* pressed / recessed (inputs, tracks) */
  --clay-press:
    inset 0 4px 10px rgba(99, 67, 225, 0.16),
    inset 0 -3px 8px rgba(255, 255, 255, 0.7);
  /* gradient (violet) surfaces — buttons, active chips */
  --clay-grad-shadow:
    0 14px 28px rgba(109, 73, 248, 0.42),
    inset 0 -5px 10px rgba(45, 20, 130, 0.30),
    inset 0 6px 11px rgba(255, 255, 255, 0.38);

  /* remap legacy tokens so any surface using them also turns clay */
  --shadow-sm: var(--clay-shadow-sm);
  --shadow: var(--clay-shadow);
  --shadow-lg: var(--clay-shadow-lg);
}

body {
  /* Soft "aurora" canvas — calm, premium take on the brand violet/blue */
  background:
    radial-gradient(1200px 800px at 8% -10%, rgba(124, 92, 255, 0.14), transparent 60%),
    radial-gradient(1000px 700px at 100% 0%, rgba(56, 189, 248, 0.10), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(167, 139, 250, 0.12), transparent 60%),
    linear-gradient(180deg, #fdfdff 0%, #f6f4ff 42%, #eef3fc 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

.section-alt,
.stats-band {
  background: transparent;
}

/* ---- Buttons ---- */
.btn {
  border-radius: 999px;
  border: none;
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .25s cubic-bezier(0.16, 1, 0.3, 1), background-color .25s, border-color .25s, color .25s;
}

.btn-primary {
  box-shadow: var(--clay-grad-shadow);
}

.btn-primary:hover {
  box-shadow: var(--clay-grad-shadow), 0 10px 24px rgba(109, 73, 248, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--clay-surface);
  border: none;
  box-shadow: var(--clay-shadow-sm);
}

.btn-light {
  background: #ffffff !important;
  color: var(--violet) !important;
  border: 1px solid rgba(109, 73, 248, 0.08) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), var(--clay-shadow-sm) !important;
}

.btn-ghost:hover {
  box-shadow: var(--clay-shadow);
  transform: translateY(-2px);
}

.btn-light:hover {
  box-shadow: 0 10px 24px rgba(109, 73, 248, 0.15), var(--clay-shadow) !important;
  transform: translateY(-2px) !important;
}

.btn-outline {
  box-shadow: var(--clay-shadow-sm);
}

/* ---- Header / brand ---- */
.brand-mark {
  border-radius: 14px;
  box-shadow: var(--clay-grad-shadow);
}

/* ---- Pills / chips / round icons ---- */
.pill {
  border: 1px solid rgba(109, 73, 248, 0.16) !important;
  background: #f5f3ff !important;
  color: var(--violet) !important;
  font-weight: 600;
  font-size: 13px;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s ease !important;
}

.pill:hover {
  background: #ede9fe !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 73, 248, 0.15) !important;
}

.int-card {
  border: none;
  background: var(--clay-surface);
  box-shadow: var(--clay-shadow-sm);
}

.mod-ico,
.lc-tab-num {
  border-radius: 16px;
  box-shadow: var(--clay-shadow-sm);
}

.stat-ico {
  border: none;
  border-radius: 18px;
  box-shadow: var(--clay-shadow);
}

.sec-ico,
.sec-details-icon,
.mh-icon,
.avatar {
  box-shadow: var(--clay-shadow-sm);
}

/* ---- Cards & surfaces (the puffy clay look) ---- */
.mod-card,
.price-card,
.sec-card,
.tcard,
.compare-showcase,
.lc-step-item,
.zz-card,
.dash-img,
.inst-img,
.tcard,
.modal-box {
  border: none !important;
  border-radius: var(--radius);
  background: var(--clay-surface);
  box-shadow: var(--clay-shadow);
}

/* process cards: keep hover pop-out logic, just clay-ify base + states */
.proc-card {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--clay-shadow);
}

.proc-card:hover,
.proc-card:focus-visible {
  box-shadow: var(--clay-grad-shadow), 0 30px 60px rgba(109, 73, 248, 0.45);
}

/* hover = lift into deeper clay */
.mod-card:hover,
.price-card:hover,
.sec-card:hover,
.tcard:hover,
.inst-card:hover .inst-img,
.compare-showcase:hover {
  box-shadow: var(--clay-shadow-lg);
}

.mod-card:hover {
  border: none;
}

/* popular pricing card — clay with a soft violet ring instead of hard border */
.price-card.popular {
  border: none !important;
  box-shadow: var(--clay-shadow-lg), 0 0 0 3px rgba(109, 73, 248, 0.30);
}

/* active lifecycle step — clay gradient */
.lc-step-item {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--clay-shadow-sm);
}

.lc-step-item.active {
  box-shadow: var(--clay-grad-shadow);
}

.lc-step-item.active .lc-tab-num {
  box-shadow: none;
}

/* mini dashboard / phone bits — soft & rounded */
.mini-dash {
  border-radius: 18px;
  box-shadow: var(--clay-shadow-sm);
}

.mini-card,
.mini-bars,
.mini-donut {
  border: none;
  border-radius: 14px;
  box-shadow: var(--clay-shadow-sm);
}

.phone-grid span,
.phone-donut {
  border: none;
  box-shadow: var(--clay-shadow-sm);
}

.phone-screen {
  border-radius: 16px;
}

/* FAQ items — clay, expand into deeper clay */
.faq-item {
  border: none !important;
  border-radius: var(--radius-sm);
  background: var(--clay-surface);
  box-shadow: var(--clay-shadow-sm);
  margin-bottom: 14px;
}

.faq-item[open] {
  box-shadow: var(--clay-shadow);
}

/* comparison table — recessed clay panel, soft inner grid */
.compare {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--clay-shadow-sm);
}

.compare thead th {
  border: none;
}

.compare td,
.compare th {
  border-color: rgba(99, 67, 225, 0.08);
}

/* tracks / beams — pressed clay */
.story-bar {
  box-shadow: var(--clay-press);
  background: #e0ddf6;
}

/* forms / inputs — pressed clay wells */
.demo-form input,
.demo-form select,
.demo-form textarea {
  border: none;
  border-radius: 14px;
  background: #f4f3fd;
  box-shadow: var(--clay-press);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  box-shadow: var(--clay-press), 0 0 0 4px rgba(109, 73, 248, 0.18);
}

.cta-form input {
  border-radius: 14px;
}

/* misc rounding for consistency */
.modal-box {
  border-radius: 30px;
}

.socials a {
  border-radius: 12px;
}

@media(prefers-reduced-motion:no-preference) {

  .mod-card,
  .price-card,
  .sec-card,
  .tcard,
  .proc-card,
  .lc-step-item,
  .btn {
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  }
}

/* ---- Glowing border line on two opposite corners (always on) ---- */
.compare-showcase {
  overflow: visible;
}

.compare-showcase::before,
.compare-showcase::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 42%;
  height: 55%;
  clip-path: none;
  background: transparent;
  border: 0 solid var(--violet-l);
  opacity: 1;
  /* always visible */
  transform: none;
  /* override old triangle offset → stick to edge */
  filter:
    drop-shadow(0 0 4px var(--violet-l)) drop-shadow(0 0 12px var(--violet)) drop-shadow(0 0 26px rgba(109, 73, 248, 0.95)) drop-shadow(0 0 48px rgba(109, 73, 248, 0.75));
  transition: filter .45s var(--ease);
}

/* top-left: glow the top + left border meeting at the rounded corner */
.compare-showcase::before {
  top: -2px;
  left: -2px;
  border-top-width: 3px;
  border-left-width: 3px;
  border-top-left-radius: var(--radius);
}

/* bottom-right: glow the bottom + right border */
.compare-showcase::after {
  bottom: -2px;
  right: -2px;
  border-bottom-width: 3px;
  border-right-width: 3px;
  border-bottom-right-radius: var(--radius);
}

/* appears, fixed & strongly glowing, on hover */
.compare-showcase:hover::before,
.compare-showcase:hover::after {
  opacity: 1;
  filter:
    drop-shadow(0 0 4px var(--violet-l)) drop-shadow(0 0 12px var(--violet)) drop-shadow(0 0 26px rgba(109, 73, 248, 0.95)) drop-shadow(0 0 48px rgba(109, 73, 248, 0.75));
}

/* ---- Equal-size pricing cards ---- */
.pricing-grid {
  align-items: stretch;
}

/* every card takes the row's full height */
.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card ul {
  flex: 1 1 auto;
}

/* feature list grows → CTA buttons bottom-align */
.price-card.popular {
  transform: none;
}

/* same top edge as the rest (emphasis stays via ring + shadow) */
/* ---- SUPPORT MODAL REDESIGN ---- */
.support-modal-left {
  background: #fdfcff;
  padding: 40px 32px 0 32px;
  position: relative;
  overflow: hidden;
}

.support-modal-left::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(109, 73, 248, 0.08) 0%, rgba(109, 73, 248, 0) 70%);
  border-radius: 50%;
}

.support-modal-left::after {
  content: "";
  position: absolute;
  top: 150px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(155, 107, 255, 0.08) 0%, rgba(155, 107, 255, 0) 70%);
  border-radius: 50%;
}

.modal-logo-support {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.modal-logo-support svg {
  display: block;
}

.support-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.support-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #2b1f4d;
}

.sf-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(109, 73, 248, 0.08);
  color: #6D49F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-left-bg-image-support {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.modal-left-bg-image-support img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: bottom;
}

.support-header-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.sh-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74, 21, 223, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.submit-support {
  background: #4A15DF;
  border-radius: 8px;
  justify-content: center;
}

.submit-support:hover {
  background: #3B0EBA;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 21, 223, 0.25);
}

.modal-right-support {
  padding: 40px 48px;
}

/* ---------- Cinematic Bento UI (Core Modules) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 20px;
  margin-top: 40px;
}

.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(109, 73, 248, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
  z-index: 10;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card .mod-ico {
  margin-bottom: auto;
  align-self: flex-start;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.bento-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.bento-card p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
}

/* Featured (Large) Cards */
.bento-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card-large .mod-ico {
  width: 64px;
  height: 64px;
}

.bento-card-large .mod-ico svg {
  width: 28px;
  height: 28px;
}

.bento-card-large h4 {
  font-size: 26px;
  margin-bottom: 12px;
}

.bento-card-large p {
  font-size: 16px;
}

/* Wide Cards */
.bento-card-wide {
  grid-column: span 2;
}

/* Specific Card Styling (e.g., NAAC/NIRF) */
.bento-highlight {
  background: linear-gradient(135deg, #6d49f8 0%, #a63ff6 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: 0 15px 35px rgba(109, 73, 248, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bento-highlight h4,
.bento-highlight p {
  color: #fff !important;
}

.bento-highlight .mod-ico {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Grid */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-large,
  .bento-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* HUD Ecosystem Animations */
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-slow-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes ping-slow {

  75%,
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.animate-spin-orbit {
  animation: spin-slow 55s linear infinite;
}

.animate-spin-counter {
  animation: spin-slow-reverse 55s linear infinite;
}

.animate-ring-cw {
  animation: spin-slow 60s linear infinite;
}

.animate-ring-ccw {
  animation: spin-slow-reverse 40s linear infinite;
}

.animate-core-ring {
  animation: spin-slow 20s linear infinite;
}

.animate-radar-ping {
  animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hud-card-content {
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-hidden {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}

.hud-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 24px -6px rgba(124, 58, 237, 0.55), 0 4px 12px rgba(168, 85, 247, 0.35) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.3s, box-shadow 0.3s, bottom 0.3s !important;
  z-index: 9999 !important;
  overflow: hidden;
}

.back-to-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-20deg);
  animation: shine 4.2s ease-in-out infinite;
}

.back-to-top.has-fab {
  bottom: 92px !important;
}

.back-to-top.visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 50%, #d946ef 100%) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 16px 36px -4px rgba(168, 85, 247, 0.75), 0 0 24px rgba(192, 132, 252, 0.45) !important;
  transform: translateY(-3px) scale(1.05) !important;
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.98) !important;
}

/* Adjust position for mobile overlays */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .back-to-top.has-fab {
    bottom: 74px;
    /* Positioned above the mobile FAB */
    right: 16px;
    /* Align with mobile FAB right offset */
  }
}

/* Accessibility Focus Outlines */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--violet-l);
  outline-offset: 3px;
}

/* ============================================================================
   DESIGN REFRESH LAYER — typography, spacing rhythm, story, card systems,
   animated "why choose" band. Appended last so it wins the cascade.
   ============================================================================ */

/* ---- Accent display type (free Google font: Space Grotesk) ---- */
.grad-text,
.accent-text {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.accent-text {
  color: var(--violet);
}

/* base copy readability */
body {
  font-size: 16px;
  color: var(--ink-2);
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--ink);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* consistent vertical rhythm */
.section {
  padding: 88px 0;
}

.section-title {
  font-size: clamp(30px, 3.4vw, 42px);
}

.section-sub {
  font-size: 17px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* section eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}

/* ---- Hero ---- */
.hero-home {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #251e62 0%, #33278c 40%, #4333b2 75%, #2a1f6f 100%);
  overflow: hidden;
}

/* Technical grid-mesh overlay */
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 44px 44px;
  background-image:
    linear-gradient(to right, rgba(109, 73, 248, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(109, 73, 248, 0.08) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Glowing radial blur highlights */
.hero-home::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(109, 73, 248, 0.18) 0%, rgba(138, 107, 255, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-home .container {
  max-width: 1440px !important;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

/* Centered visual container */
.hero-visual-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 820px;
  margin: 36px auto -56px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.hero-visual-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
}

.hero-visual-wrap:hover img {
  transform: translateY(-8px) scale(1.015);
}

@media (max-width: 991px) {
  .hero-visual-wrap {
    width: calc(100% + 48px);
    max-width: none;
    margin: 32px -24px -25%;
    padding: 0;
  }

  .hero-home {
    padding-top: 48px;
  }
}

.hero-home h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-nowrap {
  display: inline-block;
  white-space: normal;
}

.hero-home .hero-lead {
  font-size: clamp(16px, 1.8vw, 18.5px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin: 0 auto 34px;
  font-weight: 450;
  max-width: 800px;
  text-align: center;
}

.pill-group {
  flex-wrap: wrap;
  white-space: normal;
}

@media (min-width: 576px) {
  .pill-group {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-home {
    min-height: auto;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .hero-home .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    gap: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: auto !important;
  }

  .hero-home-content {
    flex: 1.15 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    max-width: 680px !important;
    margin: 0 !important;
  }

  .hero-home h1 {
    text-align: left !important;
    font-size: clamp(34px, 4.0vw, 52px) !important;
  }

  .hero-home .hero-nowrap {
    white-space: nowrap !important;
  }

  .hero-home .hero-lead {
    text-align: left !important;
    margin: 0 0 34px 0 !important;
    max-width: 580px !important;
  }

  .hero-cta-group {
    justify-content: flex-start !important;
  }

  .hero-visual-wrap {
    flex: 0.85 !important;
    margin-top: 0 !important;
    margin-bottom: -70px !important;
    margin-left: 0 !important;
    margin-right: -255px !important;
    padding: 0 !important;
    max-width: 700px !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
  }

  .hero-visual-wrap img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
  }
}

/* ---- About / Our Story ---- */
.about-intro {
  max-width: 860px;
  margin: 0 auto 84px;
  text-align: center;
}

.about-intro h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-intro p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-intro .about-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.story-block {
  margin-bottom: 96px;
}

.story-block-head {
  text-align: center;
  margin-bottom: 48px;
}

.story-block-head h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  margin-bottom: 10px;
}

.story-block-head p.story-tagline {
  color: var(--violet);
  font-weight: 600;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
  letter-spacing: -0.2px;
}

.story-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 56px;
  align-items: center;
}

.story-media {
  position: relative;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(109, 73, 248, 0.16), rgba(56, 189, 248, 0.10));
  z-index: -1;
}

.story-copy p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.story-quote {
  background: linear-gradient(135deg, #f3f0ff 0%, #eef6ff 100%);
  border-left: 4px solid var(--violet);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 26px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.story-quote .qmark {
  color: var(--violet);
  font-size: 40px;
  font-family: "Space Grotesk", Georgia, serif;
  line-height: 0.7;
  margin-top: 6px;
}

.story-quote p {
  color: var(--violet-d);
  font-weight: 600;
  font-size: 19px;
  margin: 0;
  line-height: 1.5;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.2px;
}

/* ---- Card system 1: "What Makes KurippEdu Different?" ---- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}

.diff-card {
  --tint: 109, 73, 248;
  position: relative;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(160deg, rgba(var(--tint), 0.55), rgba(var(--tint), 0.06)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 10px 26px rgba(var(--tint), 0.10);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.diff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(var(--tint), 0.12), transparent 55%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(var(--tint), 0.22);
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-ico {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgb(var(--tint)), rgba(var(--tint), 0.65));
  box-shadow: 0 10px 20px rgba(var(--tint), 0.35);
  margin-bottom: 18px;
  transition: transform .45s var(--ease);
}

.diff-card:hover .diff-ico {
  transform: scale(1.08) rotate(-4deg);
}

.diff-card h4 {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.diff-card p {
  position: relative;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- Card system 2: "Built Around Every Stakeholder" ---- */
.stake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}

.stake-card {
  --tint: 109, 73, 248;
  position: relative;
  border-radius: 20px;
  padding: 30px 24px 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(24, 24, 60, 0.06);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.stake-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(var(--tint)), rgba(var(--tint), 0.25));
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.stake-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tint), 0.14), transparent 70%);
  transition: transform .5s var(--ease);
}

.stake-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(var(--tint), 0.18);
}

.stake-card:hover::before {
  transform: scaleX(1);
}

.stake-card:hover::after {
  transform: scale(1.6);
}

.stake-ico {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: rgb(var(--tint));
  background: rgba(var(--tint), 0.12);
  margin-bottom: 16px;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}

.stake-card:hover .stake-ico {
  background: rgb(var(--tint));
  color: #fff;
  transform: scale(1.06);
}

.stake-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stake-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- Card system 3: "Our Core Values" ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}

.value-card {
  --tint: 109, 73, 248;
  position: relative;
  border-radius: 22px;
  padding: 28px 24px;
  text-align: left;
  color: #fff;
  background: linear-gradient(150deg, rgb(var(--tint)) 0%, rgba(var(--tint), 0.78) 100%);
  box-shadow: 0 14px 30px rgba(var(--tint), 0.30);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.value-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 90%;
  height: 220%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform .8s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 48px rgba(var(--tint), 0.40);
}

.value-card:hover::before {
  transform: translateX(340%) rotate(8deg);
}

.value-ico {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  margin-bottom: 16px;
}

.value-card h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---- "Why Institutions Choose KurippEdu" — animated showcase band ---- */
@keyframes whyGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes whyFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(18px, -22px);
  }
}

@keyframes whyItemIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.why-choose {
  position: relative;
  border-radius: 28px;
  padding: 56px 48px;
  overflow: hidden;
  background: linear-gradient(120deg, #4c1d95, #6d49f8, #2563eb, #7c3aed);
  background-size: 300% 300%;
  animation: whyGradientShift 14s ease infinite;
  box-shadow: 0 30px 70px rgba(76, 29, 149, 0.35);
}

.why-choose[data-reveal] {
  opacity: 0;
  transform: scale(0.97) translateY(0) !important;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.why-choose[data-reveal].in {
  opacity: 1;
  transform: scale(1) translateY(0) !important;
}

.why-choose::before,
.why-choose::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.why-choose::before {
  width: 340px;
  height: 340px;
  top: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
  animation: whyFloat 9s ease-in-out infinite;
}

.why-choose::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 70%);
  animation: whyFloat 11s ease-in-out infinite reverse;
}

.why-choose-head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 38px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].in .why-choose-head {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-head .eyebrow {
  color: #c4b5fd;
}

.why-choose-head h3 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.why-choose-head h3 .accent-text {
  color: #a5f3fc;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 14px 18px;
  color: #f5f3ff;
  font-size: 15px;
  font-weight: 600;
  transition: background .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
  opacity: 0;
}

[data-reveal].in .why-item,
.why-grid.in-view .why-item {
  animation: whyItemIn .6s var(--ease) forwards;
}

.why-item:nth-child(1) {
  animation-delay: .05s;
}

.why-item:nth-child(2) {
  animation-delay: .12s;
}

.why-item:nth-child(3) {
  animation-delay: .19s;
}

.why-item:nth-child(4) {
  animation-delay: .26s;
}

.why-item:nth-child(5) {
  animation-delay: .33s;
}

.why-item:nth-child(6) {
  animation-delay: .40s;
}

.why-item:nth-child(7) {
  animation-delay: .47s;
}

.why-item:nth-child(8) {
  animation-delay: .54s;
}

.why-item:nth-child(9) {
  animation-delay: .61s;
}

.why-item:nth-child(10) {
  animation-delay: .68s;
}

.why-item:nth-child(11) {
  animation-delay: .75s;
}

.why-item:nth-child(12) {
  animation-delay: .82s;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.why-item .why-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.22);
  color: #6ee7b7;
}

/* ---- Vision / Mission / Promise ---- */
.vmp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  margin-bottom: 96px;
}

/* ---- Responsive guards ---- */
@media (max-width: 1199px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .section {
    padding: 64px 0;
  }

  .why-choose {
    padding: 40px 24px;
  }

  .story-media::after {
    display: none;
  }

  .diff-grid,
  .stake-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {

  .diff-grid,
  .stake-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .hero-home {
    min-height: 0;
    padding-top: 48px;
  }
}

@media (max-width: 560px) {
  .hero-home {
    padding-top: 40px;
  }



  .diff-grid,
  .stake-grid,
  .values-grid {
    margin-bottom: 72px;
  }

  .story-block {
    margin-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .why-choose,
  .why-choose::before,
  .why-choose::after {
    animation: none;
  }

  .why-item {
    opacity: 1;
    animation: none;
  }
}

/* ============================================================================
   REFRESH ROUND 2 — story polish, hero blend, process motion, pricing section
   ============================================================================ */

/* ---- Our Story: professional treatment ---- */
.story-copy .story-lead {
  font-size: 18px;
  color: var(--ink);
  font-weight: 550;
  line-height: 1.7;
}

.story-media-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 12px 30px rgba(24, 24, 60, 0.18);
}

.story-media-badge .smb-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #6d49f8, #9b6bff);
  flex-shrink: 0;
}

.story-media-badge .smb-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.story-media-badge .smb-text span {
  font-size: 12px;
  color: var(--muted);
}

.story-quote {
  border-left: none;
  position: relative;
  background: linear-gradient(#f6f3ff, #f0f4ff) padding-box,
    linear-gradient(135deg, rgba(109, 73, 248, 0.55), rgba(56, 189, 248, 0.35)) border-box;
  border: 1.5px solid transparent;
}

.story-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.story-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.story-pillar .sp-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(109, 73, 248, 0.12);
  color: var(--violet);
}

@media (max-width: 560px) {
  .story-pillars {
    grid-template-columns: 1fr;
  }

  .story-media-badge {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px 10px 10px;
  }
}

/* ---- About action buttons: streamlined, equal footprint ---- */
.about-actions .btn {
  min-width: 220px;
  padding: 15px 30px;
  font-size: 15px;
  border-radius: 14px;
  justify-content: center;
}

/* ---- Implementation process: richer motion (same colors & layout) ---- */
@keyframes procCardIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pcIconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.process-grid[data-reveal] .proc-card {
  opacity: 0;
}

.process-grid[data-reveal].in .proc-card {
  animation: procCardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.process-grid[data-reveal].in .proc-card:nth-child(1) {
  animation-delay: 0.00s;
}

.process-grid[data-reveal].in .proc-card:nth-child(2) {
  animation-delay: 0.10s;
}

.process-grid[data-reveal].in .proc-card:nth-child(3) {
  animation-delay: 0.20s;
}

.process-grid[data-reveal].in .proc-card:nth-child(4) {
  animation-delay: 0.30s;
}

.process-grid[data-reveal].in .proc-card:nth-child(5) {
  animation-delay: 0.40s;
}

.process-grid[data-reveal].in .proc-card:nth-child(6) {
  animation-delay: 0.50s;
}

.proc-card .pc-icon {
  animation: pcIconFloat 4.5s ease-in-out infinite;
}

.proc-card:nth-child(2) .pc-icon {
  animation-delay: 0.6s;
}

.proc-card:nth-child(3) .pc-icon {
  animation-delay: 1.2s;
}

.proc-card:nth-child(4) .pc-icon {
  animation-delay: 1.8s;
}

.proc-card:nth-child(5) .pc-icon {
  animation-delay: 2.4s;
}

.proc-card:nth-child(6) .pc-icon {
  animation-delay: 3.0s;
}

.proc-card:hover .pc-icon,
.proc-card:focus-visible .pc-icon {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.18) rotate(-6deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.proc-card:hover .pc-line,
.proc-card:focus-visible .pc-line {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* sheen sweep across the card on hover */
.proc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  background-size: 260% 100%;
  background-position: 120% 0;
  pointer-events: none;
  transition: background-position 0.9s var(--ease);
}

.proc-card:hover::after,
.proc-card:focus-visible::after {
  background-position: -120% 0;
}

@media (prefers-reduced-motion: reduce) {

  .process-grid[data-reveal] .proc-card,
  .process-grid[data-reveal].in .proc-card {
    opacity: 1;
    animation: none;
  }

  .proc-card .pc-icon {
    animation: none;
  }
}

/* ---- Pricing: compact one-screen section with animated gradients ---- */
@keyframes priceGlowDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(24px, -18px) scale(1.08);
  }
}

@keyframes priceGradShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes priceFeatureIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-shell {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 52px 56px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  /* slow-breathing gradient canvas */
  background: linear-gradient(120deg, #f6f3ff, #eef4ff, #f3edff, #eaf3ff);
  background-size: 300% 300%;
  animation: priceGradShift 16s ease infinite;
  box-shadow: var(--shadow);
}

.pricing-shell::before,
.pricing-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.pricing-shell::before {
  width: 380px;
  height: 380px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(109, 73, 248, 0.20), transparent 70%);
  animation: priceGlowDrift 10s ease-in-out infinite;
}

.pricing-shell::after {
  width: 320px;
  height: 320px;
  bottom: -140px;
  right: -100px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 70%);
  animation: priceGlowDrift 12s ease-in-out infinite reverse;
}

.pricing-left {
  position: relative;
  z-index: 2;
}

.pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--violet);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.pricing-left h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

/* flowing gradient on the accent line */
.grad-animated {
  background: linear-gradient(90deg, #6d49f8, #38bdf8, #a855f7, #6d49f8);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: priceGradShift 6s ease infinite;
}

.pricing-copy {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 22px;
}

.price-block {
  margin-bottom: 18px;
}

.price-start-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 4px;
}

.price-figure {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(50px, 5vw, 66px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(90deg, var(--violet), #38bdf8, #8b5cf6, var(--violet));
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: priceGradShift 6s ease infinite;
  margin-bottom: 4px;
}

.price-figure .rupee {
  font-size: 0.55em;
  vertical-align: 0.45em;
  letter-spacing: 0;
}

.price-unit {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
}

.price-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 26px;
}

.price-terms span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.price-terms svg {
  color: var(--green);
  flex-shrink: 0;
}

.pricing-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-right {
  position: relative;
  z-index: 2;
}

.price-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
}

.price-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 14px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    linear-gradient(140deg, rgba(109, 73, 248, 0.45), rgba(56, 189, 248, 0.15)) border-box;
  border: 1.5px solid transparent;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(70, 50, 160, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  opacity: 0;
}

[data-reveal].in .price-feature {
  animation: priceFeatureIn 0.6s var(--ease) forwards;
}

[data-reveal].in .price-feature:nth-child(1) {
  animation-delay: 0.10s;
}

[data-reveal].in .price-feature:nth-child(2) {
  animation-delay: 0.22s;
}

[data-reveal].in .price-feature:nth-child(3) {
  animation-delay: 0.34s;
}

[data-reveal].in .price-feature:nth-child(4) {
  animation-delay: 0.46s;
}

.price-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(109, 73, 248, 0.18);
}

.price-feature .pf-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
}

.price-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.price-feature span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 18px;
}

@media (max-width: 991px) {
  .pricing-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
}

@media (max-width: 560px) {
  .price-features {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pricing-shell,
  .pricing-shell::before,
  .pricing-shell::after,
  .grad-animated,
  .price-figure {
    animation: none;
  }

  .price-feature,
  [data-reveal].in .price-feature {
    opacity: 1;
    animation: none;
  }
}

/* ---- Mobile App section: cinematic device scene + staggered feature list ---- */
@keyframes sceneLaptopIn {
  from {
    opacity: 0;
    transform: perspective(1400px) rotateY(6deg) translateY(46px);
  }

  to {
    opacity: 1;
    transform: perspective(1400px) rotateY(6deg) translateY(0);
  }
}

@keyframes scenePhoneIn {
  from {
    opacity: 0;
    transform: translateX(60px) rotate(6deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes chipPop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.85);
  }

  70% {
    transform: translateY(-3px) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chipFloatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes chipFloatB {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

@keyframes phoneHover {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes phoneGlowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.85;
  }
}

@keyframes mobilePointIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.mobile-visual {
  position: relative;
  padding: 44px 0 48px;
}

.mobile-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96%;
  aspect-ratio: 1.2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.28), rgba(56, 189, 248, 0.10) 55%, transparent 72%);
  animation: phoneGlowPulse 7s ease-in-out infinite;
  pointer-events: none;
}

.device-scene {
  position: relative;
}

/* --- laptop: subtle 3D angle, straightens on hover --- */
.mv-laptop {
  position: relative;
  width: 86%;
  transform: perspective(1400px) rotateY(6deg);
  transform-origin: left center;
  transition: transform 0.7s var(--ease);
  opacity: 0;
}

[data-reveal].in .mv-laptop {
  animation: sceneLaptopIn 0.9s var(--ease) forwards;
}

.device-scene:hover .mv-laptop {
  transform: perspective(1400px) rotateY(0deg);
}

/* the dashboard artwork ships with its own dark bezel — don't add another */
.mv-screen img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 30px 55px rgba(40, 20, 90, 0.28));
}

.mv-laptop-base {
  position: relative;
  height: 14px;
  margin: -8px 0 0;
  background: linear-gradient(#eceef8, #b9bcd0);
  border-radius: 2px 2px 18px 18px;
  box-shadow: 0 16px 30px rgba(40, 20, 90, 0.20);
  z-index: 2;
}

.mv-laptop-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 13%;
  height: 6px;
  background: #9a9db4;
  border-radius: 0 0 10px 10px;
}

/* --- phone: slides in, then hovers gently --- */
.mv-phone {
  position: absolute;
  right: 1%;
  bottom: -26px;
  width: 26%;
  aspect-ratio: 0.5;
  border-radius: clamp(20px, 13%, 34px);
  overflow: hidden;
  box-shadow: 0 30px 55px rgba(40, 20, 90, 0.35), 0 0 0 6px rgba(255, 255, 255, 0.9);
  z-index: 3;
  opacity: 0;
}

[data-reveal].in .mv-phone {
  animation: scenePhoneIn 0.8s var(--ease) 0.35s forwards, phoneHover 6s ease-in-out 1.2s infinite;
}

.mv-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.08);
}

/* --- floating glass chips --- */
.mv-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(40, 20, 90, 0.16);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  z-index: 4;
  opacity: 0;
}

.mv-chip strong {
  color: var(--ink);
  font-weight: 800;
}

.mv-chip .chip-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mv-chip-1 {
  top: -20px;
  left: 4%;
}

.mv-chip-2 {
  bottom: 2px;
  left: -3%;
}

.mv-chip-3 {
  top: -2%;
  right: -4%;
}

[data-reveal].in .mv-chip-1 {
  animation: chipPop 0.6s var(--ease) 0.55s forwards, chipFloatA 5s ease-in-out 1.4s infinite;
}

[data-reveal].in .mv-chip-2 {
  animation: chipPop 0.6s var(--ease) 0.75s forwards, chipFloatB 6s ease-in-out 1.6s infinite;
}

[data-reveal].in .mv-chip-3 {
  animation: chipPop 0.6s var(--ease) 0.95s forwards, chipFloatA 5.5s ease-in-out 1.8s infinite;
}

.mobile-copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.mobile-sub {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
}

.mobile-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.mobile-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  opacity: 0;
}

[data-reveal].in .mobile-points li {
  animation: mobilePointIn 0.55s var(--ease) forwards;
}

[data-reveal].in .mobile-points li:nth-child(1) {
  animation-delay: 0.10s;
}

[data-reveal].in .mobile-points li:nth-child(2) {
  animation-delay: 0.22s;
}

[data-reveal].in .mobile-points li:nth-child(3) {
  animation-delay: 0.34s;
}

[data-reveal].in .mobile-points li:nth-child(4) {
  animation-delay: 0.46s;
}

.mobile-points .mp-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: var(--violet);
  background: rgba(109, 73, 248, 0.10);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.mobile-points li:hover .mp-ico {
  background: var(--grad);
  color: #fff;
  transform: scale(1.06);
}

.mobile-points strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.mobile-points span:not(.mp-ico) {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 991px) {
  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .mobile-visual {
    order: -1;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }

  .mv-chip {
    font-size: 12px;
    padding: 8px 13px 8px 8px;
  }

  .mv-chip-2 {
    left: 0;
  }

  .mv-chip-3 {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mv-laptop,
  .mv-phone,
  .mv-chip,
  .mobile-glow,
  [data-reveal].in .mv-laptop,
  [data-reveal].in .mv-phone,
  [data-reveal].in .mv-chip-1,
  [data-reveal].in .mv-chip-2,
  [data-reveal].in .mv-chip-3 {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .mobile-points li,
  [data-reveal].in .mobile-points li {
    opacity: 1;
    animation: none;
  }
}

/* ---------- Mobile responsiveness fixes ---------- */
@media (max-width: 700px) {

  /* About stats bar: stack rows with horizontal dividers */
  .about-stats-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    padding: 24px !important;
  }

  .about-stats-bar .stats-divider {
    width: 100% !important;
    height: 1px;
  }
}

@media (max-width: 480px) {

  /* Compact header so brand + Book a Demo + hamburger fit on one line */
  .nav {
    gap: 10px;
  }

  .brand {
    font-size: 17px;
    gap: 6px;
  }

  .brand img {
    height: 34px !important;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn-sm {
    padding: 8px 13px;
    font-size: 13px;
  }
}

/* Comparison table: tighter card + cells so more columns fit before scrolling */
@media (max-width: 640px) {
  .compare-showcase {
    padding: 24px 14px;
  }

  .compare {
    min-width: 460px;
  }

  .compare th,
  .compare td {
    padding: 13px 14px;
    font-size: 13.5px;
  }
}

/* ---------- Mobile: prevent browser auto-zoom on input focus ----------
   Mobile browsers zoom the whole page when a focused form control has a
   font-size below 16px, and the zoom sticks after the modal closes.
   #contactModal prefix out-specifies the inline <style> block in index.html. */
@media (max-width: 860px) {

  .input-wrap-new input,
  .input-wrap-new select,
  .input-wrap-new textarea,
  #contactModal .contact-input-wrapper input,
  #contactModal .contact-input-wrapper textarea,
  .cta-form input,
  .demo-form input,
  .demo-form select,
  .demo-form textarea {
    font-size: 16px;
  }
}


/* ================================================================
   Security & Compliance — purple gradient bento board
   A rounded gradient panel (aurora wash + gradient border ring)
   frames an asymmetric bento grid. Every rectangular card carries
   the animated brand-purple gradient — each at a different phase so
   the board shimmers — with a white glow ring + lift on hover and a
   staggered rise-in when the section scrolls into view.
   ================================================================ */

/* ============================================================================
   SECURITY BENTO — PromptPal-style board, claymorphism, all-purple light palette
   ============================================================================ */
.sec-bento-wrap {
  position: relative;
  margin-top: 28px;
  padding: 18px;
  border-radius: 34px;
  /* claymorphism board: soft pastel surface, puffy inner + outer shadow */
  background: linear-gradient(150deg, #efeaff 0%, #e9ecff 55%, #efe9ff 100%);
  box-shadow:
    0 30px 60px rgba(109, 73, 248, 0.18),
    inset 0 3px 8px rgba(255, 255, 255, 0.9),
    inset 0 -10px 22px rgba(109, 73, 248, 0.10);
  overflow: hidden;
}

/* drifting aurora inside the board */
.sec-bento-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(520px 320px at 15% 18%, rgba(124, 92, 255, 0.16), transparent 65%),
    radial-gradient(460px 300px at 85% 82%, rgba(147, 112, 246, 0.14), transparent 65%);
  filter: blur(36px);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .sec-bento-wrap::before {
    animation: sbAurora 16s ease-in-out infinite alternate;
  }
}

@keyframes sbAurora {
  from {
    transform: translate3d(-2%, -2%, 0) rotate(0deg);
  }

  to {
    transform: translate3d(2%, 3%, 0) rotate(3deg);
  }
}

/* 4 x 3 bento — sized to sit within one screen */
.sec-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, 1fr);
  gap: 14px;
}

/* placement */
.sb-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* ISO (tall) */
.sb-card:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}

/* Hero */
.sb-card:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

/* Data Encryption */
.sb-card:nth-child(4) {
  grid-column: 4;
  grid-row: 2;
}

/* Cloud Backup */
.sb-card:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}

/* Role Based Access (img) */
.sb-card:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

/* Audit Logs */
.sb-card:nth-child(7) {
  grid-column: 3;
  grid-row: 3;
}

/* Regular Updates */
.sb-card:nth-child(8) {
  grid-column: 4;
  grid-row: 3;
}

/* Uptime stat */

/* --- clay cards: light purple family, puffy --- */
.sb-card {
  --sb-tint: 124, 92, 255;
  --sb-b1: #ffffff;
  --sb-b2: #efeaff;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 20px;
  text-align: left;
  overflow: hidden;
  background: linear-gradient(150deg, var(--sb-b1) 0%, var(--sb-b2) 100%);
  /* claymorphism */
  box-shadow:
    0 12px 24px rgba(var(--sb-tint), 0.16),
    inset 0 2px 5px rgba(255, 255, 255, 0.95),
    inset 0 -7px 14px rgba(var(--sb-tint), 0.14);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

/* purple-family light tints */
.sb-card:nth-child(1) {
  --sb-tint: 124, 92, 255;
  --sb-b2: #ece6ff;
}

.sb-card:nth-child(3) {
  --sb-tint: 109, 73, 248;
  --sb-b2: #ece7ff;
}

.sb-card:nth-child(4) {
  --sb-tint: 147, 112, 246;
  --sb-b2: #f0 ebff;
}

.sb-card:nth-child(4) {
  --sb-tint: 147, 112, 246;
  --sb-b2: #f0ebff;
}

.sb-card:nth-child(6) {
  --sb-tint: 126, 92, 239;
  --sb-b2: #eee9ff;
}

.sb-card:nth-child(7) {
  --sb-tint: 167, 139, 250;
  --sb-b2: #f2eeff;
}

.sb-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 40px rgba(var(--sb-tint), 0.26),
    inset 0 2px 5px rgba(255, 255, 255, 0.95),
    inset 0 -7px 14px rgba(var(--sb-tint), 0.12);
}

/* clay icon chip */
.sb-ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 22px;
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(var(--sb-tint), 0.18), rgba(var(--sb-tint), 0.08));
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.95),
    inset 0 -3px 6px rgba(var(--sb-tint), 0.22),
    0 6px 12px rgba(var(--sb-tint), 0.16);
  margin-bottom: 12px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sb-card:hover .sb-ico {
  transform: scale(1.1) rotate(-4deg);
}

.sb-card h3 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
}

.sb-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.sb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.sb-chips span {
  font-size: 11.5px;
  font-weight: 700;
  color: rgb(var(--sb-tint));
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(var(--sb-tint), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--sb-tint), 0.22);
}

/* --- ISO tall card gets a bit more breathing room --- */
.sb-tall h3 {
  font-size: 20px;
}

.sb-tall p {
  font-size: 13.5px;
}

/* --- center HERO: purple gradient clay, brand ring, contained watermark --- */
.sb-hero {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(150deg, #7c5cff 0%, #6d49f8 55%, #5a35e0 100%);
  box-shadow:
    0 22px 44px rgba(90, 53, 224, 0.42),
    inset 0 3px 8px rgba(255, 255, 255, 0.35),
    inset 0 -12px 24px rgba(45, 20, 130, 0.34);
}

/* watermark lives INSIDE the hero card, clipped by it */
.sb-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(90px, 12vw, 190px);
  letter-spacing: 8px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.14);
  text-stroke: 2px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}

.sb-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
}

.sb-hero-ring {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, 0.4),
    inset 0 -6px 12px rgba(45, 20, 130, 0.3),
    0 10px 24px rgba(45, 20, 130, 0.35);
}

.sb-hero-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

@media (prefers-reduced-motion: no-preference) {
  .sb-hero-ring::before {
    animation: sbRingSpin 22s linear infinite;
  }
}

@keyframes sbRingSpin {
  to {
    transform: rotate(360deg);
  }
}

.sb-hero-ring img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(45, 20, 130, 0.35);
}

.sb-hero h3 {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.sb-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 0 18px;
}

.sb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.sb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.25);
}

@media (prefers-reduced-motion: no-preference) {
  .sb-dot {
    animation: sbPulse 1.8s ease-in-out infinite;
  }
}

@keyframes sbPulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(110, 231, 183, 0.28);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(110, 231, 183, 0.05);
  }
}

/* --- image / illustration card --- */
.sb-image {
  padding: 0;
  overflow: hidden;
}

.sb-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sb-image:hover img {
  transform: scale(1.06);
}

.sb-image-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--violet-d, #5a35e0);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(76, 29, 149, 0.20);
}

/* --- stat card: gradient clay --- */
.sb-stat {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(150deg, #9a7bff 0%, #7c5cff 100%);
  box-shadow:
    0 16px 30px rgba(90, 53, 224, 0.35),
    inset 0 3px 8px rgba(255, 255, 255, 0.35),
    inset 0 -10px 18px rgba(45, 20, 130, 0.3);
}

.sb-stat-num {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.sb-stat-label {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* --- staggered reveal --- */
.sec-bento-wrap[data-reveal] .sb-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s ease;
}

.sec-bento-wrap[data-reveal].in .sb-card {
  opacity: 1;
  transform: translateY(0);
}

.sec-bento-wrap[data-reveal].in .sb-card:nth-child(1) {
  transition-delay: 0s;
}

.sec-bento-wrap[data-reveal].in .sb-card:nth-child(2) {
  transition-delay: 0.06s;
}

.sec-bento-wrap[data-reveal].in .sb-card:nth-child(3) {
  transition-delay: 0.12s;
}

.sec-bento-wrap[data-reveal].in .sb-card:nth-child(4) {
  transition-delay: 0.18s;
}

.sec-bento-wrap[data-reveal].in .sb-card:nth-child(5) {
  transition-delay: 0.24s;
}

.sec-bento-wrap[data-reveal].in .sb-card:nth-child(6) {
  transition-delay: 0.30s;
}

.sec-bento-wrap[data-reveal].in .sb-card:nth-child(7) {
  transition-delay: 0.36s;
}

.sec-bento-wrap[data-reveal].in .sb-card:nth-child(8) {
  transition-delay: 0.42s;
}

.sec-bento-wrap[data-reveal].in .sb-card:hover {
  transform: translateY(-5px);
  transition-delay: 0s;
}

/* --- glass shine sweep + icon float --- */
.sb-card .sb-shine {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 55%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: translateX(-240%) skewX(-18deg);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .sb-card .sb-shine {
    animation: sbShine 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .sb-card:nth-child(3) .sb-shine {
    animation-delay: 1.4s;
  }

  .sb-card:nth-child(4) .sb-shine {
    animation-delay: 2.8s;
  }

  .sb-card:nth-child(6) .sb-shine {
    animation-delay: 4.2s;
  }

  .sb-card:nth-child(7) .sb-shine {
    animation-delay: 5.6s;
  }

  .sb-ico {
    animation: sbIcoFloat 3.6s ease-in-out infinite alternate;
  }

  .sb-card:nth-child(4) .sb-ico {
    animation-delay: -1.2s;
  }

  .sb-card:nth-child(7) .sb-ico {
    animation-delay: -2.4s;
  }
}

@keyframes sbShine {
  0% {
    transform: translateX(-240%) skewX(-18deg);
  }

  24% {
    transform: translateX(440%) skewX(-18deg);
  }

  100% {
    transform: translateX(440%) skewX(-18deg);
  }
}

@keyframes sbIcoFloat {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -6px;
  }
}

/* --- responsive --- */
@media (max-width: 1024px) {
  .sec-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .sb-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .sb-card:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 300px;
  }

  .sb-card:nth-child(3),
  .sb-card:nth-child(4),
  .sb-card:nth-child(5),
  .sb-card:nth-child(6),
  .sb-card:nth-child(7),
  .sb-card:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
    min-height: 150px;
  }
}

@media (max-width: 620px) {
  .sec-bento-wrap {
    padding: 14px;
    border-radius: 24px;
  }

  .sec-bento {
    grid-template-columns: 1fr;
  }

  .sb-card:nth-child(1),
  .sb-card:nth-child(2) {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .sb-card .sb-shine,
  .sb-ico,
  .sb-hero-ring::before,
  .sb-dot {
    animation: none;
  }
}

/* keep the security board within one screen */
#security {
  padding-top: 56px;
  padding-bottom: 56px;
}

#security .section-title {
  margin-bottom: 10px;
}

#security .section-sub {
  margin-top: 0;
  margin-bottom: 20px;
}

/* ---------- Seamless Integrations Marquee Ticker ---------- */
.int-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 44px;
  padding: 16px 0 24px;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.int-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: intMarqueeFlow 32s linear infinite;
  will-change: transform;
}

.int-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes intMarqueeFlow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optimize cards inside the marquee track */
.int-marquee-track .int-card {
  width: 310px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.int-marquee-track .int-card:hover {
  transform: translateY(-4px) !important;
}

@media (max-width: 991px) {
  .int-marquee-container {
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  }
}

/* ============================================================
   KURIPPEDU — HERO BADGES, STYLE 5 (COMPACT HORIZONTAL ROW)
   Rotating shimmer-border pills in one row on a dark strip
   ============================================================ */
@property --hb5a {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.hb5-strip {
  background: rgba(23, 19, 49, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 999px;
  padding: 5px 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  z-index: 4;
}

@media (min-width: 576px) {
  .hb5-strip {
    flex-wrap: nowrap;
  }
}

.hb5-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #221B44;
  color: #C9B8F5;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}

.hb5-pill:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* rotating shimmer border */
.hb5-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1.2px;
  background: conic-gradient(from var(--hb5a, 0deg), transparent 0 70%, #A78BFA 85%, #7C3AED 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: hb5spin 3.2s linear infinite;
  pointer-events: none;
}

/* stagger delays for border shimmers */
.hb5-pill:nth-child(2)::before {
  animation-delay: 0.8s;
}

.hb5-pill:nth-child(3)::before {
  animation-delay: 1.6s;
}

.hb5-pill:nth-child(4)::before {
  animation-delay: 2.4s;
}

@keyframes hb5spin {
  to {
    --hb5a: 360deg;
  }
}

/* entrance animation */
.hb5-pill {
  opacity: 0;
  transform: translateY(10px);
  animation: hb5in 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hb5-pill:nth-child(1) {
  animation-delay: 0.1s;
}

.hb5-pill:nth-child(2) {
  animation-delay: 0.25s;
}

.hb5-pill:nth-child(3) {
  animation-delay: 0.4s;
}

.hb5-pill:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes hb5in {
  to {
    opacity: 1;
    transform: none;
  }
}

.hb5-ic {
  width: 13px;
  height: 13px;
  flex: none;
  color: #A78BFA;
}

@supports not (background: conic-gradient(from var(--hb5a), red, blue)) {
  .hb5-pill::before {
    animation: none;
    background: conic-gradient(transparent 0 70%, #A78BFA 85%, #7C3AED 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hb5-pill {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hb5-pill::before {
    animation: none;
  }
}

/* ---------- TRUST RECOGNITION ANIMATED STYLES ---------- */
:root {
  --ink: #22223a;
  --body: #5b6178;
  --purple: #7c5cf0;
  --magenta: #b44df0;
  --grad: linear-gradient(92deg, #6d55ee 0%, #9a4ff2 55%, #c04df0 100%);
  --purple-soft: #ece7fd;
  --purple-line: #ddd4f8;
  --card: #ffffff;
  --card-border: #eceafb;
  --page-bg: linear-gradient(180deg, #f8f6fe 0%, #efedfa 100%);
  --shadow: 0 10px 30px rgba(63, 50, 120, .08);
  --shadow-hover: 0 20px 44px rgba(85, 60, 180, .16);
  --ease-out: cubic-bezier(.22, .61, .36, 1);
}

.trust-section {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 84px 32px 96px;
}

/* ================= reveal-on-scroll transitions ================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease var(--d, 0s), transform .8s var(--ease-out) var(--d, 0s);
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ================= header ================= */
.trust-head {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--purple-soft);
}

.badge svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.trust-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.3vw, 50px);
  line-height: 1.18;
  color: var(--ink);
  margin: 24px auto 18px;
  max-width: 840px;
}

.trust-title .accent {
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 1s var(--ease-out);
}

.trust-title.revealed .accent {
  background-position: 100% 0;
}

.trust-sub {
  max-width: 660px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.7;
}

/* divider line that draws itself in */
.head-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px auto 0;
  width: min(360px, 80%);
}

.head-divider::before,
.head-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--purple-line);
  transform: scaleX(0);
  transition: transform .9s var(--ease-out) .25s;
}

.head-divider::before {
  transform-origin: right;
}

.head-divider::after {
  transform-origin: left;
}

.head-divider.revealed::before,
.head-divider.revealed::after {
  transform: scaleX(1);
}

.head-divider span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex: none;
}

/* ================= credential cards ================= */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  margin-top: 46px;
}

.cred-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 32px 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .35s ease;
}

.cred-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #dcd2fa;
}

.cred-logo {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: transform .35s var(--ease-out);
}

.cred-card:hover .cred-logo {
  transform: scale(1.06);
}

.cred-logo img {
  max-height: 104px;
  max-width: 88%;
  object-fit: contain;
}

.cred-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 82%;
  margin: 16px 0 14px;
}

.cred-divider::before,
.cred-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--purple-line);
  transition: background .35s ease;
}

.cred-card:hover .cred-divider::before,
.cred-card:hover .cred-divider::after {
  background: #c3b4f5;
}

.cred-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex: none;
}

.cred-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--purple);
}

.cred-role {
  font-size: 14.5px;
  margin-top: 5px;
}

/* --- text-based logo placeholders (swap with official logo <img> assets) --- */
.lg {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}

.lg-msme {
  color: #1c1c1c;
  text-align: center;
}

.lg-msme .emblem {
  font-size: 30px;
  display: block;
  margin-bottom: 6px;
}

.lg-msme .word {
  font-weight: 800;
  font-size: 27px;
  letter-spacing: .04em;
}

.lg-msme .tag {
  display: block;
  font-size: 7px;
  font-weight: 700;
  color: #b3261e;
  letter-spacing: .05em;
  margin-top: 4px;
}

.lg-startup {
  font-weight: 800;
  font-size: 19px;
}

.lg-startup .s1 {
  color: #e46a25;
}

.lg-startup .s2 {
  color: #173d7a;
}

.lg-startup .s3 {
  color: #2e8b3a;
}

.lg-aws {
  font-weight: 800;
  font-size: 40px;
  color: #232f3e;
  text-transform: lowercase;
  position: relative;
  padding-bottom: 15px;
}

.lg-aws svg {
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 88%;
  height: 15px;
  color: #f5991c;
}

.lg-sarvam {
  font-weight: 800;
  font-size: 30px;
  color: #2a2050;
}

.lg-sarvam sup {
  font-size: 10px;
  font-weight: 600;
  top: -1.4em;
  position: relative;
}

.lg-dsci {
  text-align: center;
}

.lg-dsci .word {
  font-weight: 800;
  font-size: 31px;
  color: #1a4ea0;
  letter-spacing: .3em;
  margin-right: -.3em;
}

.lg-dsci .tag {
  display: block;
  font-size: 8px;
  font-weight: 700;
  color: #1a4ea0;
  letter-spacing: .2em;
  margin-top: 6px;
}

.lg-dpdpa svg {
  width: 86px;
  height: 100px;
}

/* ================= bottom highlight pills ================= */
.pill-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.pill {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}

.pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pill .p-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .35s var(--ease-out);
}

.pill:hover .p-icon {
  transform: rotate(-6deg) scale(1.08);
}

.p-icon.c1 {
  background: linear-gradient(135deg, #7c5cf0, #5a3fe0);
}

.p-icon.c2 {
  background: linear-gradient(135deg, #9a4ff2, #7c5cf0);
}

.p-icon.c3 {
  background: linear-gradient(135deg, #37b6e9, #2f7fe0);
}

.p-icon.c4 {
  background: linear-gradient(135deg, #e357c8, #b44df0);
}

.p-icon svg {
  width: 22px;
  height: 22px;
}

.pill .p-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

.pill .p-sub {
  font-size: 12.5px;
  margin-top: 3px;
  line-height: 1.4;
}

/* ================= responsive ================= */
@media (max-width:1120px) {
  .cred-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pill-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .trust-section {
    padding: 60px 18px 68px;
  }

  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cred-logo {
    height: 88px;
  }

  .pill-row {
    grid-template-columns: 1fr;
  }
}

/* ================= reduced motion ================= */
@media (prefers-reduced-motion:reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .head-divider::before,
  .head-divider::after {
    transform: scaleX(1);
    transition: none;
  }

  .cred-card,
  .cred-logo,
  .pill,
  .pill .p-icon,
  .trust-title .accent {
    transition: none;
  }
}


/* ---------- Technology & Compliance Partnerships ---------- */
.footer-partners-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 28px;
  text-align: center;
  width: 100%;
}
.footer-partners-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff !important;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.footer-partners-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px 20px !important;
  width: 100% !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
}
.footer-partner-card {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 999px !important;
  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  box-sizing: border-box !important;
  padding: 0 24px !important;
  display: inline-grid !important;
  grid-template-columns: auto 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  align-items: center !important;
  column-gap: 14px !important;
  row-gap: 0px !important;
  text-align: left !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 10px 24px -6px rgba(124, 58, 237, 0.5), 0 4px 12px rgba(168, 85, 247, 0.3) !important;
  backdrop-filter: blur(8px) !important;
  cursor: pointer;
}
.footer-partner-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 50%, #d946ef 100%) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 16px 36px -4px rgba(168, 85, 247, 0.75), 0 0 24px rgba(192, 132, 252, 0.45) !important;
}
.footer-partner-card:active {
  transform: translateY(-1px) scale(0.99) !important;
  box-shadow: 0 8px 20px -4px rgba(168, 85, 247, 0.6) !important;
}
.footer-partner-logo {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  height: 100% !important;
  width: auto !important;
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.footer-partner-logo img {
  max-height: 26px !important;
  max-width: 70px !important;
  object-fit: contain !important;
}
.footer-partner-divider {
  display: none !important;
}
.footer-partner-name {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin: 0 0 1px 0 !important;
  white-space: nowrap !important;
}
.footer-partner-role {
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  margin: 1px 0 0 0 !important;
  white-space: nowrap !important;
}

/* Specific Logo Overrides for Dark Background Pill Style */
.footer-partner-card .lg-aws {
  color: #ffffff !important;
  font-size: 20px !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
.footer-partner-card .lg-aws svg {
  height: 7px !important;
  margin-top: -1px !important;
}
.footer-partner-card .lg-sarvam {
  color: #ffffff !important;
  font-size: 17px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
}
.footer-partner-card .lg-dsci {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.footer-partner-card .lg-dsci .word {
  color: #ffffff !important;
  font-size: 17px !important;
  line-height: 1 !important;
}
.footer-partner-card .lg-dsci .tag {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 5.5px !important;
  margin-top: 2px !important;
}
.footer-partner-card .lg-dpdpa {
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.footer-partner-card .lg-dpdpa svg {
  height: 26px !important;
  width: auto !important;
}

@media (max-width: 768px) {
  .footer-partners-grid {
    gap: 12px 14px !important;
  }
  .footer-partner-card {
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    padding: 0 18px !important;
  }
}

