@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-900.woff2') format('woff2'); font-weight: 900; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }

:root {
  color-scheme: dark;
  --bg:       #09020f;
  --ink:      #fbf7ff;
  --muted:    #c3b2cf;
  --pink:     #d991ff;
  --pink-txt: #ebc7ff;
  --violet:   #a72cff;
  --blue:     #c457ff;
  --cyan:     #f0dcff;
  --pearl:    #f7eaff;
  --glow:     rgba(217,145,255,.42);
  --glow-v:   rgba(167,44,255,.4);
  --glow-b:   rgba(196,87,255,.34);
  --r-card:   20px;
  --r-input:  12px;
  --glass:        rgba(255,255,255,.04);
  --glass-border: rgba(255,255,255,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 'Outfit', 'Manrope', system-ui, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 100px; position: relative; }
h1,h2,h3 { line-height: 1.12; letter-spacing: -.03em; font-weight: 800; font-family: 'Outfit', 'Manrope', sans-serif; }
h2 { font-size: clamp(28px, 4.5vw, 50px); }
h3 { font-size: 20px; margin-bottom: 10px; }
p { color: var(--muted); max-width: 65ch; }

/* ── GLOBAL BG CANVAS ── */
#bg-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
  opacity: .97;
}

/* ── ACCENT TEXT ──
   Συμπαγές χρώμα, ΟΧΙ gradient-clip. Το gradient σε γράμματα είναι στην πραγματικότητα
   άσπρο ΦΟΝΤΟ πίσω από διάφανα γράμματα - το force dark του κινητού το γυρίζει μαύρο
   και ο τίτλος εξαφανίζεται. Συμπαγές χρώμα = όλοι βλέπουν το ίδιο. */
.accent { color: var(--pink-txt); }

/* ── BUTTONS ── */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 999px; padding: 14px 30px;
  font-weight: 700; font-size: 16px; font-family: 'Outfit', 'Manrope', sans-serif;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 0 30px var(--glow), 0 0 68px rgba(167,44,255,.28);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 48px var(--glow), 0 0 96px rgba(167,44,255,.4); }
.btn-primary:active { transform: scale(.97); }
.btn-ghost {
  background: var(--glass); color: var(--ink);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 0 20px var(--glow-b); }
.btn-ghost:active { transform: scale(.97); }

.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: ripple-anim .55s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ── CARDS ── */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 30px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
  transform-style: preserve-3d;
  backdrop-filter: blur(6px);
  position: relative;
}
/* edge-light: λεπτή φωτεινή ακμή στην κορυφή κάθε κάρτας */
.card::after {
  content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,164,255,.68), transparent);
  opacity: .5; transition: opacity .3s, left .3s, right .3s;
  pointer-events: none;
}
.card:hover::after { opacity: 1; left: 0; right: 0; }
.card:hover {
  border-color: rgba(205,91,255,.35);
  box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 32px rgba(205,91,255,.12), inset 0 1px 0 rgba(255,255,255,.08);
}

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.rv.on { opacity: 1; transform: none; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: 72px; display: flex; align-items: center;
  background: rgba(4,6,15,.75); backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
}
.nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--violet), transparent);
  opacity: .35;
}
.nav .container { display: flex; align-items: center; gap: 20px; width: 100%; }

/* Brand logo - inline SVG heart + wordmark */
.nav a.brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 21px; font-family: 'Outfit', 'Manrope', sans-serif;
  letter-spacing: -.04em; text-decoration: none; color: var(--ink);
  flex-shrink: 0;
}
.nav a.brand .logo-heart-svg {
  height: 52px; width: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(205,91,255,.5));
  transition: filter .3s, transform .3s;
  overflow: visible;
}
.nav a.brand:hover .logo-heart-svg {
  filter: drop-shadow(0 0 16px rgba(205,91,255,.8));
  transform: scale(1.08);
}
/* Phone-as-i: minimal "i" shape - circle dot + slim rect */
.brand-i-phone {
  height: 20px; width: auto;
  flex-shrink: 0;
  color: var(--ink);
}
.brand-lova { color: var(--ink); }
.brand-call { color: var(--ink); }
.brand-name {
  font-family: 'Outfit', 'Manrope', sans-serif;
  font-weight: 900; font-size: 22px;
  letter-spacing: -.05em; color: var(--ink);
}

.nav ul { display: flex; gap: 24px; list-style: none; margin-left: auto; padding: 0; }
.nav ul a {
  color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600;
  transition: color .2s; position: relative;
}
.nav ul a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--pink); transform: scaleX(0); transition: transform .3s;
}
.nav ul a:hover { color: var(--ink); }
.nav ul a:hover::after { transform: scaleX(1); }
.nav .btn-primary { padding: 10px 20px; font-size: 15px; white-space: nowrap; flex-shrink: 0; }
.nav-burger { display: none; background: none; border: 0; color: var(--ink); font-size: 26px; cursor: pointer; }

