/* ============================================
   1M-MANAGER · Landing styles
   Clean SaaS, white surfaces + purple accent
   ============================================ */

:root {
  --purple: #9561E2;
  --purple-600: #7C45D6;
  --purple-700: #6633C4;
  --purple-50: #F5EFFC;
  --purple-100: #ECE0F9;
  --purple-200: #D9C2F3;

  --ink: #0F0B1A;
  --ink-2: #1F1A2E;
  --text: #2A2540;
  --text-soft: #5B5570;
  --text-dim: #8C859E;
  --text-faint: #B6B0C5;

  --bg: #FFFFFF;
  --bg-soft: #FAFAFC;
  --bg-tint: #F6F4FB;
  --line: #ECEAF2;
  --line-strong: #DFDCE9;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 6px -2px rgba(15, 11, 26, 0.06);
  --shadow: 0 12px 36px -12px rgba(15, 11, 26, 0.08), 0 2px 8px -2px rgba(15, 11, 26, 0.04);
  --shadow-purple: 0 30px 80px -30px rgba(149, 97, 226, 0.45), 0 8px 24px -8px rgba(149, 97, 226, 0.18);
  --shadow-lg: 0 40px 100px -30px rgba(15, 11, 26, 0.18), 0 10px 30px -10px rgba(15, 11, 26, 0.08);

  --display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ============================================
   Scroll-reveal animations
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .25, 1),
              transform .7s cubic-bezier(.2, .7, .25, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-24px); }
[data-reveal="scale"] { transform: scale(0.96); transform-origin: center; }
[data-reveal].in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

::selection {
  background: var(--purple-100);
  color: var(--purple-700);
}
::-moz-selection {
  background: var(--purple-100);
  color: var(--purple-700);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 120px 0; position: relative; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 84px); font-weight: 600; letter-spacing: -0.04em; }
h2 { font-size: clamp(36px, 4.5vw, 60px); letter-spacing: -0.035em; }
h3 { font-size: 22px; letter-spacing: -0.02em; }
.h-accent { color: var(--purple); }
.lead {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 580px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  color: var(--purple-700);
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  display: inline-block;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-head .eyebrow { margin-bottom: 24px; }
.section-head .lead { margin: 22px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 8px 22px -8px rgba(149, 97, 226, 0.6), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  background: var(--purple-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(149, 97, 226, 0.7), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-ghost {
  background: white;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--text-faint); }
.btn-link {
  background: transparent; color: var(--ink);
  padding: 13px 8px;
}
.btn-link:hover { color: var(--purple); }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #B289EE, var(--purple) 50%, var(--purple-700));
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 6px 14px -4px rgba(149,97,226,0.5);
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid white;
  border-bottom: none;
  border-right: none;
  border-radius: 4px 0 0 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  right: 6px; bottom: 6px;
  width: 9px; height: 9px;
  background: white;
  border-radius: 2px;
}
.logo .word { color: var(--ink); }
.logo .word b { font-weight: 700; }
.logo .word .light { font-weight: 400; color: var(--text-soft); letter-spacing: -0.02em; }
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* ---------- NAV ---------- */
nav.top {
  position: sticky; top: 0; z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
nav.top.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,0.92);
}
nav.top .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links .links {
  display: flex; align-items: center; gap: 32px;
  margin-right: 24px;
}
.nav-links .links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .15s;
}
.nav-links .links a:hover { color: var(--ink); }

