/* ═══════════════════════════════════════════════════════════════════════════
   BizSense App — Design System (Light)
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --bg:      #ffffff;
  --bg2:     #f8fafc;
  --surface: #ffffff;
  --border:  #e2e8f0;
  --border2: #cbd5e1;
  --blue:    #10b981;
  --blue2:   #059669;
  --dark:    #0f172a;
  --text:    #0f172a;
  --muted:   #64748b;
  --dim:     #94a3b8;
  --gold:    #f59e0b;
  --green:   #10b981;
  --font-d:  'Space Grotesk', system-ui, sans-serif;
  --font-b:  'Inter', system-ui, sans-serif;
  --font-m:  'JetBrains Mono', monospace;
  --shadow:  0 2px 16px rgba(15,23,42,0.07);
  --r-xl:    20px;
  --r-lg:    14px;
  --r-md:    10px;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); }
h3 { font-size: clamp(0.95rem, 1.4vw, 1.15rem); }

/* ── Brand ─────────────────────────────────────────────────────────────────── */
.biz   { color: var(--blue2); }
.sense { color: var(--dark); }
.pos   { color: var(--dark); }
.brand-inline { font-family: var(--font-d); font-weight: 700; }

.gtext { font-style: normal; color: var(--blue); }

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

/* ── Card ──────────────────────────────────────────────────────────────────── */
.glass-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--r-lg);
}
.glass-card::before { display: none; }

/* ── Pricing border ────────────────────────────────────────────────────────── */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.glow-border { border: 2px solid var(--blue); }
.glow-border::after { display: none; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(16,185,129,0.28);
}
.btn-primary::before { display: none; }
.btn-primary span, .btn-primary svg { position: relative; }
.btn-primary:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.34);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  font-size: 13px;
}
.btn-ghost:hover { color: var(--dark); border-color: var(--border2); transform: translateY(-1px); }
.btn-xl { padding: 15px 30px; font-size: 15px; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(34,197,94,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(34,197,94,0.3); }

/* ── Loader — removed from HTML ────────────────────────────────────────────── */
.site-loader { display: none !important; }

/* ── Custom cursor — removed ───────────────────────────────────────────────── */
.cursor-dot, .cursor-ring { display: none !important; }
html.has-fancy-cursor, html.has-fancy-cursor * { cursor: auto !important; }

/* ── Scroll progress ───────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--blue);
  z-index: 9997;
}

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; inset: 0 0 auto; z-index: 90;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 40px);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s, box-shadow 0.3s;
}
.navbar.compact { height: 54px; }
.navbar.scrolled { box-shadow: 0 2px 12px rgba(15,23,42,0.07); }
.nav-brand { display: flex; align-items: center; gap: 0; }
.nav-logo-box { display: none; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-text span { font-size: 1.1rem; line-height: 1; color: var(--dark); }
.nav-brand-text small { font-size: 10px; color: var(--dim); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: var(--muted); font-size: 13.5px; font-weight: 600;
  position: relative; transition: color 0.18s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1.5px; background: var(--blue);
  transition: right 0.22s; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border: none; background: transparent; border-radius: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all 0.28s;
}
@media (max-width: 900px) { .nav-links { display: none; } .hamburger { display: flex; } .nav-wa { display: none; } }

/* ── Mobile overlay ────────────────────────────────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.overlay-nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.overlay-link {
  font-family: var(--font-d); font-size: 2rem; font-weight: 700;
  color: var(--muted); letter-spacing: -0.03em;
  padding: 6px 0;
  transition: color 0.18s, transform 0.18s;
}
.overlay-link:hover { color: var(--dark); transform: translateX(8px); }
.overlay-wa { margin-top: 20px; }
.overlay-close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); font-size: 1rem;
  display: grid; place-items: center;
  transition: background 0.18s, color 0.18s;
}
.overlay-close:hover { background: var(--bg2); color: var(--dark); }

/* ── Section base ──────────────────────────────────────────────────────────── */
.section {
  padding: clamp(64px, 9vw, 104px) 0;
  position: relative;
}
.section-alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px; border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.28);
  background: rgba(16,185,129,0.06);
  color: var(--blue2); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before { content: '◆'; font-size: 7px; color: var(--blue); }
