/* KULINO Attendance — landing page styles. Plain CSS, no build step.
   Loaded after kulino.css, so it reuses the design tokens (--color-*,
   --radius-*) and the .btn family defined there. Everything here is
   namespaced under .lp- so it can never touch the Staff/Admin app. */

:root {
  --lp-max: 1140px;
  --lp-pad: 24px;
  --lp-accent-wash: #FDEEEA;
  --lp-ink-soft: #3D4657;
  --lp-nav-h: 68px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--lp-nav-h) + 16px);
}

.lp-page {
  background: var(--color-white);
  color: var(--color-primary);
  overflow-x: hidden;
}

.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4,
.lp-page p {
  margin: 0;
}

.lp-container {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 var(--lp-pad);
}

.lp-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--color-border);
}

.lp-section--tint { background: var(--color-cream); }
.lp-section--flush { border-bottom: none; }

/* ---------- Typography ---------- */

.lp-h1 {
  font-size: clamp(1.95rem, 3.9vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
}

.lp-h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.lp-h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.lp-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  color: var(--lp-ink-soft);
}

.lp-muted { color: var(--color-muted); }

.lp-head {
  max-width: 660px;
  margin: 0 auto 60px;
  text-align: center;
}

.lp-head .lp-lead { margin-top: 16px; }

.lp-head--left {
  margin-left: 0;
  text-align: left;
}

/* ---------- Buttons (extends .btn from kulino.css) ---------- */

.lp-page .btn { text-decoration: none; white-space: nowrap; }

.btn-xl {
  height: 54px;
  padding: 0 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lp-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
}

.lp-trust svg { width: 16px; height: 16px; color: var(--color-success); flex: none; }

/* ---------- Navbar ---------- */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-nav--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 12px rgba(17, 24, 39, 0.05);
}

.lp-nav-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  height: var(--lp-nav-h);
  padding: 0 var(--lp-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-logo {
  display: block;
  width: 121px;
  height: 32px;
  position: relative;
  overflow: hidden;
  flex: none;
}

.lp-logo img {
  position: absolute;
  max-width: none;
  width: 158px;
  height: 105px;
  top: -32px;
  left: -14px;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.lp-nav-links a {
  color: var(--lp-ink-soft);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.lp-nav-links a:hover {
  color: var(--color-primary);
  background: var(--color-cream);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.lp-nav-actions .lp-login {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 6px;
}

.lp-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}

.lp-burger svg { width: 22px; height: 22px; }
.lp-burger .lp-icon-close { display: none; }

.lp-mobile-menu {
  display: none;
  position: fixed;
  inset: var(--lp-nav-h) 0 auto 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 16px var(--lp-pad) 24px;
  z-index: 49;
  box-shadow: 0 20px 40px -16px rgba(17, 24, 39, 0.18);
}

.lp-mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
}

.lp-mobile-menu .btn { margin-top: 18px; }

body.lp-menu-open { overflow: hidden; }
body.lp-menu-open .lp-mobile-menu { display: block; }
body.lp-menu-open .lp-burger .lp-icon-open { display: none; }
body.lp-menu-open .lp-burger .lp-icon-close { display: block; }

/* ---------- Hero ---------- */

.lp-hero {
  padding: 72px 0 96px;
  background:
    radial-gradient(1100px 480px at 78% -8%, var(--lp-accent-wash), transparent 70%),
    var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.lp-hero-copy .lp-h1 { margin-bottom: 20px; }
.lp-hero-copy .lp-lead { margin-bottom: 28px; max-width: 46ch; }
.lp-hero-copy .lp-cta-row { margin-bottom: 16px; }

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--lp-ink-soft);
  margin-bottom: 22px;
}

.lp-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 3px var(--color-success-bg);
}

/* ---------- Phone mockup ---------- */

.lp-mock {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 0 58px 112px;
}

.lp-phone {
  width: 288px;
  margin-inline: auto;
  border-radius: 42px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 40px 80px -28px rgba(17, 24, 39, 0.32);
  padding: 12px;
  position: relative;
}

.lp-phone::before {
  content: "";
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 6px;
  background: #E7E2DA;
  border-radius: 999px;
}

.lp-phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: var(--color-cream);
  padding: 40px 16px 96px;
}

.lp-app-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.lp-app-bar .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--color-accent);
  flex: none;
}

.lp-app-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.lp-app-card + .lp-app-card { margin-top: 12px; }

.lp-status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lp-status-line .lp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.lp-status-big {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-success);
}

.lp-status-big svg { width: 18px; height: 18px; }

.lp-kv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 7px 0;
}