@media (max-width: 900px) {
  .nav ul { display: none; }
  .nav ul.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(4,6,15,.97); backdrop-filter: blur(20px);
    padding: 24px; border-bottom: 1px solid var(--glass-border);
    margin: 0; z-index: 100;
  }
  .nav-burger { display: block; margin-left: auto; }
  .nav .btn-primary { display: none; }
  .nav a.brand .logo-heart-svg { height: 40px; width: 40px; }
}

/* ── HOME STAGGERED MENU ── */
.nav--staggered {
  position: fixed; z-index: 90; width: 100%; height: 80px;
  background: linear-gradient(180deg, rgba(9,2,15,.94), rgba(9,2,15,.56));
  border-bottom-color: rgba(255,255,255,.06);
}
.nav--staggered .container { max-width: 1320px; }
.nav--staggered::after {
  left: 6%; right: 6%;
  background: linear-gradient(90deg, transparent, rgba(231,184,255,.78), rgba(167,44,255,.7), transparent);
  opacity: .72;
}
.nav--staggered .nav-actions {
  display: flex; align-items: center; gap: 12px; margin-left: auto;
}
.nav--staggered .nav-cta {
  padding: 10px 18px; font-size: 14px;
  background: linear-gradient(135deg, #e4b0ff, #a72cff);
  color: #170521; box-shadow: 0 0 30px rgba(167,44,255,.34);
}
.nav--staggered .nav-burger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 126px; min-height: 44px; padding: 0 15px 0 17px;
  color: var(--ink); background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.11); border-radius: 999px;
  font: 700 13px/1 'Outfit', 'Manrope', sans-serif;
  overflow: hidden; transition: background .25s, border-color .25s, transform .25s;
}
.nav--staggered .nav-burger:hover {
  background: rgba(255,255,255,.075);
  border-color: rgba(217,145,255,.54); transform: translateY(-1px);
}
.nav-burger__label { display: grid; flex: 0 0 60px; min-width: 60px; height: 1em; overflow: hidden; }
.nav-burger__label span {
  grid-area: 1/1; transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.nav-burger__label span:last-child { transform: translateY(160%); }
.nav-burger__icon { position: relative; display: block; width: 18px; height: 14px; flex: none; }
.nav-burger__icon i {
  position: absolute; left: 0; width: 18px; height: 1px; border-radius: 4px;
  background: currentColor;
  transition: transform .45s cubic-bezier(.16,1,.3,1), top .45s cubic-bezier(.16,1,.3,1);
}
.nav-burger__icon i:first-child { top: 4px; }
.nav-burger__icon i:last-child { top: 10px; }
.nav--staggered .nav-burger[aria-expanded="true"] .nav-burger__label span:first-child { transform: translateY(-160%); }
.nav--staggered .nav-burger[aria-expanded="true"] .nav-burger__label span:last-child { transform: none; }
.nav--staggered .nav-burger[aria-expanded="true"] .nav-burger__icon i:first-child { top: 7px; transform: rotate(45deg); }
.nav--staggered .nav-burger[aria-expanded="true"] .nav-burger__icon i:last-child { top: 7px; transform: rotate(-45deg); }

.site-menu-overlay {
  position: fixed; inset: 0; z-index: 79;
  background: rgba(3,1,7,.62); backdrop-filter: blur(9px);
  opacity: 0; transition: opacity .45s cubic-bezier(.16,1,.3,1);
}
.site-menu-overlay.is-open { opacity: 1; }
.site-menu {
  position: fixed; inset: 0 0 0 auto; z-index: 80;
  width: min(570px, 100vw); padding: 112px 54px 38px;
  background: linear-gradient(145deg, rgba(39,8,61,.99), rgba(10,2,17,.99));
  border-left: 1px solid rgba(217,145,255,.2);
  transform: translateX(102%); visibility: hidden;
  transition: transform .7s cubic-bezier(.16,1,.3,1), visibility 0s .7s;
  overflow: hidden;
}
.site-menu.is-open {
  transform: none; visibility: visible;
  transition: transform .7s cubic-bezier(.16,1,.3,1), visibility 0s;
  box-shadow: -40px 0 100px rgba(0,0,0,.52);
}
.site-menu__ambient {
  position: absolute; width: 460px; height: 460px; right: -180px; top: -140px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(218,112,255,.46), rgba(147,28,229,.2) 44%, transparent 70%);
  filter: blur(14px);
}
.site-menu__inner {
  position: relative; height: 100%; display: flex; flex-direction: column;
}
.site-menu__eyebrow {
  color: var(--pink-txt); font-size: 12px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 30px;
}
.site-menu #nav-links { display: grid; gap: 0; list-style: none; padding: 0; margin: 0; }
.site-menu #nav-links li {
  opacity: 0; transform: translateX(46px);
  transition: opacity .42s ease, transform .6s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--menu-i) * 42ms);
}
.site-menu.is-open #nav-links li { opacity: 1; transform: none; }
.site-menu #nav-links a {
  display: flex; align-items: baseline; gap: 18px; width: 100%;
  color: var(--ink); text-decoration: none;
  font: 700 clamp(24px, 4vh, 39px)/1.22 'Outfit', 'Manrope', sans-serif;
  letter-spacing: -.045em; padding: 5px 0;
  transition: color .25s, transform .35s cubic-bezier(.16,1,.3,1);
}
.site-menu #nav-links a span {
  color: rgba(255,255,255,.3); font-size: 10px;
  letter-spacing: .12em; width: 18px; transition: color .25s;
}
.site-menu #nav-links a:hover { color: var(--pink-txt); transform: translateX(10px); }
.site-menu #nav-links a:hover span { color: #b96cff; }
.site-menu__footer {
  display: flex; justify-content: space-between; gap: 20px; align-items: flex-end;
  margin-top: auto; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09);
  font-size: 13px;
}
.site-menu__footer p { color: var(--muted); }
.site-menu__footer a { color: var(--ink); text-decoration: none; }
body.menu-open { overflow: hidden; }

