/* ═══════════════════════════════════════════════════════════
   YOCLUB MARKETING WEBSITE — style.css
   Design: Premium dark SaaS, blue + golden accents
════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:        #1285ff;
  --primary-dark:   #0a6de0;
  --primary-glow:   rgba(18, 133, 255, 0.22);
  --accent:         #C9A84C;
  --accent-glow:    rgba(201, 168, 76, 0.18);
  --success:        #10b981;
  --warning:        #f59e0b;
  --danger:         #ef4444;
  --whatsapp:       #25d366;
  --purple:         #8b5cf6;

  --bg:             #060b14;
  --bg-2:           #0c1322;
  --bg-card:        rgba(12, 20, 36, 0.85);
  --bg-card-hover:  rgba(16, 27, 50, 0.95);
  --border:         rgba(255, 255, 255, 0.07);
  --border-hover:   rgba(255, 255, 255, 0.15);
  --border-primary: rgba(18, 133, 255, 0.3);

  --text:           #eef3fc;
  --text-muted:     #8ca4c4;
  --text-faint:     #4a6080;

  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px var(--primary-glow);
  --shadow-accent-glow: 0 0 60px var(--accent-glow);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: .3s;

  --max-w: 1160px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section-pad { padding-block: 7rem; }

.gradient-text {
  background: linear-gradient(130deg, var(--primary) 20%, #7c3aed 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-block: .75rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(18, 133, 255, 0.1);
  border: 1px solid rgba(18, 133, 255, 0.25);
  color: var(--primary);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 0 0 0 var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
}
.btn-primary.btn-lg  { padding: .85rem 2rem;  font-size: 1rem; }
.btn-primary.btn-xl  { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost-nav {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn-ghost-nav:hover { color: var(--text); background: var(--border); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: color var(--dur), border-color var(--dur), background var(--dur);
}
.btn-ghost-light:hover { color: var(--text); border-color: var(--border-hover); background: rgba(255,255,255,.04); }
.btn-ghost-light.btn-lg  { padding: .85rem 2rem;  font-size: 1rem; }
.btn-ghost-light.btn-xl  { padding: 1rem 2.25rem; font-size: 1.05rem; }

.btn-outline-plan {
  display: block;
  width: 100%;
  padding: .75rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  transition: background var(--dur), color var(--dur);
}
.btn-outline-plan:hover { background: var(--primary); color: #fff; }

/* ── ORB ANIMATION ───────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(.95); }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background var(--dur), box-shadow var(--dur), border-color var(--dur);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav-wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 36px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.logo-fallback {
  display: none;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-inline: auto;
}
.nav-links a {
  padding: .45rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-trial { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem 1.25rem 1.25rem;
  background: rgba(6,11,20,.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .6rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: background var(--dur), color var(--dur);
}
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .55;
  animation: float 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(18,133,255,.35) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.3) 0%, transparent 70%);
  top: 100px; right: -100px;
  animation-delay: -4s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.2) 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -8s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
  padding-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(18,133,255,.1);
  border: 1px solid rgba(18,133,255,.25);
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(18,133,255,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(18,133,255,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(18,133,255,.1); }
}

.hero-heading {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar-stack { display: flex; }
.av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.proof-text { display: flex; flex-direction: column; gap: .1rem; }
.stars { color: var(--accent); font-size: .85rem; letter-spacing: .05em; }
.proof-text span { font-size: .82rem; color: var(--text-muted); }
.proof-text strong { color: var(--text); }

/* ── Hero Visual ─────────────────────────────────────────── */
.hero-visual { position: relative; }

.browser-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,.6),
    0 0 80px var(--primary-glow),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .5s var(--ease);
}
.browser-mockup:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 11px; height: 11px; border-radius: 50%; }
.chrome-url {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: .25rem .75rem;
  font-size: .72rem;
  color: var(--text-muted);
  font-family: monospace;
  flex: 1;
  max-width: 240px;
  margin-inline: auto;
}
.browser-screen {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ═══════════════════════════════════════════════════════════
   HERO ANIMATED DASHBOARD (pure CSS/SVG, replaces screenshot)
════════════════════════════════════════════════════════════ */
.hero-dash {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  background: linear-gradient(160deg, #0c1626, #080f1c);
  font-size: clamp(8px, 1.1vw, 13px);
}
.hero-dash > * { min-width: 0; }

/* sidebar */
.hd-side {
  display: flex; flex-direction: column; align-items: center; gap: .9em;
  padding: 1em .6em;
  background: rgba(255,255,255,.02);
  border-right: 1px solid var(--border);
}
.hd-logo { width: 1.8em; height: 1.8em; border-radius: 7px; background: linear-gradient(135deg, var(--primary), var(--purple)); margin-bottom: .4em; }
.hd-nav { width: 1.6em; height: 1.6em; border-radius: 6px; background: rgba(255,255,255,.06); }
.hd-nav--on { background: var(--primary-glow); box-shadow: inset 0 0 0 1px var(--border-primary); }

/* main */
.hd-main { padding: 1.1em 1.2em; display: flex; flex-direction: column; gap: .9em; overflow: hidden; }
.hd-top { display: flex; align-items: center; justify-content: space-between; }
.hd-h1 { width: 38%; height: .9em; border-radius: 5px; background: rgba(255,255,255,.16); }
.hd-avatar { width: 1.9em; height: 1.9em; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--warning)); }