.lp-kv + .lp-kv { border-top: 1px solid var(--color-border); }
.lp-kv .k { color: var(--color-muted); }
.lp-kv .v { font-weight: 700; }

.lp-selfie-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.lp-selfie {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FDEEEA, #F6D9D0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border: 1px solid var(--color-border);
}

.lp-selfie svg { width: 24px; height: 24px; color: var(--color-accent); }

.lp-selfie-row .cap { font-size: 12px; }
.lp-selfie-row .cap b { display: block; font-size: 13px; }

.lp-float-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 208px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -18px rgba(17, 24, 39, 0.28);
  padding: 14px;
}

.lp-float-card .lp-card-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.lp-float-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lp-float-grid .cell {
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.lp-float-grid .cell .n { font-size: 17px; font-weight: 800; line-height: 1.1; }
.lp-float-grid .cell .l { font-size: 10.5px; color: var(--color-muted); font-weight: 600; }
.lp-float-grid .cell.ok .n { color: var(--color-success); }
.lp-float-grid .cell.warn .n { color: var(--color-warning); }

/* ---------- Problem grid ---------- */

.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-problem-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.lp-problem-card .q {
  display: flex;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.lp-problem-card .q svg {
  width: 20px; height: 20px;
  color: var(--color-accent);
  flex: none;
  margin-top: 1px;
}

.lp-problem-card p { color: var(--color-muted); font-size: 0.95rem; line-height: 1.55; }

/* ---------- Value props ---------- */

.lp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-value-card {
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.lp-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lp-accent-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.lp-ico svg { width: 22px; height: 22px; color: var(--color-accent); }

.lp-value-card h3 { margin-bottom: 8px; }
.lp-value-card p { color: var(--color-muted); line-height: 1.6; font-size: 0.97rem; }

/* ---------- How it works ---------- */

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.lp-step {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  position: relative;
}

.lp-step .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: block;
}

.lp-step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.lp-step p { color: var(--color-muted); font-size: 0.93rem; line-height: 1.55; }

/* ---------- Split feature blocks ---------- */

.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.lp-split--rev .lp-split-visual { order: -1; }

.lp-split-copy .lp-h2 { margin-bottom: 16px; }
.lp-split-copy .lp-lead { margin-bottom: 24px; }

.lp-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.lp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--lp-ink-soft);
}

.lp-check-list li svg {
  width: 18px; height: 18px;
  color: var(--color-success);
  flex: none;
  margin-top: 2px;
}

.lp-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -30px rgba(17, 24, 39, 0.22);
  padding: 22px;
}

.lp-panel-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 14px;
}

/* map */
.lp-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #EEF1EC;
}

.lp-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lp-ink-soft);
}

.lp-map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.lp-map-legend i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.lp-dot-branch { background: var(--color-accent); }
.lp-dot-emp { background: #2563EB; }
.lp-dot-radius { background: rgba(240, 90, 60, 0.25); border: 1px solid var(--color-accent); }

/* selfie proof card */
.lp-proof {
  display: flex;
  gap: 14px;
  align-items: center;
}

.lp-proof .lp-selfie { width: 60px; height: 60px; border-radius: 14px; }
.lp-proof .lp-selfie svg { width: 30px; height: 30px; }

.lp-proof-body { flex: 1; min-width: 0; }
.lp-proof-body .name { font-weight: 800; font-size: 1rem; }
.lp-proof-body .meta { font-size: 13px; color: var(--color-muted); margin-top: 2px; }

.lp-proof-valid {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-success);
  background: var(--color-success-bg);
  padding: 5px 10px;
  border-radius: 999px;
}

.lp-proof-valid svg { width: 14px; height: 14px; }

/* monitoring dashboard */
.lp-dash-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lp-dash-head .today { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); }
.lp-dash-head .count { font-size: 14px; font-weight: 700; }