@media (max-width: 700px) {
  .nav--staggered { height: 70px; }
  .nav--staggered .container { padding-inline: 16px; }
  .nav--staggered .nav-cta { display: none; }
  .nav--staggered .nav-burger { width: 126px; min-height: 40px; gap: 10px; }
  .site-menu { padding: 98px 26px 28px; }
  .site-menu #nav-links a { font-size: clamp(22px, 4.6vh, 32px); padding-block: 4px; }
  .site-menu__footer { align-items: flex-end; flex-direction: column; text-align: right; margin-bottom: 12px; }
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 80px;
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
/* scrim: σβήνει τα waveform bars πίσω από το κείμενο, κρατάει το contrast σταθερό */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(115% 75% at 18% 46%, rgba(9,2,15,.88) 0%, rgba(9,2,15,.56) 42%, transparent 74%);
}
@media (max-width: 700px) {
  .hero { padding-top: 70px; }
  .hero::before { background: linear-gradient(180deg, rgba(9,2,15,.92) 0%, rgba(9,2,15,.76) 55%, rgba(9,2,15,.24) 100%); }
}
.hero .container { position: relative; z-index: 2; }
.hero-headline {
  display: flex; flex-direction: column; align-items: flex-start;
  width: min(100%, 1120px); max-width: none;
  font-family: 'Outfit', 'Manrope', sans-serif;
  color: var(--ink);
  text-shadow: 0 0 38px rgba(167,44,255,.34);
}
.hero-copy-before {
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 600; line-height: 1; letter-spacing: -.035em;
  color: var(--muted); margin-left: .08em; margin-bottom: 8px;
}
.hero-pressure-word {
  display: flex; align-items: baseline;
  font-size: clamp(92px, 15.5vw, 205px);
  font-weight: 900; line-height: .78; letter-spacing: -.095em;
  text-transform: uppercase; white-space: nowrap;
  margin-left: -.025em; cursor: default;
  filter: drop-shadow(0 0 30px rgba(181,52,255,.46));
  animation: pearl-breathe 7s ease-in-out infinite;
}
.pressure-letter {
  display: inline-block;
  color: var(--letter-color, var(--pearl));
  transform: translateY(var(--lift, 0)) scaleX(var(--sx, 1)) scaleY(var(--sy, 1));
  transform-origin: center 70%;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), filter .18s, color .25s;
  text-shadow:
    0 1px 0 rgba(255,255,255,.45),
    0 0 24px rgba(224,147,255,.48),
    0 0 64px rgba(167,44,255,.28);
  will-change: transform;
}
.pressure-letter:nth-child(1) { --letter-color: #faefff; }
.pressure-letter:nth-child(2) { --letter-color: #efceff; }
.pressure-letter:nth-child(3) { --letter-color: #dfa0ff; }
.pressure-letter:nth-child(4) { --letter-color: #cf6dff; }
.pressure-letter:nth-child(5) { --letter-color: #bb3dff; }
.hero-pressure-word.is-ready .pressure-letter {
  animation: pressure-letter-in .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: calc(var(--letter-i) * 65ms);
}
.hero-copy-after {
  margin-top: 20px; max-width: 20ch;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 800; line-height: 1.02; letter-spacing: -.055em;
  color: var(--ink);
}
@keyframes pressure-letter-in {
  from { opacity: .2; filter: blur(8px); }
  to { opacity: 1; filter: blur(0); }
}
@keyframes pearl-breathe {
  0%,100% { filter: drop-shadow(0 0 24px rgba(167,44,255,.34)); }
  50% { filter: drop-shadow(0 0 44px rgba(221,126,255,.54)); }
}
.hero-sub { margin-block: 22px 34px; font-size: 20px; color: var(--ink); max-width: 50ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero-headline { width: 100%; }
  .hero-copy-before { font-size: 22px; margin-bottom: 10px; }
  .hero-pressure-word { font-size: clamp(84px, 25vw, 108px); letter-spacing: -.105em; }
  .hero-copy-after { margin-top: 18px; font-size: clamp(30px, 9.8vw, 42px); max-width: 11ch; }
}

/* ── SECTION DIVIDER: γραμμή φωνής ── */
.section-divider {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--pink), var(--blue), transparent);
  opacity: .55;
  box-shadow: 0 0 18px rgba(196,87,255,.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero-pressure-word,
  .hero-pressure-word.is-ready .pressure-letter { animation: none; }
  .pressure-letter { transition: none; }
}

/* ── HOW GRID ── */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.step-num {
  font-size: 64px; font-weight: 900; font-family: 'Outfit', 'Manrope', sans-serif;
  color: var(--pink-txt);
  text-shadow: 0 0 26px rgba(196,87,255,.45);
  line-height: 1; margin-bottom: 14px; display: block;
}

/* ── BENTO ── */
.bento { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; margin-top: 44px; }
.bento .card:nth-child(1) { background: linear-gradient(135deg, rgba(217,145,255,.11), rgba(167,44,255,.065)); }
.bento .card:nth-child(4) { background: linear-gradient(135deg, rgba(196,87,255,.11), rgba(167,44,255,.065)); }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 900px) { .how-grid, .bento, .split-2 { grid-template-columns: 1fr; } }

/* ── INTEGRATIONS - Real brand colors via pill glow ── */
.marquee-v2 {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  margin-top: 48px;
}
.marquee-row-v2 {
  display: flex; align-items: center; gap: 20px;
  width: max-content; padding-block: 10px;
  animation: scrollx 30s linear infinite;
}
.marquee-row-v2.reverse { animation-direction: reverse; animation-duration: 26s; }
@keyframes scrollx { to { transform: translateX(-50%); } }

.int-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 10px 20px;
  backdrop-filter: blur(8px);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap; cursor: default;
  flex-shrink: 0;
}
.int-pill:hover { transform: translateY(-4px) scale(1.04); }
.int-pill img, .int-pill svg { height: 26px; width: 26px; object-fit: contain; flex-shrink: 0; }
.int-pill span { font-size: 14px; font-weight: 700; color: var(--ink); }

.int-pill[data-brand="google-calendar"]:hover { border-color: #4285f4; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(66,133,244,.4); }
.int-pill[data-brand="gmail"]:hover           { border-color: #EA4335; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(234,67,53,.45); }
.int-pill[data-brand="outlook"]:hover         { border-color: #0078D4; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(0,120,212,.45); }
.int-pill[data-brand="google-sheets"]:hover   { border-color: #0f9d58; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(15,157,88,.4); }
.int-pill[data-brand="whatsapp"]:hover        { border-color: #25d366; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(37,211,102,.45); }
.int-pill[data-brand="slack"]:hover           { border-color: #E01E5A; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 20px rgba(224,30,90,.4), 0 0 20px rgba(54,197,240,.2); }
.int-pill[data-brand="teams"]:hover           { border-color: #6264A7; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(98,100,167,.5); }
.int-pill[data-brand="hubspot"]:hover         { border-color: #ff7a00; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(255,122,0,.45); }
.int-pill[data-brand="zapier"]:hover          { border-color: #ff4a1a; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(255,74,26,.45); }
.int-pill[data-brand="notion"]:hover          { border-color: #fff;    box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(255,255,255,.2); }
.int-pill[data-brand="calendly"]:hover        { border-color: #006bff; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(0,107,255,.45); }
.int-pill[data-brand="airtable"]:hover        { border-color: #fc8019; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(252,128,25,.4); }
.int-pill[data-brand="viber"]:hover           { border-color: #7b5ea7; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(123,94,167,.5); }
.int-pill[data-brand="n8n"]:hover             { border-color: #ea4900; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(234,73,0,.45); }
.int-pill[data-brand="trello"]:hover          { border-color: #0052cc; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(0,82,204,.45); }
.int-pill[data-brand="make"]:hover            { border-color: #6d00cc; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(109,0,204,.45); }
.int-pill[data-brand="stripe"]:hover          { border-color: #635bff; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(99,91,255,.5); }
.int-pill[data-brand="intercom"]:hover        { border-color: #1f8ded; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(31,141,237,.45); }

/* Real brand color on logos - remove any CSS filter that would grey them out */
.int-pill img { filter: none !important; opacity: 1 !important; }

/* ── ROI ── */
.roi { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 44px; }
.roi label { display: block; font-size: 15px; color: var(--ink); font-weight: 600; margin-top: 18px; }
.roi-slider { width: 100%; margin: 8px 0 4px; accent-color: var(--pink); cursor: pointer; }
@media (max-width: 900px) { .roi { grid-template-columns: 1fr; } }

/* ── PRICING ── */
.pricing-toggle {
  display: flex; justify-content: center; margin-block: 28px 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 4px; max-width: 280px; margin-inline: auto;
}
.pt-btn {
  flex: 1; padding: 9px 18px; border: 0; background: none; color: var(--muted);
  font: 700 15px 'Outfit','Manrope',sans-serif; cursor: pointer; border-radius: 999px;
  transition: background .3s, color .3s;
}
.pt-btn.sel { background: linear-gradient(135deg, var(--pink), var(--violet)); color: #fff; box-shadow: 0 0 16px var(--glow); }
.pt-badge { font-size: 11px; background: rgba(255,255,255,.22); border-radius: 999px; padding: 2px 7px; margin-left: 5px; }
.plans { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.plan { display: flex; flex-direction: column; }
.plan .price {
  font-size: 46px; font-weight: 900; font-family: 'Outfit', 'Manrope', sans-serif; margin-block: 14px;
  color: #fff;
}
.plan .price small { font-size: 15px; font-weight: 400; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.plan ul li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: 16px; }
.plan ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--pink-txt);
  font-weight: 800;
}
.plan.popular {
  border-color: rgba(205,91,255,.45);
  box-shadow: 0 0 48px rgba(205,91,255,.12), inset 0 1px 0 rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(205,91,255,.07), var(--glass));
}
.pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff; font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 4px 14px; white-space: nowrap;
  box-shadow: 0 0 18px var(--glow);
}
@media (max-width: 1100px) { .plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .plans { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--ink);
  font: 700 17px 'Outfit','Manrope',sans-serif; padding: 20px 42px 20px 0;
  cursor: pointer; position: relative; transition: color .2s;
}
.faq-q::after {
  content: '+'; position: absolute; right: 4px;
  color: var(--pink-txt);
  font-size: 28px; font-weight: 400;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 20px; }
.faq-a a { color: var(--blue); }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--glass-border); padding-block: 60px; position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--pink), transparent);
  opacity: .28;
}
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; font-weight: 700; }
.footer a { display: block; color: var(--muted); text-decoration: none; padding-block: 4px; font-size: 16px; transition: color .2s; }
.footer a:hover { color: var(--ink); }
@media (max-width: 768px) { .footer .cols { grid-template-columns: 1fr 1fr; } }
.footer-brand { margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--glass-border); }
.footer-mega { display: grid; grid-template-columns: 1fr 2fr 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-smb-col { columns: 2; column-gap: 12px; }
@media (max-width: 960px) { .footer-mega { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .footer-mega { grid-template-columns: 1fr 1fr; } .footer-smb-col { columns: 1; } }

/* ── HEART FAB + CHAT WIDGET ── */
#heart-btn {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  background: none; border: none; cursor: pointer; padding: 0;
  display: grid; place-items: center;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
#heart-btn:hover { transform: scale(1.12); }
#heart-btn img {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(196,87,255,.5));
  transition: filter .25s;
}
#heart-btn:hover img { filter: drop-shadow(0 4px 22px rgba(196,87,255,.75)); }
#wizard-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.58); z-index: 70; backdrop-filter: blur(4px); }
#wizard {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(490px,100vw); z-index: 71;
  background: rgba(7,11,28,.97); backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  padding: 68px 34px 34px; overflow-y: auto;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.16,1,.3,1);
}
#wizard.open { transform: none; box-shadow: -36px 0 72px rgba(0,0,0,.55); }
#wizard-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 50%; width: 34px; height: 34px;
  color: var(--muted); font-size: 17px; cursor: pointer;
  display: grid; place-items: center; transition: color .2s, border-color .2s;
}
#wizard-close:hover { color: var(--ink); border-color: var(--pink); }
#wizard-progress { height: 3px; background: var(--glass); border-radius: 999px; margin-bottom: 30px; }
#wizard-progress span {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--blue));
  transition: width .38s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 10px var(--glow);
}

/* ── COOKIE PREFERENCE CENTER ── */
.cookie-consent {
  position: fixed;
  z-index: 10000;
  left: clamp(14px, 3vw, 36px);
  bottom: clamp(14px, 3vw, 32px);
  width: min(540px, calc(100vw - 28px));
  padding: 24px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(14,17,36,.96), rgba(5,7,18,.94));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0,0,0,.58), 0 0 50px rgba(104,64,180,.18), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(28px) saturate(1.35);
  opacity: 0;
  transform: translateY(24px) scale(.97);
  transition: opacity .32s ease, transform .5s cubic-bezier(.16,1,.3,1);
}
.cookie-consent.is-visible { opacity: 1; transform: none; }
.cookie-consent__glow {
  position: absolute; width: 260px; height: 260px; right: -120px; top: -140px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(217,145,255,.22), rgba(157,42,236,.12) 45%, transparent 72%);
  filter: blur(8px);
}
.cookie-consent__head { position: relative; display: flex; align-items: center; gap: 14px; }
.cookie-consent__mark {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; gap: 3px;
  border: 1px solid rgba(217,145,255,.28); border-radius: 14px;
  background: linear-gradient(145deg, rgba(217,145,255,.12), rgba(196,87,255,.1));
  box-shadow: 0 0 28px rgba(217,145,255,.12);
}
.cookie-consent__mark span { width: 3px; border-radius: 99px; background: linear-gradient(var(--cyan), var(--pink)); animation: cookie-wave 1.8s ease-in-out infinite; }
.cookie-consent__mark span:nth-child(1) { height: 10px; }
.cookie-consent__mark span:nth-child(2) { height: 24px; animation-delay: -.35s; }
.cookie-consent__mark span:nth-child(3) { height: 16px; animation-delay: -.7s; }
@keyframes cookie-wave { 0%,100% { transform: scaleY(.65); opacity:.7; } 50% { transform: scaleY(1.15); opacity:1; } }
.cookie-consent__eyebrow { display: block; margin-bottom: 3px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cookie-consent h2 { margin: 0; font-size: 24px; letter-spacing: -.03em; }
.cookie-consent__copy { position: relative; margin: 15px 0 10px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.cookie-consent__details-link {
  padding: 5px 0; border: 0; background: transparent; color: var(--muted);
  font: 700 13px/1 'Outfit','Manrope',sans-serif; cursor: pointer;
}
.cookie-consent__details-link span { display: inline-block; margin-left: 4px; transition: transform .25s; }
.cookie-consent__details-link[aria-expanded="true"] span { transform: rotate(180deg); }
.cookie-consent__preferences { display: grid; gap: 8px; max-height: 0; margin-top: 0; overflow: hidden; opacity: 0; transition: max-height .42s cubic-bezier(.16,1,.3,1), opacity .25s, margin .25s; }
.cookie-consent__preferences.is-open { max-height: 310px; margin-top: 15px; opacity: 1; }
.cookie-choice {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px;
  background: rgba(255,255,255,.035); cursor: pointer;
}
.cookie-choice strong { display: block; margin-bottom: 2px; font-size: 13px; }
.cookie-choice small { display: block; color: var(--muted); font-size: 11px; line-height: 1.4; }
.cookie-choice--muted { opacity: .55; cursor: default; }
.cookie-pill { flex: 0 0 auto; padding: 5px 8px; color: var(--muted); background: rgba(255,255,255,.06); border-radius: 99px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.cookie-switch { position: relative; flex: 0 0 auto; width: 42px; height: 24px; }
.cookie-switch input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-switch span { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; background: rgba(255,255,255,.08); transition: .25s; }
.cookie-switch span::after { content:''; position:absolute; width:16px; height:16px; left:3px; top:3px; border-radius:50%; background:#c8cbe0; transition:.3s cubic-bezier(.16,1,.3,1); }
.cookie-switch input:checked + span { border-color: rgba(217,145,255,.55); background: linear-gradient(135deg, rgba(205,91,255,.9), rgba(157,42,236,.95)); box-shadow: 0 0 18px rgba(157,42,236,.35); }
.cookie-switch input:checked + span::after { transform: translateX(18px); background:#fff; }
.cookie-switch input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 3px; }
.cookie-consent__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.cookie-btn { min-height: 43px; padding: 10px 15px; border-radius: 12px; font: 800 13px/1.15 'Outfit','Manrope',sans-serif; cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-btn--ghost { color: var(--ink); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
.cookie-btn--primary { color:#fff; border:1px solid transparent; background:linear-gradient(135deg,var(--pink),var(--violet)); box-shadow:0 0 24px var(--glow); }
.cookie-btn--save { display:none; grid-column:1/-1; color:var(--ink); border:1px solid rgba(217,145,255,.3); background:rgba(217,145,255,.08); }
.cookie-consent.details-open .cookie-btn--save { display:block; }
.cookie-consent__policy { display:inline-block; margin-top:12px; color:var(--muted); font-size:11px; text-underline-offset:3px; }
.cookie-settings-trigger {
  position:fixed; z-index:9990; left:16px; bottom:16px; display:flex; align-items:center; gap:7px;
  padding:8px 11px; color:var(--muted); border:1px solid rgba(255,255,255,.1); border-radius:99px;
  background:rgba(8,10,23,.78); backdrop-filter:blur(16px); font:700 11px 'Outfit','Manrope',sans-serif; cursor:pointer;
  opacity:0; transform:translateY(10px); transition:.3s;
}
.cookie-settings-trigger.is-visible { opacity:1; transform:none; }
.cookie-settings-trigger:hover { color:#fff; border-color:rgba(217,145,255,.4); box-shadow:0 0 18px rgba(217,145,255,.12); }
.cookie-settings-trigger span:first-child { color:var(--cyan); font-size:16px; }
@media (max-width:600px) {
  .cookie-consent { left:10px; bottom:10px; width:calc(100vw - 20px); padding:19px; border-radius:20px; max-height:calc(100dvh - 20px); overflow-y:auto; }
  .cookie-consent h2 { font-size:21px; }
  .cookie-consent__copy { font-size:13px; }
  .cookie-consent__actions { grid-template-columns:1fr; }
  .cookie-btn--save { grid-column:auto; }
  .cookie-choice small { max-width:29ch; }
}
@media (prefers-reduced-motion:reduce) {
  .cookie-consent, .cookie-settings-trigger, .cookie-consent__preferences { transition:none; }
  .cookie-consent__mark span { animation:none; }
}
.wz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.wz-opt {
  padding: 16px 12px; border: 1px solid var(--glass-border);
  border-radius: var(--r-card); background: var(--glass); color: var(--ink);
  font: 700 15px 'Outfit','Manrope',sans-serif; cursor: pointer; text-align: center;
  transition: border-color .22s, box-shadow .22s, transform .22s, background .22s;
  backdrop-filter: blur(6px);
}
.wz-opt:hover, .wz-opt.sel {
  border-color: var(--pink); box-shadow: 0 0 20px rgba(205,91,255,.22);
  transform: translateY(-2px); background: rgba(205,91,255,.07);
}
.wz-label { display: block; font-size: 15px; color: var(--muted); margin-top: 18px; font-weight: 600; }
.wz-input {
  width: 100%; padding: 14px; margin-top: 7px; border-radius: var(--r-input);
  border: 1px solid var(--glass-border); background: var(--glass);
  color: var(--ink); font: 400 16px 'Outfit','Manrope',sans-serif;
  transition: border-color .22s, box-shadow .22s;
}
.wz-input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 18px rgba(205,91,255,.18); }
.wz-err { color: #ff8a8a; font-size: 14px; margin-top: 8px; display: none; }

/* ── CLICK EFFECTS ── */
.particle {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9998;
  animation: particle-fly .75s ease-out forwards;
}
@keyframes particle-fly {
  0%   { opacity: 1; transform: scale(1) translate(0,0); }
  100% { opacity: 0; transform: scale(0) translate(var(--tx), var(--ty)); }
}
.click-ripple {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9997;
  width: 56px; height: 56px; border: 2px solid var(--pink);
  animation: click-ripple-anim .55s ease-out forwards;
  transform: translate(-50%,-50%) scale(0);
}
@keyframes click-ripple-anim {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}

/* ── LEGAL ── */
.legal h1 { font-size: clamp(30px,4vw,50px); margin-bottom: 26px; }
.legal h2 { font-size: 24px; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 24px; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .marquee-row-v2 { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  html { scroll-behavior: auto; }
  #heart-btn { animation: none; }
  .brand-sep { animation: none; }
}

/* ══ v2.1 overrides ══ */

/* ── CHAT WIDGET ── */
#chat-widget {
  position: fixed; right: 24px; bottom: 88px; z-index: 59;
  width: 288px;
  background: rgba(8,12,30,.96); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 52px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0; transform: scale(.93) translateY(10px);
  transition: opacity .28s cubic-bezier(.16,1,.3,1), transform .28s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
#chat-widget.open { opacity: 1; transform: none; pointer-events: all; }
.chat-w-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.chat-w-heart { width: 28px; height: 28px; flex-shrink: 0; object-fit: contain; }
.chat-w-name {
  font: 700 14px 'Outfit','Manrope',sans-serif; color: var(--ink); flex: 1;
}
.chat-w-close {
  background: none; border: none; color: var(--muted);
  font-size: 15px; cursor: pointer; padding: 2px; line-height: 1;
  transition: color .2s;
}
.chat-w-close:hover { color: var(--ink); }
.chat-w-bubble {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px 14px 14px 4px;
  padding: 13px 15px; margin-bottom: 14px;
}
.chat-w-bubble p { color: var(--ink); font-size: 16px; line-height: 1.5; margin: 0 0 4px; max-width: none; }
.chat-w-bubble .chat-w-sub { color: var(--muted); font-size: 13px; margin: 0; }
.chat-w-cta {
  width: 100%; justify-content: center;
  font-size: 14px !important; padding: 11px 16px !important;
  border-radius: 12px !important;
}

/* Wizard carousel */
.wz-step { opacity: 0; transform: translateX(36px); transition: opacity .35s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1); }
.wz-step.from-left { transform: translateX(-36px); }
.wz-step.in { opacity: 1; transform: none; }
.wz-count { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.wz-q { font-size: 22px; margin-bottom: 6px; }
.wz-back { background: none; border: 0; color: var(--muted); font: 600 15px 'Outfit','Manrope',sans-serif; cursor: pointer; padding: 12px 0; margin-top: 18px; }
.wz-back:hover { color: var(--ink); }
.wz-nav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; flex-direction: row-reverse; }
.wz-textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.wz-sending { display: flex; gap: 8px; margin-top: 24px; }
.wz-sending span { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); animation: wzdot 1s ease-in-out infinite; }
.wz-sending span:nth-child(2) { animation-delay: .15s; background: var(--violet); }
.wz-sending span:nth-child(3) { animation-delay: .3s; background: var(--blue); }
@keyframes wzdot { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-8px); opacity: 1; } }
.wz-heart-beat { animation: heartbeat-scale 2.4s ease-in-out infinite; }

/* Solutions page */
.solutions-page .solutions-hero {
  padding: clamp(36px, 6vw, 76px) 0 clamp(72px, 9vw, 112px);
}
.solutions-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 12%, rgba(196,87,255,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  box-shadow: 0 36px 90px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.08);
}
.solutions-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 68px);
}
.solutions-hero__eyebrow {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(224,163,182,.25);
  border-radius: 999px;
  color: var(--pink-txt);
  background: rgba(196,87,255,.08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.solutions-hero__content h1 {
  max-width: 16ch;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}
.solutions-hero__content > p {
  max-width: 54ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
}
.solutions-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.solutions-hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.035);
  font-size: 14px;
  font-weight: 700;
}
.solutions-hero__proof span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 14px var(--glow);
}
.solutions-hero__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #111522;
}
.solutions-hero__media::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,15,.92) 0%, rgba(4,6,15,.22) 35%, transparent 64%),
    linear-gradient(0deg, rgba(4,6,15,.34), transparent 42%);
  pointer-events: none;
}
.solutions-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% 50%;
}
.solutions-page .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 46ch);
  align-items: end;
  gap: 28px;
}
.solutions-page .section-heading p {
  margin: 0;
  color: var(--muted);
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}
.solutions-page .sol-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}
.solutions-page .sol-card::after { z-index: 3; }
.sol-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #111522;
}
.sol-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4,6,15,.72), transparent 54%),
    linear-gradient(125deg, rgba(104,64,180,.08), transparent 50%);
  pointer-events: none;
}
.sol-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16,1,.3,1), filter .45s ease;
}
.solutions-page .sol-card:hover .sol-card__img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.02);
}
.sol-card__body {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}
.sol-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  font-size: clamp(21px, 1.65vw, 26px);
  line-height: 1.15;
}
.sol-card .sol-tag {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(217,145,255,.18);
  border-radius: 999px;
  color: #9ed8ff;
  background: rgba(217,145,255,.075);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.sol-card__body p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.sol-card__body .btn-ghost {
  margin-top: auto;
  padding-top: 10px;
}
.solutions-page #enterprise .sol-card .sol-tag {
  border-color: rgba(224,163,182,.2);
  color: var(--pink-txt);
  background: rgba(196,87,255,.08);
}
@media (max-width: 1000px) {
  .solutions-hero__panel {
    grid-template-columns: 1fr;
  }
  .solutions-hero__media {
    min-height: 360px;
  }
  .solutions-hero__media::before {
    background: linear-gradient(0deg, rgba(4,6,15,.8), transparent 60%);
  }
  .solutions-page .section-heading {
    grid-template-columns: 1fr;
  }
  .sol-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .solutions-page .solutions-hero { padding-top: 24px; }
  .solutions-hero__panel { border-radius: 22px; }
  .solutions-hero__content { padding: 30px 24px 34px; }
  .solutions-hero__media { min-height: 300px; }
  .solutions-hero__proof span { font-size: 13px; }
  .sol-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
  .sol-card__body { min-height: 0; }
  .sol-card__body .btn-ghost { margin-top: 22px; }
}