/* KPI cards */
.hd-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7em; }
.hd-kpi {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 9px; padding: .7em .8em; display: flex; flex-direction: column; gap: .45em;
  opacity: 0; transform: translateY(10px);
  animation: hd-pop .5s var(--ease) forwards;
}
.hd-kpi:nth-child(1){animation-delay:.15s}
.hd-kpi:nth-child(2){animation-delay:.3s}
.hd-kpi:nth-child(3){animation-delay:.45s}
.hd-k-ic { width: 1.5em; height: 1.5em; border-radius: 6px; background: color-mix(in srgb, var(--c) 22%, transparent); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c) 45%, transparent); }
.hd-k-big { font-family: var(--font-head); font-weight: 800; font-size: 1.35em; color: var(--text); line-height: 1; }
.hd-k-sub { width: 70%; height: .5em; border-radius: 4px; background: rgba(255,255,255,.08); }

/* chart + donut */
.hd-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: .7em; }
.hd-chart {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 9px; padding: .7em; display: flex; flex-direction: column; gap: .55em;
}
.hd-c-title { width: 40%; height: .55em; border-radius: 4px; background: rgba(255,255,255,.1); }
.hd-svg { width: 100%; height: auto; display: block; flex: 1; }
.hd-line {
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: hd-draw 2s var(--ease) .5s forwards;
}
.hd-area { opacity: 0; animation: hd-fade 1s ease .9s forwards; }
.hd-dot { opacity: 0; animation: hd-fade .4s ease 2.2s forwards, hd-ping 2s ease-in-out 2.4s infinite; transform-origin: 280px 22px; }

.hd-donut {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 9px; padding: .7em; display: grid; place-items: center; gap: .5em;
}
@property --hd-deg { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.hd-ring {
  --hd-deg: 0deg;
  width: 4.2em; height: 4.2em; border-radius: 50%;
  background:
    radial-gradient(closest-side, #0c1626 66%, transparent 67%),
    conic-gradient(var(--primary), var(--purple) var(--hd-deg), rgba(255,255,255,.06) var(--hd-deg));
  animation: hd-donut 1.6s var(--ease) .6s forwards;
}
.hd-d-lbl { width: 60%; height: .5em; border-radius: 4px; background: rgba(255,255,255,.1); }

/* activity list */
.hd-list { display: flex; flex-direction: column; gap: .55em; }
.hd-li {
  display: flex; align-items: center; gap: .7em;
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  border-radius: 8px; padding: .55em .7em;
  opacity: 0; animation: hd-pop .5s var(--ease) forwards;
}
.hd-li:nth-child(1){animation-delay:.7s}
.hd-li:nth-child(2){animation-delay:.85s}
.hd-li:nth-child(3){animation-delay:1s}
.hd-li-av { width: 1.7em; height: 1.7em; border-radius: 50%; background: linear-gradient(135deg, var(--g1), var(--g2)); flex-shrink: 0; }
.hd-li-tx { flex: 1; height: .6em; border-radius: 4px; background: linear-gradient(90deg, rgba(255,255,255,.14) 0 40%, rgba(255,255,255,.05) 60%); background-size: 200% 100%; animation: hd-shimmer 2.2s linear infinite; }
.hd-li-pill { width: 2.6em; height: 1em; border-radius: 999px; background: rgba(16,185,129,.16); }

@keyframes hd-pop    { to { opacity: 1; transform: translateY(0); } }
@keyframes hd-draw   { to { stroke-dashoffset: 0; } }
@keyframes hd-fade   { to { opacity: 1; } }
@keyframes hd-ping   { 0%,100% { r: 4; } 50% { r: 5.5; } }
@keyframes hd-shimmer{ to { background-position: -200% 0; } }
@keyframes hd-donut  { from { --hd-deg: 0deg; } to { --hd-deg: 320deg; } }

@media (prefers-reduced-motion: reduce) {
  .hd-kpi, .hd-li { opacity: 1; transform: none; animation: none; }
  .hd-line { stroke-dashoffset: 0; animation: none; }
  .hd-area, .hd-dot { opacity: 1; animation: none; }
  .hd-li-tx { animation: none; }
  .hd-ring { --hd-deg: 320deg; animation: none; }
}
.browser-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: var(--primary);
  filter: blur(50px);
  opacity: .2;
  border-radius: 50%;
}

/* floating cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem 1rem;
  background: rgba(12,19,34,.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  font-size: .8rem;
  white-space: nowrap;
}
.floating-card > div:last-child {
  display: flex; flex-direction: column; gap: .05rem;
}
.floating-card strong { font-weight: 700; font-size: .85rem; color: var(--text); }
.floating-card span   { color: var(--text-muted); font-size: .74rem; }
.fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-1 { bottom: 14%; left: -5%; animation: float 8s ease-in-out infinite; }
.fc-2 { top: 20%; right: -6%; animation: float 10s ease-in-out infinite -3s; }
.fc-3 { bottom: 30%; right: -4%; animation: float 9s ease-in-out infinite -6s; }

/* ═══════════════════════════════════════════════════════════
   TRUSTED
════════════════════════════════════════════════════════════ */
.trusted {
  padding-block: 2.5rem;
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.015);
  overflow: hidden;
}
.trusted-label {
  text-align: center;
  font-size: .8rem;
  color: var(--text-faint);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.trusted-track { overflow: hidden; position: relative; }
.trusted-track::before,
.trusted-track::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100px;
  z-index: 2;
}
.trusted-track::before { background: linear-gradient(90deg, var(--bg), transparent); left: 0; }
.trusted-track::after  { background: linear-gradient(-90deg, var(--bg), transparent); right: 0; left: auto; }