.lp-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.lp-dash-stats .cell {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.lp-dash-stats .cell .n { font-size: 20px; font-weight: 800; line-height: 1; }
.lp-dash-stats .cell .l { font-size: 11px; color: var(--color-muted); font-weight: 600; margin-top: 4px; }
.lp-dash-stats .cell.ok .n { color: var(--color-success); }
.lp-dash-stats .cell.warn .n { color: var(--color-warning); }
.lp-dash-stats .cell.bad .n { color: var(--color-danger); }

.lp-mini-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lp-mini-table th {
  text-align: left;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  padding: 6px 8px;
  border-bottom: 1px solid var(--color-border);
}
.lp-mini-table td { padding: 9px 8px; border-bottom: 1px solid var(--color-border); }
.lp-mini-table tr:last-child td { border-bottom: none; }
.lp-mini-table .nm { font-weight: 700; }

/* schedule */
.lp-sched-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.lp-sched-row + .lp-sched-row { border-top: 1px solid var(--color-border); }
.lp-sched-row .k { color: var(--color-muted); font-size: 13px; }
.lp-sched-row .v { font-weight: 800; }
.lp-sched-row .v.big { font-size: 1.1rem; }

/* leave / correction flow */
.lp-flow {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-flow-step {
  flex: 1;
  min-width: 140px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 16px;
  text-align: center;
}

.lp-flow-step .s-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.lp-flow-step .s-ico svg { width: 18px; height: 18px; color: var(--color-accent); }
.lp-flow-step .s-t { font-weight: 700; font-size: 0.92rem; }
.lp-flow-step .s-d { font-size: 0.8rem; color: var(--color-muted); margin-top: 3px; }

.lp-flow-arrow {
  align-self: center;
  color: var(--color-muted);
  flex: none;
}
.lp-flow-arrow svg { width: 20px; height: 20px; display: block; }

.lp-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.lp-tag {
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  color: var(--lp-ink-soft);
}

/* payroll */
.lp-payroll-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.lp-payroll-node {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
}

.lp-payroll-node.accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.lp-payroll-node.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  max-width: 360px;
}

.lp-payroll-node.pills span {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
}

.lp-payroll-flow .arr { color: var(--color-muted); }
.lp-payroll-flow .arr svg { width: 18px; height: 18px; display: block; }

.lp-payslip .row {
  display: flex;
  justify-content: space-between;
  font-size: 0.93rem;
  padding: 9px 0;
}
.lp-payslip .row + .row { border-top: 1px solid var(--color-border); }
.lp-payslip .row .lbl { color: var(--color-muted); }
.lp-payslip .row .amt { font-weight: 700; }
.lp-payslip .row.minus .amt { color: var(--color-danger); }
.lp-payslip .row.total {
  margin-top: 6px;
  border-top: 2px solid var(--color-primary);
  padding-top: 12px;
}
.lp-payslip .row.total .lbl { color: var(--color-primary); font-weight: 800; }
.lp-payslip .row.total .amt { font-size: 1.15rem; font-weight: 800; }
.lp-payslip .btn { margin-top: 16px; }

/* ---------- Before / after ---------- */

.lp-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-ba-col {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--color-white);
}

.lp-ba-col.after {
  border-color: var(--color-accent);
  box-shadow: 0 20px 50px -26px rgba(240, 90, 60, 0.3);
}

.lp-ba-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.lp-ba-col.after h3 { color: var(--color-accent); }

.lp-ba-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }

.lp-ba-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--lp-ink-soft);
}

.lp-ba-col li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.lp-ba-col.before li svg { color: var(--color-muted); }
.lp-ba-col.after li { font-weight: 600; color: var(--color-primary); }
.lp-ba-col.after li svg { color: var(--color-success); }

/* ---------- Why grid ---------- */

.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lp-why-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.lp-why-card .lp-ico { width: 40px; height: 40px; margin-bottom: 14px; }
.lp-why-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.lp-why-card p { color: var(--color-muted); font-size: 0.94rem; line-height: 1.55; }

/* ---------- Audience ---------- */

.lp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-audience-card {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.lp-audience-card .lp-ico { width: 38px; height: 38px; border-radius: 10px; margin-bottom: 12px; }
.lp-audience-card h3 { font-size: 1rem; margin-bottom: 4px; }
.lp-audience-card p { color: var(--color-muted); font-size: 0.9rem; }

/* ---------- Pricing ---------- */

.lp-pricing-copy { margin-top: 12px; font-weight: 600; color: var(--lp-ink-soft); }

.lp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.lp-plan {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.lp-plan--featured {
  border-color: var(--color-accent);
  box-shadow: 0 30px 70px -30px rgba(240, 90, 60, 0.35);
}

.lp-plan-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(240, 90, 60, 0.5);
}

.lp-plan-name {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.lp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 4px;
}

.lp-plan-price .amt { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.lp-plan-price .per { font-size: 0.9rem; color: var(--color-muted); font-weight: 600; }

.lp-plan-desc { font-size: 0.9rem; color: var(--color-muted); min-height: 40px; }

.lp-plan-limits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.lp-plan-limits div { font-size: 0.9rem; font-weight: 700; }
.lp-plan-limits div span { color: var(--color-muted); font-weight: 500; }

.lp-plan-incl {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lp-ink-soft);
  margin-bottom: 10px;
}

.lp-feat {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.lp-feat li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--lp-ink-soft);
  line-height: 1.4;
}