/* ---------- HERO ---------- */
.hero { padding: 70px 0 60px; text-align: center; }
.hero h1 { max-width: 14ch; margin: 0 auto; }
.hero .lead {
  margin: 28px auto 0;
  font-size: 19px;
  max-width: 640px;
}
.hero-cta {
  margin-top: 40px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.hero-meta {
  margin-top: 22px;
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.hero-pill .tag {
  background: var(--purple);
  color: white;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.hero-pill .arrow { color: var(--text-dim); }

/* Background gradient blob behind hero */
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: -1;
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(149, 97, 226, 0.10), transparent 65%),
    radial-gradient(ellipse 500px 300px at 80% 30%, rgba(149, 97, 226, 0.06), transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background-image:
    linear-gradient(rgba(149,97,226,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149,97,226,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, black 20%, transparent 75%);
}

/* ---------- Mock dashboard ---------- */
.mock-window {
  margin: 72px auto 0;
  max-width: 1080px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-purple);
}
.mock-titlebar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-strong);
}
.mock-dots span:nth-child(1) { background: #FF7A6B; }
.mock-dots span:nth-child(2) { background: #FFC34D; }
.mock-dots span:nth-child(3) { background: #5DD68A; }
.mock-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--body);
}

.mock-app {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
}
.mock-sidebar {
  border-right: 1px solid var(--line);
  padding: 22px 14px;
  background: var(--bg-soft);
}
.mock-sidebar .group {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  padding: 14px 10px 8px;
  font-weight: 600;
}
.mock-sidebar .item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 2px;
  font-weight: 500;
}
.mock-sidebar .item .ico {
  width: 18px; height: 18px;
  color: var(--text-dim);
}
.mock-sidebar .item.active {
  background: var(--purple-50);
  color: var(--purple-700);
}
.mock-sidebar .item.active .ico { color: var(--purple); }
.mock-sidebar .item .badge {
  margin-left: auto;
  background: var(--purple);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
}

.mock-main { padding: 24px 26px; }
.mock-headrow {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.mock-h1 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.mock-h-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}
.mock-actions { display: flex; gap: 8px; }
.mock-actions .pill {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  font-weight: 500;
}
.mock-actions .pill.primary {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

.mock-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mock-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.mock-stat .label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 600;
}
.mock-stat .value {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.mock-stat .delta {
  font-size: 11px;
  color: #2EA559;
  margin-top: 4px;
  font-weight: 500;
}
.mock-stat .delta.neg { color: #E25563; }
.mock-stat .delta.muted { color: var(--text-dim); }

.mock-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.mock-table .row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.8fr;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.mock-table .row:last-child { border-bottom: none; }
.mock-table .row.head {
  background: var(--bg-soft);
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 16px;
}
.mock-emp {
  display: flex; align-items: center; gap: 10px;
}
.mock-ava {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-700));
  color: white;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.mock-emp .info .name { font-weight: 500; color: var(--ink); }
.mock-emp .info .sub { color: var(--text-dim); font-size: 11px; }
.mock-tag {
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(46, 165, 89, 0.12);
  color: #2EA559;
}
.mock-tag.amber { background: rgba(255, 195, 77, 0.18); color: #B88200; }
.mock-tag.gray { background: var(--bg-tint); color: var(--text-soft); }
.mock-tag.purple { background: var(--purple-50); color: var(--purple-700); }

/* ---------- TRUSTED BY ---------- */
.trusted { padding: 80px 0 60px; }
.trusted-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-weight: 600;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
}

/* Infinite marquee */
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track .tlogo { flex-shrink: 0; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.tlogo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-soft);
  letter-spacing: -0.015em;
  display: inline-flex; align-items: center; gap: 7px;
  opacity: 0.85;
  transition: opacity .2s;
}
.tlogo:hover { opacity: 1; color: var(--ink); }
.tlogo svg { color: currentColor; }