.trusted-items {
  display: flex;
  gap: 1.5rem;
  animation: marquee 38s linear infinite;
  width: max-content;
  align-items: center;
}
.trusted-items:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Animated monogram brand chips ───────────────────────── */
.brand-chip {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  padding: .55rem .95rem .55rem .55rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  cursor: default;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.brand-chip:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--g1) 55%, transparent);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--g1) 22%, transparent);
}

/* Gradient monogram tile with a slow rotating conic ring */
.brand-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.35),
              0 4px 14px color-mix(in srgb, var(--g1) 35%, transparent);
  isolation: isolate;
}
.brand-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: conic-gradient(from 0deg, var(--g1), var(--g2), var(--g1));
  z-index: -1;
  opacity: 0;
  animation: badge-spin 6s linear infinite;
  transition: opacity var(--dur) var(--ease);
}
.brand-chip:hover .brand-badge::before { opacity: .9; }
/* Glossy sheen sweep */
.brand-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
}
.brand-chip:hover .brand-badge::after { animation: badge-sheen .8s var(--ease); }

@keyframes badge-spin  { to { transform: rotate(360deg); } }
@keyframes badge-sheen { to { transform: translateX(120%); } }

.brand-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color var(--dur);
}
.brand-chip:hover .brand-name { color: var(--text); }

@media (prefers-reduced-motion: reduce) {
  .trusted-items { animation: none; flex-wrap: wrap; justify-content: center; }
  .brand-badge::before { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════════════ */
.features { background: var(--bg-2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feat-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
  opacity: 0;
  transform: translateY(24px);
}
.feat-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--c, 18,133,255), .1);
  border: 1px solid rgba(var(--c, 18,133,255), .15);
  margin-bottom: 1.25rem;
  color: var(--c, #1285ff);
}
/* Workaround: apply color via individual vars */
.feat-icon[style*="--c:#1285ff"] { background: rgba(18,133,255,.1); border-color: rgba(18,133,255,.15); }
.feat-icon[style*="--c:#10b981"] { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.15); }
.feat-icon[style*="--c:#f59e0b"] { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.15); }
.feat-icon[style*="--c:#25d366"] { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.15); }
.feat-icon[style*="--c:#8b5cf6"] { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.15); }
.feat-icon[style*="--c:#ef4444"] { background: rgba(239,68,68,.1);  border-color: rgba(239,68,68,.15); }

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.feat-card p {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.65;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.feat-list li {
  font-size: .8rem;
  color: var(--text-faint);
  padding-left: 1.1rem;
  position: relative;
}
.feat-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: .7rem;
}

/* ═══════════════════════════════════════════════════════════
   SHOWCASE
════════════════════════════════════════════════════════════ */
.showcase-row { padding-block: 6rem; }
.showcase-row--alt { background: var(--bg-2); }

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.showcase-inner--rev { direction: rtl; }
.showcase-inner--rev > * { direction: ltr; }