.lp-feat li svg {
  width: 15px; height: 15px;
  color: var(--color-success);
  flex: none;
  margin-top: 2px;
}

.lp-plan .btn { width: 100%; }

/* ---------- Comparison table ---------- */

.lp-compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}

table.lp-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--color-white);
}

table.lp-compare th,
table.lp-compare td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

table.lp-compare thead th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  background: var(--color-cream);
}

table.lp-compare thead th.plan-col { color: var(--color-primary); font-weight: 800; }
table.lp-compare thead th.featured { color: var(--color-accent); }

table.lp-compare tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--lp-ink-soft);
}

table.lp-compare td.featured { background: rgba(240, 90, 60, 0.04); }
table.lp-compare tr:last-child th,
table.lp-compare tr:last-child td { border-bottom: none; }

.lp-compare .yes { color: var(--color-success); font-weight: 800; }
.lp-compare .no { color: var(--color-border); font-weight: 800; }

/* ---------- FAQ ---------- */

.lp-faq {
  max-width: 780px;
  margin: 0 auto;
}

details.lp-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 0 20px;
  margin-bottom: 12px;
}

details.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

details.lp-faq-item summary::-webkit-details-marker { display: none; }

details.lp-faq-item summary .chev {
  width: 20px; height: 20px;
  flex: none;
  color: var(--color-muted);
  transition: transform 0.2s ease;
}

details.lp-faq-item[open] summary .chev { transform: rotate(180deg); }

details.lp-faq-item .a {
  padding: 0 0 20px;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

/* ---------- Final CTA ---------- */

.lp-final {
  background:
    radial-gradient(800px 380px at 50% 120%, var(--lp-accent-wash), transparent 70%),
    var(--color-cream);
  text-align: center;
}

.lp-final .lp-h2 { max-width: 18ch; margin: 0 auto 16px; }
.lp-final .lp-lead { max-width: 52ch; margin: 0 auto 28px; }
.lp-final .lp-cta-row { justify-content: center; }
.lp-final .lp-trust { margin-top: 18px; }

/* ---------- Footer ---------- */

.lp-footer {
  background: var(--color-white);
  padding: 64px 0 40px;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.lp-footer .lp-logo { margin-bottom: 14px; }
.lp-footer-brand p { color: var(--color-muted); font-size: 0.92rem; max-width: 30ch; }

.lp-footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.lp-footer-col a {
  display: block;
  color: var(--lp-ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 0;
}

.lp-footer-col a:hover { color: var(--color-accent); }

.lp-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.lp-footer-bottom .links { display: flex; gap: 18px; }
.lp-footer-bottom a { color: var(--color-muted); font-weight: 600; }
.lp-footer-bottom a:hover { color: var(--color-accent); }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .lp-section { padding: 68px 0; }
  .lp-hero { padding: 48px 0 68px; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero-copy { text-align: center; }
  .lp-hero-copy .lp-lead { margin-left: auto; margin-right: auto; }
  .lp-hero-copy .lp-cta-row { justify-content: center; }
  .lp-hero-badge { margin-inline: auto; }
  .lp-split { grid-template-columns: 1fr; gap: 36px; }
  .lp-split--rev .lp-split-visual { order: 0; }
  .lp-problem-grid,
  .lp-value-grid,
  .lp-steps,
  .lp-why-grid,
  .lp-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-plans { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .lp-plan--featured { margin-top: 8px; }
  .lp-ba { grid-template-columns: 1fr; }
  .lp-nav-links { display: none; }
  .lp-nav-actions .lp-login { display: none; }
  .lp-burger { display: flex; }
  .lp-head { margin-bottom: 44px; }

  .lp-mock { padding: 0; width: 100%; max-width: 340px; }
  .lp-float-card {
    position: static;
    width: 100%;
    max-width: 288px;
    margin: 16px auto 0;
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 560px) {
  :root { --lp-pad: 18px; }
  .lp-section { padding: 56px 0; }
  .lp-problem-grid,
  .lp-value-grid,
  .lp-steps,
  .lp-why-grid,
  .lp-audience-grid { grid-template-columns: 1fr; }
  .lp-dash-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-phone { width: 100%; max-width: 300px; }
  .lp-cta-row .btn { width: 100%; }
  .lp-flow { flex-direction: column; }
  .lp-flow-step { width: 100%; }
  .lp-flow-arrow { transform: rotate(90deg); margin: 2px auto; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