/* ---------- FEATURE EXPLORER (tabbed) ---------- */
.fx {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: stretch;
}
.fx-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fx-tab {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  cursor: pointer;
  transition: all .18s ease;
  text-align: left;
  font-family: inherit;
  color: var(--text);
}
.fx-tab:hover {
  border-color: var(--purple-200);
  background: var(--bg-soft);
}
.fx-tab .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--text-soft);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.fx-tab .lbl {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.fx-tab .sub {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 2px;
  font-weight: 400;
}
.fx-tab .arrow {
  color: var(--text-faint);
  opacity: 0;
  transform: translateX(-4px);
  transition: all .18s;
}
.fx-tab[aria-selected="true"] {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 14px 30px -12px rgba(149, 97, 226, 0.45);
}
.fx-tab[aria-selected="true"] .ic {
  background: rgba(255,255,255,0.22);
  color: white;
}
.fx-tab[aria-selected="true"] .lbl { color: white; }
.fx-tab[aria-selected="true"] .sub { color: rgba(255,255,255,0.78); }
.fx-tab[aria-selected="true"] .arrow {
  opacity: 1;
  transform: translateX(0);
  color: white;
}

/* Panel — only active pane is rendered; panel auto-sizes to its content */
.fx-panel {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.fx-pane {
  display: none;
  grid-template-rows: auto 1fr;
  padding: 32px 32px 28px;
  animation: fxFade .25s ease;
}
.fx-pane.active {
  display: grid;
}
@keyframes fxFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.fx-pane-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  display: flex; align-items: flex-start; gap: 18px;
}
.fx-pane-head .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--purple-50);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fx-pane-head h3 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}
.fx-pane-head p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 520px;
}
.fx-pane-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.fx-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fx-points li {
  list-style: none;
  display: flex; gap: 12px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}
.fx-points li .tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.fx-points li b {
  color: var(--ink);
  font-weight: 600;
  display: block;
  font-size: 14.5px;
  margin-bottom: 2px;
}
.fx-points li b + span { display: block; }