/* Legal pages */
.legal h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 8px; }
.legal .legal-updated { font-size: 15px; color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 22px; margin: 38px 0 12px; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--muted); font-size: 17px; }
.legal ul { padding-left: 22px; }
.legal .legal-toc { border: 1px solid rgba(242,243,247,.1); border-radius: var(--r-card); padding: 20px 24px; margin: 24px 0 8px; }
.legal .legal-toc a { display: block; color: var(--blue); text-decoration: none; padding: 4px 0; font-size: 16px; }
.legal .legal-toc a:hover { text-decoration: underline; }

/* ══ Wizard v2.1 upgrade ══ */

/* Option cards */
.wz-opt {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  cursor: pointer !important;
  text-align: left !important;
  width: 100% !important;
  transition: background .18s ease, border-color .18s ease, transform .18s ease !important;
  display: block !important;
  margin-bottom: 10px !important;
}
.wz-opt:hover {
  background: rgba(255,255,255,0.09) !important;
  border-color: rgba(255,255,255,0.20) !important;
  transform: scale(1.02) !important;
}
.wz-opt.sel {
  border-color: rgba(217,145,255,0.5) !important;
  background: rgba(217,145,255,0.08) !important;
}

/* Question heading - wizard.js uses .wz-q */
.wz-q {
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
  margin-bottom: 20px !important;
}

