/* ═══════════════════════════════
   DESIGN TOKENS
═══════════════════════════════ */
:root {
  --ink: #0A0A0A;
  --ink2: #171717;
  --muted: #6B7280;
  --light: #F9FAFB;
  --border: #E5E7EB;
  --white: #FFFFFF;

  --p1: #F3F0FF;
  --p2: #D8D4FC;
  --p3: #A78BFA;
  --p4: #8B5CF6;
  --p5: #7C3AED;
  --p6: #6D28D9;
  --p7: #4C1D95;

  /* Premium Gradients */
  --grad-main: linear-gradient(135deg, #7C3AED 0%, #4C1D95 100%);
  --grad-glow: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
  --grad-dark: linear-gradient(135deg, #0A0A0A 0%, #171717 100%);

  /* Refined Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 10px 30px -5px rgba(124, 58, 237, 0.4);

  --display: 'Outfit', sans-serif;
  --body: 'Inter', sans-serif;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── utils ─── */
.sec {
  padding: clamp(64px, 8vw, 112px) 0;
}

.divider {
  height: 1px;
  background: var(--border);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--p1);
  border: 1px solid var(--p2);
  border-radius: 100px;
  padding: 4px 13px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--p6);
}

.tag-pill .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--p4);
}

.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--p5);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--p4);
  border-radius: 2px;
}

.display-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
}

.display-title em {
  font-style: italic;
  color: var(--p5);
}

.body-lg {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
}

/* scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.rv.in {
  opacity: 1;
  transform: none;
}

.rv.d1 {
  transition-delay: .1s;
}

.rv.d2 {
  transition-delay: .2s;
}

.rv.d3 {
  transition-delay: .3s;
}

.rv.d4 {
  transition-delay: .4s;
}

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.topbar.raised {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--body);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--p5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--light);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-ghost {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  transition: all .3s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--p3);
  color: var(--p6);
  background: var(--light);
}

.btn-solid {
  font-size: .84rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--grad-main);
  border: none;
  white-space: nowrap;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, .2);
  transform-origin: center;
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

/* hamburger */
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hbg span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .28s;
}

.hbg.op span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hbg.op span:nth-child(2) {
  opacity: 0;
}

.hbg.op span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem;
  z-index: 899;
  box-shadow: var(--shadow-md);
}

.mob-menu.op {
  display: block;
}

.mob-menu a {
  display: block;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.mob-menu a:hover {
  color: var(--p5);
}

.mob-cta {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
}

.mob-cta .btn-ghost,
.mob-cta .btn-solid {
  flex: 1;
  text-align: center;
  font-size: .9rem;
  padding: 10px 8px;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0 0;
  overflow: hidden;
  background: var(--white);
}

/* subtle dot-grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(100, 68, 214, .25) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 80%);
  pointer-events: none;
}

.hero-top {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--p5);
}

.hero-sub {
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-main);
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: .95rem 2.25rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 15px rgba(124, 58, 237, .25);
  transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.btn-hero-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.btn-hero-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn-hero-main:hover::after {
  opacity: 1;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: .95rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: var(--shadow-xs);
}

.btn-hero-outline:hover {
  border-color: var(--p4);
  color: var(--p6);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--light);
}

/* social proof row */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.sp-avs {
  display: flex;
}

.sp-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  margin-right: -8px;
}

.sp-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.sp-stars {
  color: #F59E0B;
  font-size: .82rem;
  letter-spacing: .06em;
}

.sp-text {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

.sp-text strong {
  color: var(--ink);
}

/* hero visual strip */
.hero-visual {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--p1) 100%);
  border-top: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, #fff 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* bento grid */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.bc {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bc:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(124, 58, 237, 0.2);
}

.bc-span2 {
  grid-column: span 2;
}

.bc-row2 {
  grid-row: span 2;
}

.bc-tag {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: .5rem;
}

.bc-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}

.bc-num em {
  color: var(--p5);
  font-style: normal;
}

.bc-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .3rem;
}

.bc-up {
  font-size: .72rem;
  font-weight: 700;
  color: #16A34A;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: .4rem;
}

/* map svg area */
.map-area {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #EDE9FF 0%, #F4F2FF 100%);
  margin-bottom: .85rem;
}