.fx-meta {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.fx-meta .stat-mini {
  display: flex; flex-direction: column;
}
.fx-meta .stat-mini .v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: -0.02em;
  line-height: 1;
}
.fx-meta .stat-mini .l {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.fx-visual {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  min-height: 320px;
}

/* ---- Payroll mock ---- */
.payslip-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.payslip-row:last-of-type { border-bottom: none; }
.payslip-row .l { color: var(--text-soft); }
.payslip-row .v { font-weight: 600; color: var(--ink); font-family: var(--display); letter-spacing: -0.01em; }
.payslip-row.total {
  background: var(--purple-50);
  border-radius: 10px;
  margin-top: 8px;
  padding: 14px;
  border-bottom: none;
}
.payslip-row.total .l { color: var(--purple-700); font-weight: 600; }
.payslip-row.total .v { color: var(--purple-700); font-size: 18px; }

/* ---- Leave request mock ---- */
.leave-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.leave-card + .leave-card { margin-top: 10px; }
.leave-row {
  display: flex; align-items: center; gap: 12px;
}
.leave-row .meta {
  flex: 1;
}
.leave-row .meta .name { font-weight: 600; font-size: 14px; color: var(--ink); }
.leave-row .meta .sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.leave-row .dur {
  text-align: right;
  font-size: 12px;
  color: var(--text-soft);
}
.leave-row .dur b { display: block; color: var(--ink); font-family: var(--display); font-size: 15px; font-weight: 600; }
.leave-actions {
  display: flex; gap: 8px;
  margin-top: 12px;
}
.leave-actions .b {
  flex: 1; text-align: center;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text-soft);
}
.leave-actions .b.approve {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

/* ---- Recruitment pipeline mock ---- */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pipe-col {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  min-height: 220px;
}
.pipe-col .h {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
  padding: 4px 4px 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.pipe-col .h .ct {
  background: var(--bg-tint);
  color: var(--text-soft);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0;
}
.pipe-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
}
.pipe-card .n {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.pipe-card .n .av {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-700));
  color: white;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pipe-card .r {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 4px;
  padding-left: 24px;
}
.pipe-col.purple .pipe-card { background: var(--purple-50); border-color: var(--purple-100); }

/* Tablet & mobile (≤960px) — stack tabs above panel, horizontal scroll */
@media (max-width: 960px) {
  .fx { grid-template-columns: 1fr; gap: 16px; }
  .fx-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .fx-tab {
    grid-template-columns: auto 1fr;
    min-width: 180px;
    padding: 12px;
    scroll-snap-align: start;
  }
  .fx-tab .sub, .fx-tab .arrow { display: none; }
  .fx-panel { min-height: auto; }
  .fx-pane { position: relative; padding: 22px; }
  .fx-pane:not(.active) { display: none; }

  /* Stack: points → visual → meta (so stats land under the screenshot) */
  .fx-pane-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fx-pane-body > div:first-child { display: contents; }
  .fx-pane-body .fx-points { order: 1; }
  .fx-pane-body .fx-visual { order: 2; }
  .fx-pane-body .fx-meta {
    order: 3;
    width: 100%;
    margin: 0 auto;
    padding-top: 18px;
    border-top: 1px dashed var(--line-strong);
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .fx-pane-body .fx-meta .stat-mini {
    align-items: center !important;
    text-align: center;
  }
  .fx-visual { min-height: auto; padding: 14px; }
  .pipeline { grid-template-columns: repeat(2, 1fr); }
}

/* Small phones (≤560px) — tighter spacing, smaller heading, stacked head */
@media (max-width: 560px) {
  .fx-tab { min-width: 150px; padding: 10px 12px; }
  .fx-tab .lbl { font-size: 14px; }
  .fx-tab .ic { width: 34px; height: 34px; border-radius: 8px; }
  .fx-pane { padding: 18px; }
  .fx-pane-head {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .fx-pane-head .ic { width: 40px; height: 40px; border-radius: 10px; }
  .fx-pane-head h3 { font-size: 22px; margin-bottom: 6px; }
  .fx-pane-head p { font-size: 14px; }
  .fx-meta { gap: 16px; margin-top: 18px; padding-top: 16px; }
  .fx-meta .stat-mini .v { font-size: 18px; }
  .fx-points li { font-size: 13.5px; }
  .pipeline { gap: 6px; }
  .pipe-col { padding: 8px; min-height: 160px; }
  .pipe-col .h { font-size: 10px; padding: 2px 2px 6px; }
}

/* Extra small (≤380px) — single-column pipeline + compact calendar */
@media (max-width: 380px) {
  .pipeline { grid-template-columns: 1fr; }
  .calendar .day { font-size: 10px; }
  .payslip-row { font-size: 12px; padding: 9px 12px; }
}

/* Nav — keep CTAs visible without crowding on mobile */
@media (max-width: 560px) {
  nav.top { padding: 12px 0; }
  .logo-img { height: 36px; }
  .nav-links { gap: 6px; }
  .nav-links .btn-link { padding: 10px 6px; font-size: 13px; }
  .nav-links .btn-primary { padding: 10px 14px; font-size: 13px; }
}

/* Hero — keep CTAs full-width-friendly on small phones */
@media (max-width: 560px) {
  .hero { padding: 50px 0 40px; }
  .hero .lead { font-size: 16px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; }
  .hero-meta { font-size: 12px; gap: 14px; }
  .mock-titlebar { padding: 10px 12px; }
  .mock-url { font-size: 11px; }
  .mock-main { padding: 16px 14px; }
  .mock-h1 { font-size: 18px; }
  .mock-stats { gap: 8px; }
  .mock-stat { padding: 10px; }
  .mock-stat .value { font-size: 20px; }
  .mock-actions .pill { padding: 5px 10px; font-size: 11px; }
}

/* ---------- (legacy) steps — kept for back-compat, unused ---------- */
.steps {
  max-width: 1120px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 100px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 50%; top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--purple-200) 15%, var(--purple-200) 85%, transparent);
  transform: translateX(-1px);
}
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
}
.step:nth-child(odd) .step-text { text-align: right; }
.step:nth-child(even) .step-text { order: 2; text-align: left; }
.step:nth-child(even) .step-visual { order: 1; }
.step:nth-child(odd) .step-text .lead { margin-left: auto; }

.step-dot {
  position: absolute;
  left: 50%; top: 36%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--purple);
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(149, 97, 226, 0.12);
}
.step-num {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.1;
}
.step .lead { font-size: 16px; }