.section-title { margin-bottom: 14px; max-width: 880px; }
.section-sub {
  color: var(--muted); font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  line-height: 1.75; max-width: 740px; margin-bottom: 48px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  padding: clamp(110px, 14vw, 150px) 0 clamp(64px, 9vw, 96px);
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}
.hero::before { display: none; }
.orb, .orb-a, .orb-b, .orb-c { display: none; }
.hero-grid-mesh { display: none; }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.28);
  background: rgba(16,185,129,0.06);
  color: var(--blue2); font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; margin-bottom: 20px;
}
.badge-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.hero-title {
  max-width: 840px;
  margin-bottom: 20px;
  color: var(--dark);
}
.hero-br { display: block; }
.hero-desc {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.75; max-width: 680px;
  margin-bottom: 26px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 30px;
}
.hpill {
  padding: 5px 13px; border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted); font-size: 12.5px; font-weight: 600;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-bottom: 48px;
}

/* KSP cards */
.hero-ksp {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 900px;
}
.ksp-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s;
}
.ksp-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 8px 24px rgba(16,185,129,0.1); }
.ksp-icon { font-size: 1.5rem; flex-shrink: 0; }
.ksp-text strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; color: var(--dark); }
.ksp-text span   { font-size: 11.5px; color: var(--muted); line-height: 1.4; }