.showcase-copy[data-reveal] {
  opacity: 0;
  transform: translateX(-24px);
}
.showcase-copy.revealed {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.showcase-img[data-reveal] {
  opacity: 0;
  transform: translateX(24px);
}
.showcase-inner--rev .showcase-copy[data-reveal] { transform: translateX(24px); }
.showcase-inner--rev .showcase-img[data-reveal]  { transform: translateX(-24px); }
.showcase-img.revealed {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .7s var(--ease) .15s, transform .7s var(--ease) .15s;
}

.showcase-copy .section-badge { margin-bottom: 1rem; }
.showcase-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.showcase-copy > p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.showcase-copy .btn-primary { margin-top: .75rem; }

.check-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: .5rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(18,133,255,.12);
  color: var(--primary);
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ss-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 50px var(--primary-glow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ss-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 70px var(--primary-glow);
}
.ss-frame--dark {
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 50px var(--accent-glow);
}
.ss-frame--dark:hover { box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 70px var(--accent-glow); }
.ss-frame img { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   ANIMATED MODULE MOCKUPS (pure CSS, replace screenshots)
════════════════════════════════════════════════════════════ */
.mock {
  background: linear-gradient(160deg, #0d1626, #0a111f);
  font-family: var(--font-body);
  user-select: none;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a3346; flex-shrink: 0; }
.mock-bar i:nth-child(1) { background: #ff5f57; }
.mock-bar i:nth-child(2) { background: #febc2e; }
.mock-bar i:nth-child(3) { background: #28c840; }
.mock-url {
  margin-left: 10px;
  font-size: .68rem;
  color: var(--text-faint);
  letter-spacing: .02em;
  background: rgba(255,255,255,.04);
  padding: 3px 12px;
  border-radius: var(--radius-full);
}
.mock-body { padding: 18px; min-height: 300px; }
.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mock-title { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--text); }
.mock-btn {
  font-size: .68rem; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 5px 11px; border-radius: var(--radius-full);
  box-shadow: 0 4px 14px var(--primary-glow);
}
.mock-tag, .mock-live {
  font-size: .66rem; color: var(--text-faint);
  background: rgba(255,255,255,.05); padding: 3px 10px; border-radius: var(--radius-full);
}
.mock-live { color: var(--success); }
.mock-live::first-letter { color: var(--success); }

/* ── Members ─────────────────────────────────────────────── */
.mock-rows { display: flex; flex-direction: column; gap: 9px; }
.mrow {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  animation: row-in .5s var(--ease) forwards;
}
.mrow:nth-child(1) { animation-delay: .1s; }
.mrow:nth-child(2) { animation-delay: .2s; }
.mrow:nth-child(3) { animation-delay: .3s; }
.mrow:nth-child(4) { animation-delay: .4s; }
.mrow:nth-child(5) { animation-delay: .5s; }
.mav {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: #fff;
  background: linear-gradient(135deg, var(--g1), var(--g2));
}
.mlines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mlines b { height: 8px; width: 55%; border-radius: 4px; background: rgba(255,255,255,.18); }
.mlines i { height: 6px; width: 35%; border-radius: 4px; background: rgba(255,255,255,.08); }
.mpill {
  font-size: .6rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full);
  letter-spacing: .03em;
}
.mpill--ok  { color: var(--success); background: rgba(16,185,129,.14); }
.mpill--due { color: var(--warning); background: rgba(245,158,11,.14); }

/* ── Attendance ──────────────────────────────────────────── */
.attend-grid { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; margin-bottom: 16px; }
.checkin-ring {
  width: 108px; height: 108px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background:
    radial-gradient(closest-side, #0d1626 78%, transparent 79% 100%),
    conic-gradient(var(--success) 72%, rgba(255,255,255,.07) 0);
  position: relative;
}
.checkin-ring::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid rgba(16,185,129,.35);
  animation: pulse-ring 2.4s ease-out infinite;
}
.ring-num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--text); line-height: 1; }
.ring-lbl { font-size: .62rem; color: var(--text-faint); }
.feed { display: flex; flex-direction: column; gap: 8px; }
.feed-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: var(--radius);
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  opacity: 0; transform: translateY(8px);
  animation: feed-in .5s var(--ease) forwards;
}
.feed-item:nth-child(1) { animation-delay: .5s; }
.feed-item:nth-child(2) { animation-delay: .9s; }
.feed-item:nth-child(3) { animation-delay: 1.3s; }
.feed-item:nth-child(4) { animation-delay: 1.7s; }
.fdot { width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp); flex-shrink: 0; box-shadow: 0 0 8px var(--whatsapp); }
.fline { flex: 1; height: 7px; border-radius: 4px; background: rgba(255,255,255,.12); }
.ftick { color: var(--success); font-size: .75rem; font-weight: 700; }
.heat { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.heat i {
  aspect-ratio: 1; border-radius: 4px;
  background: color-mix(in srgb, var(--primary) calc(var(--l) * 85%), transparent);
  animation: heat-glow 3s ease-in-out infinite;
  animation-delay: calc(var(--l) * -1.5s);
}

/* ── Finance ─────────────────────────────────────────────── */
.fin-amount { font-family: var(--font-head); font-weight: 800; font-size: 1.65rem; color: var(--text); margin-bottom: 18px; }
.fin-amount em { font-style: normal; font-size: .8rem; color: var(--success); margin-left: 6px; }
.bars {
  display: flex; align-items: flex-end; gap: 10px;
  height: 120px; padding: 0 4px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.bars span {
  flex: 1; height: var(--h); border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--primary), rgba(18,133,255,.25));
  transform-origin: bottom; transform: scaleY(0);
  animation: bar-grow .8s var(--ease) forwards;
}
.bars span:nth-child(1){animation-delay:.1s}.bars span:nth-child(2){animation-delay:.2s}
.bars span:nth-child(3){animation-delay:.3s}.bars span:nth-child(4){animation-delay:.4s}
.bars span:nth-child(5){animation-delay:.5s}.bars span:nth-child(6){animation-delay:.6s}
.bars span:nth-child(7){animation-delay:.7s}
.bars span:nth-child(6) { background: linear-gradient(180deg, var(--accent), rgba(201,168,76,.3)); }
.fin-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fcard {
  padding: 11px; border-radius: var(--radius);
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 7px;
}
.fcard b { height: 9px; width: 70%; border-radius: 4px; background: rgba(255,255,255,.18); }
.fcard i { height: 6px; width: 45%; border-radius: 4px; background: rgba(255,255,255,.08); }

/* ── Leads Kanban ────────────────────────────────────────── */
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.kcol {
  background: rgba(255,255,255,.02); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px; display: flex; flex-direction: column; gap: 9px;
}
.khdr {
  font-size: .65rem; font-weight: 700; color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between;
}
.khdr em { font-style: normal; color: var(--text-faint); background: rgba(255,255,255,.06); padding: 1px 7px; border-radius: var(--radius-full); }
.khdr--won { color: var(--success); }
.kcard { height: 38px; border-radius: 7px; background: rgba(255,255,255,.04); border: 1px solid var(--border); }
.kcard--won { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.2); }
.kcard--move { animation: card-float 3.2s var(--ease) infinite; }