/* Step mock cards */
.scard {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.scard-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-soft);
}
.scard-head .t {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.scard-head .s {
  font-size: 11px;
  color: var(--text-dim);
}
.scard-body { padding: 22px; }

.fld {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
  background: white;
  display: flex; align-items: center; gap: 10px;
}
.fld-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 6px;
}
.fld .num {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--purple-50);
  color: var(--purple);
  font-weight: 600;
  font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display);
}
.fld .right { margin-left: auto; color: var(--text-dim); font-size: 12px; }
.btn-mock {
  width: 100%;
  background: var(--purple);
  color: white;
  font-weight: 500;
  font-size: 14px;
  padding: 11px;
  border-radius: 10px;
  text-align: center;
  margin-top: 8px;
  box-shadow: 0 6px 16px -6px rgba(149, 97, 226, 0.5);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar .day {
  aspect-ratio: 1;
  border-radius: 7px;
  background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
}
.calendar .day.present { background: var(--purple); color: white; }
.calendar .day.leave { background: #FFE7B0; color: #B88200; }
.calendar .day.weekend { background: transparent; color: var(--text-faint); }
.calendar .head {
  font-size: 10px; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent;
  aspect-ratio: auto;
  font-weight: 600;
  padding: 4px 0;
}

.report-bars {
  display: flex; align-items: flex-end; gap: 10px;
  height: 130px;
  margin-top: 6px;
}
.report-bars .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.report-bars .bar {
  width: 100%;
  background: var(--purple-100);
  border-radius: 6px 6px 0 0;
}
.report-bars .col.tall .bar { background: var(--purple); }
.report-bars .lbl {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: all .2s;
}
.feature:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--purple-50);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.feature p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- TESTIMONIALS ---------- */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.tcard .stars {
  display: flex; gap: 3px;
  color: var(--purple);
  margin-bottom: 18px;
}
.tcard blockquote {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin-bottom: 22px;
}
.tcard .by {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.tcard .ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-700));
  color: white;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.tcard .name { font-weight: 600; font-size: 14px; color: var(--ink); }
.tcard .role { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.tcard.feat {
  background: linear-gradient(180deg, var(--purple), var(--purple-700));
  border-color: var(--purple-700);
  color: white;
}
.tcard.feat blockquote { color: white; }
.tcard.feat .stars { color: white; }
.tcard.feat .by { border-color: rgba(255,255,255,0.18); }
.tcard.feat .name { color: white; }
.tcard.feat .role { color: rgba(255,255,255,0.7); }
.tcard.feat .ava { background: rgba(255,255,255,0.18); color: white; }

/* ---------- STATS BAND ---------- */
.stats-band {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-grid.stats-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.stat .value {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.stat .value .suffix { color: var(--purple); }
.stat .lbl {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.plan {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all .2s;
  position: relative;
}
.plan:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.plan-name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 4px;
}
.plan-price .currency {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: -0.02em;
}
.plan-price .amount {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
}
.plan-price .per {
  font-size: 13px;
  color: var(--text-dim);
  margin-left: 4px;
}
.plan-range {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.plan-range strong { color: var(--ink); font-weight: 600; }
.plan-cta {
  width: 100%;
  margin-bottom: 22px;
}
.plan-tagline {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  flex: 1;
}
.plan-features li {
  display: flex; gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.plan-features li .tick {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* Popular plan */
.plan.popular {
  background: linear-gradient(180deg, var(--purple), var(--purple-700));
  border-color: var(--purple-700);
  color: white;
  box-shadow: var(--shadow-purple);
}
.plan.popular:hover { transform: translateY(-4px); }
.plan.popular .plan-name { color: rgba(255,255,255,0.9); }
.plan.popular .plan-price .amount,
.plan.popular .plan-price .currency { color: white; }
.plan.popular .plan-price .per { color: rgba(255,255,255,0.7); }
.plan.popular .plan-range { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.15); }
.plan.popular .plan-range strong { color: white; }
.plan.popular .plan-features li { color: rgba(255,255,255,0.92); }
.plan.popular .plan-features li .tick { background: rgba(255,255,255,0.22); color: white; }
.plan.popular .plan-tagline { color: rgba(255,255,255,0.7); }
.plan.popular .btn-primary {
  background: white;
  color: var(--purple-700);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.25);
}
.plan.popular .btn-primary:hover { background: #F7F4FE; }
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #0F0B1A;
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4);
}

.plan .btn {
  width: 100%;
  padding: 13px 20px;
}
.plan .btn-ghost {
  background: white;
  border-color: var(--line-strong);
  color: var(--ink);
}

/* Whitelabel band */
.whitelabel {
  background: linear-gradient(180deg, #0F0B1A, #1F1A2E);
  color: white;
  border-radius: 24px;
  padding: 60px 44px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.whitelabel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 0% 0%, rgba(149,97,226,0.25), transparent 60%),
    radial-gradient(ellipse 400px 300px at 100% 100%, rgba(149,97,226,0.18), transparent 60%);
  pointer-events: none;
}
.whitelabel > * { position: relative; z-index: 1; }
.wl-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}
.wl-head .eyebrow {
  background: rgba(149,97,226,0.18);
  border-color: rgba(149,97,226,0.3);
  color: #C9B6F4;
}
.wl-head h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: white;
  margin: 16px 0 0;
  line-height: 1.1;
}
.wl-head p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.55;
  max-width: 460px;
  text-align: right;
}
.wl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px;
  transition: all .2s;
}
.wl-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(149,97,226,0.3);
}
.wl-card.featured {
  background: linear-gradient(180deg, rgba(149,97,226,0.18), rgba(149,97,226,0.05));
  border-color: rgba(149,97,226,0.35);
}
.wl-card .name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9B6F4;
  margin-bottom: 14px;
}
.wl-card .price {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 4px;
}
.wl-card .price .small {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-left: 4px;
}
.wl-card .price-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wl-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.wl-card ul li {
  display: flex; gap: 10px;
}
.wl-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  background: var(--purple);
  border-radius: 50%;
  margin-top: 8px;
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
}
.pricing-note a { color: var(--purple); font-weight: 500; }

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .whitelabel { padding: 40px 24px; }
  .wl-head { grid-template-columns: 1fr; }
  .wl-head p { text-align: left; max-width: none; }
  .wl-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--purple-200); }