/* Marquee */
.marquee-bar {
  position: relative;
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  margin-top: 32px;
}
.marquee-inner {
  display: flex; gap: 32px;
  width: max-content; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.mq-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 13px; font-weight: 600;
}
.mq-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ── Trust bar ─────────────────────────────────────────────────────────────── */
.trust-bar {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 18px 0;
}
.trust-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.ti-icon { font-size: 1.3rem; }
.trust-item strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--dark); }
.trust-item small  { color: var(--dim); font-size: 11px; }
.trust-sep { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
@media (max-width: 860px) { .trust-sep { display: none; } .trust-inner { justify-content: center; } }

/* ── About 4-grid ──────────────────────────────────────────────────────────── */
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.four-grid .glass-card {
  padding: 24px 20px;
  border-radius: var(--r-lg);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s;
}
.four-grid .glass-card:hover { transform: translateY(-6px); border-color: rgba(16,185,129,0.35); box-shadow: 0 10px 28px rgba(16,185,129,0.08); }
.card-num {
  font-family: var(--font-m); font-size: 10px;
  color: var(--blue); font-weight: 700;
  margin-bottom: 12px; letter-spacing: 0.06em;
}
.card-ico { font-size: 2rem; margin-bottom: 12px; }
.four-grid h3 { font-size: 1rem; margin-bottom: 8px; }
.four-grid p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Workflow steps ────────────────────────────────────────────────────────── */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
}
.wf-step { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.wf-node {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(16,185,129,0.35);
  background: rgba(16,185,129,0.06);
  display: grid; place-items: center; flex-shrink: 0;
}
.wf-num { font-family: var(--font-m); font-size: 11px; color: var(--blue); font-weight: 700; }
.wf-card {
  padding: 20px 16px; border-radius: var(--r-lg);
  text-align: center; width: 100%;
  transition: transform 0.22s, border-color 0.22s;
}
.wf-card:hover { transform: translateY(-5px); border-color: rgba(16,185,129,0.35); }
.wf-ico { font-size: 1.6rem; margin-bottom: 10px; }
.wf-card h3 { font-size: 0.94rem; margin-bottom: 8px; }
.wf-card p  { font-size: 12px; color: var(--muted); line-height: 1.62; }

/* ── Modules grid ──────────────────────────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.mod-card {
  padding: 16px;
  border-radius: var(--r-lg);
  display: flex; gap: 12px; align-items: flex-start;
  transition: transform 0.22s, border-color 0.22s;
}
.mod-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.35); }
.mod-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(16,185,129,0.08);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.mod-content strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 3px; color: var(--dark); }
.mod-content small  { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

/* ── Features grid ─────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.feat-card {
  padding: 24px 20px; border-radius: var(--r-lg);
  transition: transform 0.22s, border-color 0.22s;
}
.feat-card:hover { transform: translateY(-5px); border-color: rgba(16,185,129,0.35); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 14px;
  background: rgba(16,185,129,0.08);
}
.feat-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feat-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.feat-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-pill {
  font-size: 11px; font-weight: 600; font-family: var(--font-m);
  padding: 3px 10px; border-radius: 20px;
  background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.2);
  color: var(--blue2);
}

/* ── Pain points ───────────────────────────────────────────────────────────── */
.pain-grid { display: grid; gap: 10px; }
.pain-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s, border-color 0.22s;
}
.pain-card:hover { transform: translateY(-3px); border-color: rgba(16,185,129,0.28); }
.pain-side { padding: 20px 22px; }
.pain-side.problem {
  border-right: 1px solid var(--border);
  background: rgba(244,63,94,0.025);
}
.pain-side.solution { background: rgba(16,185,129,0.025); }
.pain-tag {
  display: inline-block; margin-bottom: 9px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.pain-side.problem .pain-tag { color: #e11d48; }
.pain-side.solution .pain-tag { color: var(--blue2); }
.pain-side p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Compare table ─────────────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cmp-table { width: 100%; min-width: 800px; border-collapse: collapse; }
.cmp-table th, .cmp-table td {
  padding: 14px 18px;
  text-align: left; font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.cmp-table th {
  background: var(--bg2);
  color: var(--dim); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.cmp-table td:first-child { font-weight: 600; width: 260px; color: var(--dark); }
.col-bs { background: rgba(16,185,129,0.04); }
.cmp-yes  { color: #16a34a; font-weight: 700; }
.cmp-no   { color: #cbd5e1; }
.cmp-part { color: #ca8a04; font-weight: 700; }
.cmp-table tbody tr { transition: background 0.15s; }
.cmp-table tbody tr:hover td { background: rgba(16,185,129,0.03); }

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.testi-card {
  padding: 24px 20px; border-radius: var(--r-lg);
  transition: transform 0.22s, border-color 0.22s;
}
.testi-card:hover { transform: translateY(-5px); border-color: rgba(16,185,129,0.28); }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 13px; }
.testi-card > p { font-size: 13px; color: var(--muted); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: grid; place-items: center;
  font-family: var(--font-d); font-weight: 700; color: #fff; flex-shrink: 0;
  font-size: 12px;
}
.testi-author strong { display: block; font-size: 13px; color: var(--dark); }
.testi-author span   { color: var(--dim); font-size: 11px; }

/* ── Pricing ───────────────────────────────────────────────────────────────── */
.pricing-card {
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 46px);
  max-width: 860px; margin: 0 auto;
}
.pricing-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 18px;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-plan-name { font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; color: var(--dark); }
.pricing-plan-sub  { font-size: 13px; color: var(--muted); }
.pricing-amount {
  font-family: var(--font-d); font-size: 3rem; font-weight: 700; line-height: 1; color: var(--dark);
}
.pricing-amount sup { font-size: 1rem; vertical-align: top; margin-top: 5px; color: var(--muted); }
.pricing-amount .period { font-family: var(--font-b); font-size: 14px; color: var(--muted); font-weight: 600; }
.pricing-features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 36px; margin-bottom: 28px;
}
.pf-item {
  padding: 8px 0; font-size: 13px; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.pf-item::before { content: '✓ '; color: var(--blue); font-weight: 700; }
.pricing-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.pricing-note { font-size: 12px; color: var(--dim); text-align: center; }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(16,185,129,0.32); }
.faq-q {
  width: 100%; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border: 0; background: transparent; color: var(--dark);
  font-size: 14.5px; font-weight: 700; text-align: left;
  font-family: var(--font-d);
}
.faq-chevron { flex-shrink: 0; transition: transform 0.24s; color: var(--muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 13.5px; color: var(--muted); line-height: 1.72;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 20px 18px; }

/* ── CTA section ───────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.cta-orb-a, .cta-orb-b { display: none; }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-title { font-size: clamp(1.9rem, 4vw, 3.2rem); margin-bottom: 16px; color: var(--dark); }
.cta-sub   { font-size: clamp(0.92rem, 1.3vw, 1.05rem); color: var(--muted); margin-bottom: 32px; line-height: 1.72; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 40px 0 52px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 0; }
.footer-brand strong { font-size: 1.05rem; color: var(--dark); }
.footer-brand small  { display: block; font-size: 10px; color: var(--dim); }
.footer-desc { color: var(--muted); font-size: 13px; max-width: 460px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: var(--dim); transition: color 0.18s; }
.footer-links a:hover { color: var(--dark); }
.footer-meta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.footer-meta span { font-size: 12px; color: var(--dim); }

/* ── WhatsApp FAB ──────────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  padding: 11px 16px; border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(34,197,94,0.3);
  box-shadow: 0 6px 20px rgba(34,197,94,0.14);
  display: flex; flex-direction: column; gap: 2px;
  transition: transform 0.22s, border-color 0.22s; cursor: pointer;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.01); border-color: rgba(34,197,94,0.5); }
.wa-fab-ring { display: none; }
.wa-fab-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); }
.wa-fab strong { font-family: var(--font-d); font-size: 0.92rem; color: #16a34a; }

/* ══════════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════════════════ */
.ri {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.ri.visible { opacity: 1; transform: translateY(0); }

.si {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.si.visible { opacity: 1; transform: translateY(0); }

/* Hero canvas — not used */
#hero-canvas { display: none; }

/* Hero title always visible */
#h-title { opacity: 1 !important; }
#h-title.particles-active { opacity: 1 !important; pointer-events: auto; }

/* Hero entrance */
#h-badge  { animation: heroFadeUp 0.7s 0.1s ease both; }
#h-title  { animation: heroFadeUp 0.7s 0.2s ease both; }
#h-desc   { animation: heroFadeUp 0.7s 0.3s ease both; }
#h-pills  { animation: heroFadeUp 0.6s 0.4s ease both; }
#h-ctas   { animation: heroFadeUp 0.6s 0.5s ease both; }
#h-ksp    { animation: heroFadeUp 0.7s 0.6s ease both; }

/* Uniform accent */
.ksp-card:nth-child(n) { border-color: var(--border); }
.ksp-card:nth-child(n):hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(16,185,129,0.1); }
.feat-card:nth-child(n) .feat-icon { background: rgba(16,185,129,0.08); }
.section:nth-of-type(n) .section-label { border-color: rgba(16,185,129,0.28); background: rgba(16,185,129,0.06); color: var(--blue2); }
.section-label::before { color: var(--blue); }
.hpill:nth-child(n) { border-color: var(--border); background: var(--bg2); color: var(--muted); }

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes marquee    { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulseDot   { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
@keyframes heroFadeUp { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:translateY(0);} }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .four-grid     { grid-template-columns: repeat(2, 1fr); }
  .modules-grid  { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid     { grid-template-columns: repeat(2, 1fr); }
  .hero-ksp       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .section { padding: 52px 0; }
  .hero { padding: 96px 0 18px; }
  .hero-inner { width: min(100%, 26rem); margin: 0 auto; }
  .hero-badge { display: flex; width: fit-content; max-width: 100%; margin-bottom: 14px; margin-left: auto; margin-right: auto; padding: 5px 11px; font-size: 10.5px; justify-content: center; line-height: 1.4; }
  .hero-title { max-width: 10.2ch; margin-inline: auto; margin-bottom: 14px; line-height: 1.05; }
  .hero-desc { max-width: 20rem; margin-inline: auto; margin-bottom: 18px; font-size: 0.95rem; line-height: 1.62; }
  .hero-pills { max-width: 21rem; margin-inline: auto; margin-bottom: 18px; gap: 7px; }
  .hpill { font-size: 10.5px; padding: 4px 10px; }
  .hero-ctas { width: 100%; max-width: 21rem; margin-inline: auto; margin-bottom: 22px; gap: 10px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline, .hero-ctas .btn-ghost { width: 100%; justify-content: center; text-align: center; white-space: normal; line-height: 1.35; }
  .hero-ksp { max-width: 21rem; margin-inline: auto; gap: 10px; }
  .ksp-card { min-height: 110px; padding: 13px 12px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; text-align: center; }
  .ksp-icon { font-size: 1.3rem; }
  .ksp-text { text-align: center; }
  .ksp-text strong { font-size: 12px; }
  .ksp-text span { font-size: 10.5px; line-height: 1.45; }
  .marquee-bar { margin-top: 22px; padding: 10px 0; }
  .marquee-inner { gap: 22px; animation-duration: 22s; }
  .mq-item { font-size: 11px; }
  .trust-bar { padding: 10px 0; }
  .trust-inner { justify-content: center; text-align: center; }
  .trust-item:not(:last-child) { display: none; }
  .trust-item:last-child { justify-content: center; padding: 5px 13px; border-radius: 999px; border: 1px solid rgba(16,185,129,0.2); background: rgba(16,185,129,0.05); }
  .trust-item:last-child strong, .trust-item:last-child small { display: block; text-align: center; }
  .trust-item:last-child strong { font-size: 12.5px; line-height: 1.35; }
  .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; justify-content: center; }
  .section-title, .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
  .four-grid .glass-card, .wf-card, .mod-card, .feat-card, .pain-side, .testi-card, .pricing-card, .faq-item { text-align: center; }
  .card-num, .card-ico, .pain-tag { margin-left: auto; margin-right: auto; }
  .mod-card { flex-direction: column; align-items: center; gap: 10px; }
  .mod-content { text-align: center; }
  .feat-pills { justify-content: center; }
  .testi-author { justify-content: center; text-align: left; }
  .pricing-top { text-align: center; align-items: center; }
  .pricing-plan-sub, .pricing-note { text-align: center; }
  .cta-actions .btn-primary, .cta-actions .btn-outline { white-space: normal; line-height: 1.35; justify-content: center; }
  .pf-item { text-align: center; }
  .faq-q { text-align: center; }
  .footer-links, .footer-meta { justify-content: center; }
  .wa-fab { right: 12px; bottom: 12px; padding: 9px 11px; border-radius: 13px; max-width: 9.5rem; }
  .wa-fab-label { font-size: 8px; }
  .wa-fab strong { font-size: 0.82rem; }
}
@media (max-width: 600px) {
  h1 { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .four-grid, .workflow-steps, .features-grid, .testi-grid, .modules-grid { grid-template-columns: 1fr; }
  .hero-ksp { grid-template-columns: 1fr 1fr; }
  .pain-card { grid-template-columns: 1fr; }
  .pain-side.problem { border-right: 0; border-bottom: 1px solid var(--border); }
  .hero-ctas, .cta-actions, .pricing-ctas { flex-direction: column; align-items: stretch; text-align: center; }
  .pricing-features-grid { grid-template-columns: 1fr; }
  .pricing-top { flex-direction: column; }
}
@media (max-width: 420px) {
  .hero-ksp { grid-template-columns: 1fr; }
  .container { width: calc(100% - 28px); }
}