/* ── Mockup keyframes ────────────────────────────────────── */
@keyframes row-in   { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes feed-in  { to { opacity: 1; transform: translateY(0); } }
@keyframes bar-grow { to { transform: scaleY(1); } }
@keyframes pulse-ring { 0% { transform: scale(.95); opacity: .8; } 100% { transform: scale(1.18); opacity: 0; } }
@keyframes heat-glow { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes card-float {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 transparent; }
  50% { transform: translateY(-6px) rotate(-1.5deg); box-shadow: 0 8px 20px rgba(0,0,0,.4); }
}

@media (prefers-reduced-motion: reduce) {
  .mrow, .feed-item, .bars span, .bubble { opacity: 1; transform: none; animation: none; }
  .heat i, .kcard--move, .checkin-ring::after { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════════════ */
.stats { position: relative; overflow: hidden; }

.stats-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-stats-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(18,133,255,.2) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: float 14s ease-in-out infinite;
  border-radius: 50%;
  position: absolute;
  filter: blur(80px);
}
.orb-stats-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: float 11s ease-in-out infinite -5s;
  border-radius: 50%;
  position: absolute;
  filter: blur(80px);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-card {
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--dur), border-color var(--dur);
  opacity: 0;
  transform: translateY(20px);
}
.stat-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color var(--dur);
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border-primary); }

.stat-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(130deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .4rem;
  min-height: 3.3rem;
}
.stat-lbl {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
}
.stat-card p { font-size: .8rem; color: var(--text-faint); }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════ */
.how { background: var(--bg-2); }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-card {
  flex: 1;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur);
  opacity: 0;
  transform: translateY(20px);
}
.step-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.step-card:hover { transform: translateY(-4px); border-color: var(--border-primary); box-shadow: var(--shadow-card); }

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(130deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .25;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,133,255,.1);
  border: 1px solid rgba(18,133,255,.2);
  margin-bottom: 1.25rem;
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.step-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.step-arrow {
  align-self: center;
  flex-shrink: 0;
  margin-top: -2rem;
  padding-top: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   MODULES PILLS
════════════════════════════════════════════════════════════ */
.pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem 1rem;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  transition: background var(--dur), border-color var(--dur), color var(--dur), transform var(--dur);
  cursor: default;
}
.pill:hover {
  background: rgba(18,133,255,.08);
  border-color: rgba(18,133,255,.2);
  color: var(--text);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonials { background: var(--bg-2); }

.testi-disclaimer {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.testi-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur), border-color var(--dur);
  opacity: 0;
  transform: translateY(20px);
}
.testi-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color var(--dur);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }

.testi-card--accent {
  background: linear-gradient(135deg, rgba(18,133,255,.06), rgba(139,92,246,.06));
  border-color: rgba(18,133,255,.2);
}
.testi-card--accent:hover { border-color: rgba(18,133,255,.35); }

.testi-stars { color: var(--accent); font-size: 1rem; letter-spacing: .1em; }

.testi-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author div:last-child { display: flex; flex-direction: column; gap: .15rem; }
.testi-author strong { font-size: .9rem; color: var(--text); }
.testi-author span { font-size: .78rem; color: var(--text-faint); }

/* ═══════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════════ */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.toggle-opt {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-faint);
  transition: color var(--dur);
  cursor: pointer;
}
.toggle-opt.active { color: var(--text); }

.tgl-wrap { position: relative; display: inline-flex; cursor: pointer; }
.tgl-wrap input { opacity: 0; width: 0; height: 0; position: absolute; }
.tgl-track {
  width: 44px; height: 24px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  border: 1px solid var(--border);
  position: relative;
  transition: background var(--dur);
}
.tgl-track.active { background: var(--primary); border-color: var(--primary); }
.tgl-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  transition: transform var(--dur) var(--ease);
}
.tgl-track.active .tgl-thumb { transform: translateX(20px); }

.save-tag {
  font-size: .7rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: var(--radius-full);
  background: rgba(16,185,129,.15);
  color: var(--success);
  border: 1px solid rgba(16,185,129,.25);
  margin-left: .35rem;
  font-style: normal;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.plan-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--dur), border-color var(--dur);
  opacity: 0;
  transform: translateY(20px);
}
.plan-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color var(--dur);
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }

.plan-card--pop {
  background: linear-gradient(160deg, rgba(18,133,255,.1) 0%, rgba(139,92,246,.06) 100%);
  border-color: rgba(18,133,255,.35);
  box-shadow: 0 0 40px rgba(18,133,255,.1), inset 0 1px 0 rgba(255,255,255,.06);
}
.plan-card--pop:hover { border-color: rgba(18,133,255,.6); }

.pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: .25rem .9rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  white-space: nowrap;
}

.plan-top { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.plan-name { font-size: 1.1rem; font-weight: 700; margin-bottom: .85rem; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  margin-bottom: .6rem;
}
.currency { font-size: 1.2rem; font-weight: 700; color: var(--text-muted); }
.amount {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.period { font-size: .85rem; color: var(--text-faint); }
.plan-tagline { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.75rem;
}
.plan-feats li { font-size: .85rem; display: flex; align-items: center; gap: .5rem; }
.plan-feats li.yes { color: var(--text-muted); }
.plan-feats li.yes::before { content: '✓'; color: var(--success); font-weight: 700; }
.plan-feats li.no  { color: var(--text-faint); }
.plan-feats li.no::before  { content: '✕'; color: var(--text-faint); }

.pricing-note {
  text-align: center;
  font-size: .85rem;
  color: var(--text-faint);
  margin-top: 2.5rem;
}
.pricing-note strong { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.faq { background: var(--bg-2); }
.faq-wrap { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--dur);
}
.faq-item.open { border-color: var(--border-primary); }
.faq-item:hover { border-color: var(--border-hover); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--dur);
}
.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  padding: 0 1.25rem;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.25rem 1.1rem;
}
.faq-a p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   CTA
════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding-block: 8rem;
  overflow: hidden;
  text-align: center;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,133,255,.25) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-60%);
  filter: blur(80px);
  animation: float 12s ease-in-out infinite;
}
.orb-cta-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.2) 0%, transparent 70%);
  bottom: -100px; right: 10%;
  filter: blur(80px);
  animation: float 9s ease-in-out infinite -4s;
}
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
}