.faq-item.open { border-color: var(--purple-200); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: white;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  flex-shrink: 0;
  transition: all .2s;
}
.faq-item.open .faq-q .plus {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
}

/* ---------- CTA BANNER ---------- */
.cta-section { padding: 60px 0 100px; }
.cta-banner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 700px 400px at 50% 100%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, var(--purple), var(--purple-700));
  color: white;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: white; font-size: clamp(36px, 4.5vw, 56px); }
.cta-banner .lead { color: rgba(255,255,255,0.85); margin: 22px auto 0; max-width: 560px; }
.cta-banner .cta-btns {
  margin-top: 36px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.cta-banner .btn-primary {
  background: white;
  color: var(--purple-700);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.25);
}
.cta-banner .btn-primary:hover { background: #F7F4FE; }
.cta-banner .btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.cta-email-hint {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 560px) {
  .cta-email { font-size: 13px; padding: 14px 18px; }
  .cta-email svg { display: none; }
}

/* ---------- FOOTER (minimal) ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg-soft);
}
.foot-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-img-footer { height: 28px; }
.foot-copy {
  font-size: 13px;
  color: var(--text-dim);
}
@media (max-width: 560px) {
  .foot-simple { flex-direction: column; align-items: flex-start; gap: 14px; }
  .logo-img-footer { height: 26px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .container { padding: 0 22px; }
  section { padding: 80px 0; }
  .nav-links .links { display: none; }
  .mock-app { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-stats { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .tgrid { grid-template-columns: 1fr; }
  .trusted-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 1fr; gap: 32px; padding-left: 36px; }
  .step:nth-child(odd) .step-text,
  .step:nth-child(even) .step-text { text-align: left; order: 1; }
  .step:nth-child(odd) .step-text .lead { margin-left: 0; }
  .step:nth-child(even) .step-visual { order: 2; }
  .steps::before { left: 8px; transform: none; }
  .step-dot { left: 8px; transform: translate(-50%, -50%); top: 24px; }
  .cta-banner { padding: 60px 24px; }
  .mock-table .row { grid-template-columns: 1.5fr 1fr 1fr; }
  .mock-table .row .col-hide { display: none; }
}