.map-area svg {
  width: 100%;
  height: 100%;
}

/* rep list */
.rep-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
}

.rep-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rep-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rep-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  min-width: 0;
}

.rep-loc {
  font-size: .68rem;
  color: var(--muted);
}

.rep-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rd-live {
  background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .15);
}

.rd-idle {
  background: #F59E0B;
}

/* sparkline */
.spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
  margin-top: .85rem;
}

.sb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--p2);
}

.sb.hi {
  background: var(--p4);
}

/* progress */
.prog-lbl {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: var(--muted);
  margin-bottom: .25rem;
  font-weight: 500;
}

.prog-lbl span:last-child {
  color: var(--ink);
  font-weight: 700;
}

.prog-track {
  height: 5px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: .55rem;
}

.prog-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--p4), var(--p3));
}

/* activity feed */
.feed-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}

.feed-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feed-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.feed-t {
  font-size: .76rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .12rem;
}

.feed-d {
  font-size: .68rem;
  color: var(--muted);
}

/* ─── hero entrance ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.a0 {
  animation: fadeUp .6s ease both;
}

.a1 {
  animation: fadeUp .6s .08s ease both;
}

.a2 {
  animation: fadeUp .6s .16s ease both;
}

.a3 {
  animation: fadeUp .6s .24s ease both;
}

.a4 {
  animation: fadeUp .6s .32s ease both;
}

.a5 {
  animation: fadeUp .6s .42s ease both;
}

/* ═══════════════════════════════
   TRUST BAR
═══════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: nowrap;
  overflow: hidden;
}

.trust-lbl {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  opacity: .6;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-names {
  display: flex;
  gap: clamp(1.25rem, 3.5vw, 2.5rem);
  flex-wrap: wrap;
  overflow: hidden;
}

.tn {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: .45;
  white-space: nowrap;
  transition: opacity .2s;
}

.tn:hover {
  opacity: .75;
}

/* ═══════════════════════════════
   STATS
═══════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.stat-cell {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.stat-n {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
}

.stat-n em {
  color: var(--p5);
  font-style: normal;
}

.stat-l {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .4rem;
  font-weight: 500;
}

/* ═══════════════════════════════
   FEATURES
═══════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.feat-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.feat-cell {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.feat-cell:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  z-index: 2;
  border-radius: var(--r-lg);
  /* Override grid overflow visually */
}

.feat-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--p2);
  line-height: 1;
  margin-bottom: .85rem;
}

.feat-ico-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform .3s ease;
}

.feat-cell:hover .feat-ico-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.feat-title {
  font-size: .97rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .45rem;
}

.feat-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: .85rem;
}

.feat-tag {
  font-size: .66rem;
  font-weight: 600;
  color: var(--p6);
  background: var(--p1);
  border: 1px solid var(--p2);
  border-radius: 100px;
  padding: 2px 8px;
}

/* ═══════════════════════════════
   INTERACTIVE FEATURES
═══════════════════════════════ */
.if-tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.if-tab {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  background: transparent;
}

.if-tab:hover {
  background: var(--light);
}

.if-tab.active {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.if-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.if-tab.active .if-ico {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.if-content {
  flex: 1;
}

.if-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .45rem;
  transition: color .3s ease;
}

.if-tab.active .if-title {
  color: var(--p6);
}

.if-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

.if-mockup-wrapper {
  background: var(--light);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 540px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.if-mockup-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
}

.if-mockup-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.if-mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* ═══════════════════════════════
   IMPACT — BIG SPLIT LAYOUT
═══════════════════════════════ */
.impact-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(124, 58, 237, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(76, 29, 149, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.impact-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ik {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.ik:last-child {
  border-right: none;
}

.ik-n {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}

.ik-n em {
  color: var(--p3);
  font-style: normal;
}

.ik-l {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

/* benefit grid */
.benefit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.benefit-col {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.benefit-col:last-child {
  border-right: none;
}

.benefit-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.benefit-item:last-child {
  border-bottom: none;
}

.bi-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(148, 128, 245, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

.bi-t {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin-bottom: .15rem;
}

.bi-d {
  font-size: .77rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.6;
}

/* ═══════════════════════════════
   MODULES SHOWCASE
═══════════════════════════════ */
.module-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mod-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.mod-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
}

.mod-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--p3);
}

.mod-row:hover::before {
  opacity: 1;
}

.mod-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.mod-row:hover .mod-ico {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.mod-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
  width: 100%;
}

.mod-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  width: 100%;
}

.mod-count {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--p5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mod-count::before {
  content: "✦";
  font-size: 0.8rem;
}

/* ═══════════════════════════════
   REPORTS
═══════════════════════════════ */
.rpt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.rpt-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.rpt-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--p2);
}

.rpt-ico {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.rpt-name {
  font-size: .72rem;
  color: var(--ink2);
  font-weight: 600;
  line-height: 1.4;
}

/* ═══════════════════════════════
   INTEGRATIONS
═══════════════════════════════ */
.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}

.int-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem .75rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.int-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--p2);
}