.cta-body {
  position: relative;
  z-index: 2;
}
.cta-body h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.cta-body > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.cta-features span {
  font-size: .8rem;
  color: var(--text-faint);
}
.cta-features span:first-child { color: var(--success); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-brand {}
.footer-logo { height: 34px; filter: brightness(0) invert(1); margin-bottom: 1.1rem; }
.footer-brand p {
  font-size: .85rem;
  color: var(--text-faint);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.contact-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.25rem; }
.contact-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  padding: .5rem .9rem; border-radius: var(--radius-full);
  transition: border-color var(--dur), background var(--dur), transform var(--dur);
}
.contact-link svg { color: var(--primary); }
.contact-link:hover { border-color: var(--border-primary); transform: translateY(-2px); }
.contact-link--wa { color: var(--whatsapp); }
.contact-link--wa svg { color: var(--whatsapp); }
.contact-link--wa:hover { border-color: rgba(37,211,102,.4); background: rgba(37,211,102,.08); }

.social-row { display: flex; gap: .6rem; }
.soc-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.soc-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .85rem;
  color: var(--text-faint);
  transition: color var(--dur);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-faint);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL BASE STATE
════════════════════════════════════════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

/* ═══════════════════════════════════════════════════════════
   CLIENTS / PORTFOLIO PAGE
════════════════════════════════════════════════════════════ */
.navbar--solid {
  background: rgba(6, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-links a { position: relative; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute;
  left: .85rem; right: .85rem; bottom: .15rem; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
}

/* hero */
.pf-hero {
  position: relative;
  padding: 9rem 0 4rem;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pf-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.pf-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 30%, transparent 75%);
}
.pf-hero-inner { position: relative; max-width: 760px; }
.pf-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; letter-spacing: -.02em;
  margin: 1rem 0 1.1rem;
}
.pf-hero > .container > p,
.pf-hero-inner p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.pf-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.pf-stat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.1rem .5rem;
  transition: border-color var(--dur), transform var(--dur);
}
.pf-stat:hover { border-color: var(--border-primary); transform: translateY(-3px); }
.pf-stat strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 1.9rem; line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.pf-stat span { font-size: .78rem; color: var(--text-faint); }

/* grid section */
.pf-section { padding: 5rem 0 6rem; }
.pf-note { font-size: .85rem; opacity: .6; margin-top: .5rem; }
.pf-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}

.pf-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem 1.6rem;
  text-align: center;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
/* gradient aura that lights up on hover, tinted per-brand via --g1 */
.pf-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(120% 80% at 50% -10%, color-mix(in srgb, var(--g1) 22%, transparent), transparent 60%);
  transition: opacity var(--dur);
  pointer-events: none;
}
.pf-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--g1) 50%, transparent);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--g1) 18%, transparent);
}
.pf-card:hover::before { opacity: 1; }

.pf-ribbon {
  position: absolute; top: 14px; right: -28px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: #fff; font-size: .58rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 34px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.pf-badge {
  position: relative;
  display: grid; place-items: center;
  width: 74px; height: 74px; margin: .4rem auto 1.1rem;
  border-radius: 20px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #fff;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: inset 0 1px 2px rgba(255,255,255,.4),
              0 10px 28px color-mix(in srgb, var(--g1) 35%, transparent);
  isolation: isolate;
}
.pf-badge::before {
  content: ''; position: absolute; inset: -2px; border-radius: 22px; z-index: -1;
  background: conic-gradient(from 0deg, var(--g1), var(--g2), var(--g1));
  opacity: 0; transition: opacity var(--dur);
  animation: badge-spin 6s linear infinite;
}
.pf-card:hover .pf-badge::before { opacity: .95; }
.pf-badge::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-130%);
}
.pf-card:hover .pf-badge::after { animation: badge-sheen .9s var(--ease); }

.pf-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .25rem; }
.pf-type { color: var(--text-faint); font-size: .82rem; margin-bottom: 1rem; }
.pf-tags { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-bottom: 1rem; }
.pf-tags span {
  font-size: .66rem; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: var(--radius-full);
}
.pf-stars { color: var(--accent); font-size: .85rem; letter-spacing: .12em; }

/* invite card */
.pf-card--invite {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-style: dashed; border-color: var(--border-hover);
  background: transparent;
}
.pf-card--invite:hover { transform: translateY(-6px); border-color: var(--border-primary); box-shadow: none; }
.pf-plus {
  width: 74px; height: 74px; margin: .4rem auto 1.1rem;
  display: grid; place-items: center; border-radius: 20px;
  font-size: 2.2rem; font-weight: 300; color: var(--primary);
  border: 2px dashed var(--border-primary);
}
.pf-invite-btn { margin-top: 1rem; }

/* ── All-clients wall ────────────────────────────────────── */
.pf-section--all { padding-top: 1rem; border-top: 1px solid var(--border); }