/* Step spacing */
#wizard-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Submit / CTA button inside wizard - wizard.js uses .btn-primary.wz-next; wz-submit added on last step */
.wz-submit {
  background: linear-gradient(135deg, var(--pink), var(--violet)) !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 8px !important;
  transition: filter .2s, transform .2s !important;
  animation: none;
}
.wz-submit:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}
.wz-submit.idle {
  animation: submit-pulse 2s ease-in-out infinite;
}
@keyframes submit-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(205,91,255,0); }
  50%       { box-shadow: 0 0 0 6px rgba(205,91,255,0.25); }
}

/* Back button - wizard.js uses .wz-back */
.wz-back {
  background: none !important;
  border: 0 !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 14px !important;
  cursor: pointer !important;
  padding: 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: color .18s !important;
  margin-bottom: 20px !important;
}
.wz-back:hover { color: var(--ink) !important; }

/* Step transition - spring easing */
.wz-step {
  opacity: 0 !important;
  transform: translateX(28px) !important;
  transition: opacity .3s cubic-bezier(0.34,1.56,0.64,1), transform .3s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.wz-step.in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.wz-step.from-left {
  transform: translateX(-28px) !important;
}

/* Progress bar gradient */
#wizard-progress span {
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--blue)) !important;
  transition: width .4s cubic-bezier(0.34,1.56,0.64,1) !important;
}