.int-ico {
  font-size: 1.5rem;
  margin-bottom: .4rem;
}

.int-name {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}

.tcard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.t-stars {
  color: #F59E0B;
  font-size: .82rem;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}

.t-quote {
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--p2);
  line-height: 1;
  margin-bottom: .4rem;
}

.t-text {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-name {
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink);
}

.t-role {
  font-size: .73rem;
  color: var(--muted);
}

/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--p7) 50%, var(--ink2) 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(148, 128, 245, .25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(62, 20, 160, .3) 0%, transparent 55%);
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.cta-h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}

.cta-h2 em {
  font-style: italic;
  color: var(--p2);
}

.cta-p {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, .6);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--p6);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: .9rem 2.25rem;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  transition: transform .2s, box-shadow .2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .3);
  color: var(--p6);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  margin-top: 1.5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

.cta-note span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-note i {
  color: var(--p3);
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.foot-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: .45rem;
}

.foot-logo span {
  color: var(--p5);
}

.foot-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 250px;
}

.foot-contact {
  font-size: .78rem;
  color: var(--muted);
  line-height: 2.1;
  margin-top: .75rem;
}

.foot-h {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .85rem;
  opacity: .6;
}

.foot-link {
  display: block;
  font-size: .81rem;
  color: var(--muted);
  text-decoration: none;
  padding: .2rem 0;
  transition: color .2s;
}

.foot-link:hover {
  color: var(--p5);
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .85rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.foot-copy {
  font-size: .73rem;
  color: var(--muted);
  opacity: .55;
}

.socials {
  display: flex;
  gap: 7px;
}

.soc {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  transition: border-color .2s, color .2s, background .2s;
}

.soc:hover {
  border-color: var(--p3);
  color: var(--p5);
  background: var(--p1);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media(max-width:1199px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    padding: 0 1rem 2rem;
  }

  .bc-span2 {
    grid-column: span 2;
  }

  .bc-row2 {
    grid-row: span 1;
  }

  .feat-grid,
  .feat-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ik:nth-child(2) {
    border-right: none;
  }

  .ik:nth-child(3),
  .ik:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .rpt-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:991px) {

  .nav-links,
  .btn-ghost {
    display: none;
  }

  .hbg {
    display: flex;
  }

  .benefit-split {
    grid-template-columns: 1fr;
  }

  .benefit-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .benefit-col:last-child {
    border-bottom: none;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mod-desc {
    display: none;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:767px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bc-span2 {
    grid-column: span 2;
  }

  .feat-grid,
  .feat-grid-2 {
    grid-template-columns: 1fr;
  }

  .impact-kpi-row {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .rpt-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-names {
    flex-wrap: nowrap;
    overflow: hidden;
  }
}

@media(max-width:575px) {
  .bento {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .bc-span2 {
    grid-column: span 1;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .rpt-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-h1 {
    font-size: 2.6rem;
  }

  .impact-kpi-row {
    grid-template-columns: 1fr 1fr;
  }

  .ik {
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .ik:first-child,
  .ik:nth-child(2) {
    border-top: none;
  }

  .int-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════
   CRO: EXIT INTENT MODAL
═══════════════════════════════ */
.exit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 38, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.exit-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.exit-modal {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.exit-modal-overlay.show .exit-modal {
  transform: translateY(0) scale(1);
}

.exit-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
}

.exit-modal-close:hover {
  background: var(--border);
  color: var(--ink);
}