.gym-search {
  position: relative; max-width: 420px; margin: 2rem auto 2.5rem;
  display: flex; align-items: center;
}
.gym-search svg { position: absolute; left: 1rem; color: var(--text-faint); pointer-events: none; }
.gym-search input {
  width: 100%; padding: .8rem 1rem .8rem 2.8rem;
  font-family: var(--font-body); font-size: .95rem; color: var(--text);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-full); outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.gym-search input::placeholder { color: var(--text-faint); }
.gym-search input:focus { border-color: var(--border-primary); box-shadow: 0 0 0 4px var(--primary-glow); }

.gym-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: .75rem;
}
.gym-chip {
  display: flex; align-items: center; gap: .7rem;
  padding: .55rem .9rem .55rem .55rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.gym-chip:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--g1) 55%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--g1) 20%, transparent);
}
.gym-badge {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  font-family: var(--font-head); font-style: normal; font-weight: 800;
  font-size: .72rem; letter-spacing: .01em; color: #fff;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.35), 0 4px 12px color-mix(in srgb, var(--g1) 30%, transparent);
}
.gym-name {
  font-size: .85rem; font-weight: 600; color: var(--text-muted);
  line-height: 1.25; transition: color var(--dur);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gym-chip:hover .gym-name { color: var(--text); }
.gym-empty { text-align: center; color: var(--text-faint); margin-top: 2rem; }

/* trailing "+N more" chip */
.gym-chip--more {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-card));
}
.gym-chip--more .gym-badge {
  background: linear-gradient(135deg, var(--accent), var(--warning));
  font-size: .8rem; box-shadow: inset 0 1px 1px rgba(255,255,255,.35), 0 4px 12px var(--accent-glow);
}
.gym-chip--more .gym-name { color: var(--accent); font-weight: 700; }
.gym-chip--more:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--accent-glow);
}

@media (max-width: 1024px) {
  .pf-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pf-grid  { grid-template-columns: repeat(2, 1fr); }
  .pf-stats { grid-template-columns: repeat(2, 1fr); }
  .pf-hero  { padding-top: 7rem; }
  .gym-wall { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 480px) {
  .pf-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */

/* ── Tablet (max 1024px) ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-body           { grid-template-columns: 1fr; text-align: center; }
  .hero-text           { order: 1; max-width: 680px; margin-inline: auto; }
  .hero-visual         { order: 2; max-width: 680px; margin-inline: auto; }
  .hero-actions        { justify-content: center; }
  .hero-proof          { justify-content: center; }
  .hero-sub            { max-width: 100%; }

  .fc-1, .fc-2, .fc-3 { display: none; }

  .features-grid       { grid-template-columns: repeat(2, 1fr); }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .testi-grid          { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .plans-grid          { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }

  .steps-row           { flex-direction: column; }
  .step-arrow          { display: none; }

  .showcase-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .showcase-inner--rev { direction: ltr; }

  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .footer-brand        { grid-column: 1 / -1; }
}

/* ── Mobile (max 768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  .section-pad { padding-block: 5rem; }

  .nav-links, .nav-cta  { display: none; }
  .hamburger             { display: flex; }
  .nav-trial             { display: none; }

  .browser-mockup        { transform: none; }
  .browser-mockup:hover  { transform: none; }

  .features-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom-inner { flex-direction: column; gap: .5rem; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-features { flex-direction: column; align-items: center; gap: .6rem; }

  .hero { min-height: auto; }
}

/* ── Small mobile (max 480px) ────────────────────────────── */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .chrome-url { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-ghost-light { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   SOLUTIONS MEGA MENU
════════════════════════════════════════════════════════════ */
.has-mega { position: relative; }
.has-mega > a::after {
  content: '▾'; font-size: .7em; margin-left: .35rem;
  display: inline-block; transition: transform var(--dur);
}
.has-mega:hover > a::after,
.has-mega.mega-open > a::after { transform: rotate(180deg); }

.mega {
  position: fixed;
  left: 50%; top: 64px;
  transform: translateX(-50%) translateY(10px);
  width: min(1060px, calc(100vw - 2rem));
  background: rgba(10, 16, 28, 0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.02) inset;
  padding: 1.5rem;
  display: grid; grid-template-columns: 1fr 2fr; gap: 1.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 1200;
}
/* transparent bridge so the cursor can cross the gap from label to panel */
.mega::before {
  content: ''; position: absolute; left: 0; right: 0; top: -22px; height: 22px;
}
.has-mega:hover .mega,
.has-mega.mega-open .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-col--ind {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
.mega-head {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-faint);
  margin-bottom: .85rem; display: flex; align-items: center; justify-content: space-between;
}
.mega-count {
  font-size: .62rem; font-weight: 700; letter-spacing: .02em; text-transform: none;
  color: var(--primary); background: var(--primary-glow);
  padding: 2px 8px; border-radius: var(--radius-full);
}
.mega-list { display: flex; flex-direction: column; gap: .15rem; }
.mega-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .15rem;
  max-height: 360px; overflow-y: auto;
}
.mega-grid::-webkit-scrollbar { width: 8px; }
.mega-grid::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 8px; }

.mega-item {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .55rem .6rem; border-radius: var(--radius);
  transition: background var(--dur);
}
.mega-item:hover { background: rgba(255,255,255,.05); }
.mega-ic {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center; font-size: .95rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  transition: background var(--dur), border-color var(--dur);
}
.mega-ic svg { width: 18px; height: 18px; color: var(--primary); }
.mega-emoji { font-size: 1rem; }
.mega-item:hover .mega-ic {
  background: var(--primary-glow);
  border-color: var(--border-primary);
}
.mega-tx { display: flex; flex-direction: column; min-width: 0; }
.mega-tx strong { font-size: .85rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.mega-tx small { font-size: .72rem; color: var(--text-faint); line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   SOLUTION DETAIL PAGE
════════════════════════════════════════════════════════════ */
.sol-hero {
  position: relative; overflow: hidden;
  padding: 9rem 0 4rem; text-align: center;
  border-bottom: 1px solid var(--border);
}
.sol-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.sol-hero-inner { position: relative; max-width: 760px; }
.sol-crumb { font-size: .8rem; color: var(--text-faint); margin-bottom: 1.5rem; }
.sol-crumb a { color: var(--text-muted); }
.sol-crumb a:hover { color: var(--text); }
.sol-crumb span { margin: 0 .4rem; opacity: .5; }
.sol-badge {
  width: 84px; height: 84px; margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  box-shadow: inset 0 1px 2px rgba(255,255,255,.4), 0 16px 40px var(--primary-glow);
}
.sol-badge svg { width: 40px; height: 40px; color: #fff; }
.sol-emoji { font-size: 2.4rem; }
.sol-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -.02em; }
.sol-tag { font-size: 1.15rem; font-weight: 700; margin: .6rem 0 1rem; }
.sol-intro { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }
.sol-hero-cta { display: flex; gap: .8rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

/* split hero with animated visual */
.sol-hero--split { text-align: left; }
.sol-hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.sol-hero--split .sol-badge { margin: 0 0 1.4rem; }
.sol-hero--split .sol-intro { margin: 0; max-width: none; }
.sol-hero--split .sol-hero-cta { justify-content: flex-start; }
.sol-visual { perspective: 1200px; }
.sol-visual .ss-frame { transform: perspective(1200px) rotateY(-6deg); }
.sol-visual .ss-frame:hover { transform: perspective(1200px) rotateY(0deg) translateY(-6px); }

/* chat mockup */
.mock-chat .chat-stream { display: flex; flex-direction: column; gap: .6rem; min-height: 200px; }
.bubble {
  max-width: 78%; padding: .7em .8em; border-radius: 14px;
  display: flex; flex-direction: column; gap: 6px; position: relative;
  opacity: 0; transform: translateY(8px); animation: feed-in .5s var(--ease) forwards;
}
.bubble b { height: 7px; width: 90px; border-radius: 4px; background: rgba(255,255,255,.22); }
.bubble i { height: 6px; width: 60px; border-radius: 4px; background: rgba(255,255,255,.12); }
.bubble--in  { align-self: flex-start; background: rgba(255,255,255,.06); border-bottom-left-radius: 4px; }
.bubble--out { align-self: flex-end; background: rgba(37,211,102,.16); border: 1px solid rgba(37,211,102,.25); border-bottom-right-radius: 4px; }
.bubble:nth-child(1){animation-delay:.3s}.bubble:nth-child(2){animation-delay:.7s}
.bubble:nth-child(3){animation-delay:1.1s}.bubble:nth-child(4){animation-delay:1.5s}
.bticks { position: absolute; right: 8px; bottom: 5px; font-size: .55rem; color: #34d399; }
.chat-bar {
  display: flex; align-items: center; gap: .6rem; margin-top: .9rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: .5rem .6rem .5rem 1rem;
}
.chat-input { flex: 1; height: 8px; border-radius: 4px; background: rgba(255,255,255,.08); }
.chat-send {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: .7rem; color: #fff;
  background: var(--whatsapp); box-shadow: 0 4px 12px rgba(37,211,102,.4);
}

.sol-section { padding: 5rem 0; }
.sol-section--alt { background: var(--bg-2); }

.sol-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 3rem;
}
.sol-step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color var(--dur), transform var(--dur);
}
.sol-step:hover { border-color: var(--border-primary); transform: translateY(-4px); }
.sol-step-no {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  box-shadow: 0 6px 16px var(--primary-glow);
}
.sol-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.sol-step p { color: var(--text-muted); font-size: .92rem; line-height: 1.6; }

.sol-benefits {
  list-style: none; margin-top: 3rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  max-width: 820px; margin-inline: auto;
}
.sol-benefits li {
  display: flex; align-items: center; gap: .8rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  font-size: .98rem; color: var(--text);
}
.sol-benefits li svg { flex-shrink: 0; color: var(--success); }

@media (max-width: 900px) {
  .mega { grid-template-columns: 1fr; max-height: 80vh; overflow-y: auto; }
  .sol-steps { grid-template-columns: 1fr; }
  .sol-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sol-hero--split { text-align: center; }
  .sol-hero--split .sol-badge { margin: 0 auto 1.4rem; }
  .sol-hero--split .sol-intro { margin: 0 auto; max-width: 620px; }
  .sol-hero--split .sol-hero-cta { justify-content: center; }
  .sol-visual .ss-frame, .sol-visual .ss-frame:hover { transform: none; }
}
@media (max-width: 768px) {
  .sol-benefits { grid-template-columns: 1fr; }
  .sol-hero { padding-top: 7rem; }
}
