/* WePoints — Landing styles */

:root {
  --green: #0d9b47;
  --green-600: #0a8a3d;
  --green-50: #e7f6ed;
  --navy: #082952;
  --navy-700: #0c3464;
  --navy-300: #6c7e98;
  --navy-200: #a4b1c5;
  --bg: #fdfcfa;
  --line: #e8e4dc;
  --line-strong: #d6cfc1;
  --shadow-sm: 0 1px 2px rgba(8, 41, 82, 0.06), 0 2px 6px rgba(8, 41, 82, 0.04);
  --shadow-md: 0 6px 18px rgba(8, 41, 82, 0.08), 0 2px 4px rgba(8, 41, 82, 0.04);
  --shadow-lg: 0 24px 60px rgba(8, 41, 82, 0.16), 0 6px 16px rgba(8, 41, 82, 0.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Funnel Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { line-height: 1; }
.brand-name { font-weight: 800; font-size: 21px; letter-spacing: -0.01em; color: var(--navy); }
.brand-sub { font-size: 12px; color: var(--navy-300); margin-top: 3px; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 15px; font-weight: 500; color: var(--navy);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--green); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-600); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(13, 155, 71, 0.25); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559925393-8be0ec4767c8?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8,41,82,0.92) 0%, rgba(8,41,82,0.55) 55%, rgba(8,41,82,0.25) 100%),
    linear-gradient(180deg, rgba(8,41,82,0) 50%, rgba(8,41,82,0.7) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 110px 0 130px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(13,155,71,.25); }

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 22px;
}
.hero h1 .accent { color: #fff; position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--green);
  border-radius: 4px;
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.hero-trust .item { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--green); }

/* Hero floating card (right side) */
.hero-card {
  background: rgba(255,255,255,0.97);
  border-radius: 22px;
  padding: 26px 26px 22px;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 420px;
  margin-left: auto;
  transform: rotate(-1deg);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13,155,71,.4), rgba(8,41,82,.2));
  z-index: -1;
  filter: blur(20px);
  opacity: .7;
}
.hc-top {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd6a5, #f4a261);
  display: grid; place-items: center;
  font-weight: 700; color: #6b3a0a;
  font-size: 16px;
}
.hc-name { font-weight: 700; font-size: 15px; }
.hc-role { font-size: 12px; color: var(--navy-300); }
.hc-tier {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border-radius: 999px;
  text-transform: uppercase;
}
.hc-points { padding: 18px 0 14px; }
.hc-points-label { font-size: 12px; color: var(--navy-300); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.hc-points-value { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-top: 4px; display: flex; align-items: baseline; gap: 8px; }
.hc-points-value .star { width: 26px; height: 26px; color: var(--green); }
.hc-progress { margin-top: 10px; }
.hc-progress-bar { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; }
.hc-progress-bar > span { display:block; height: 100%; width: 68%; background: linear-gradient(90deg, var(--green), #34c66b); border-radius: 999px; }
.hc-progress-text { font-size: 12px; color: var(--navy-300); margin-top: 8px; display: flex; justify-content: space-between; }
.hc-progress-text strong { color: var(--navy); font-weight: 600; }
.hc-recent {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.hc-recent .pill {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green);
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.hc-recent .meta { color: var(--navy-300); font-size: 12px; }
.hc-recent .plus { margin-left: auto; color: var(--green); font-weight: 700; }

/* Sticker badge floating */
.hero-sticker {
  position: absolute;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.hero-sticker.s1 { top: 30px; right: 100px; transform: rotate(4deg); }
.hero-sticker.s1 .pip { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: grid; place-items: center; color: #fff; font-size: 13px; }
.hero-sticker.s2 { bottom: 50px; left: -10px; transform: rotate(-3deg); }
.hero-sticker.s2 .pip { width: 22px; height: 22px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; color: #fff; font-size: 13px; }

.hero-card-wrap { position: relative; }

/* ========== SECTIONS ========== */
section { scroll-margin-top: 90px; }
.section { padding: 120px 0; }
.section-tight { padding: 90px 0; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  display: inline-block;
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section .lead {
  font-size: 18px;
  color: var(--navy-300);
  max-width: 640px;
  line-height: 1.55;
  margin: 0;
}
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .lead { margin-left: auto; margin-right: auto; }

.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark .eyebrow { color: #34c66b; }
.section-dark .lead { color: rgba(255,255,255,0.7); }

/* ========== QUE ES — stat row ========== */
.qe-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.qe-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.qe-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.qe-stat .num { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); line-height: 1; }
.qe-stat .num .pct { color: var(--green); }
.qe-stat .label { font-size: 14px; color: var(--navy-300); margin-top: 8px; line-height: 1.4; }

.qe-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #e7f6ed, #fdfcfa);
  display: grid;
  place-items: center;
}
.qe-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(13,155,71,.18), transparent 60%);
}
.qe-visual .star-big {
  width: 55%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(13,155,71,.3));
}
.qe-orbit {
  position: absolute;
  inset: 8%;
  border: 2px dashed rgba(13,155,71,.25);
  border-radius: 50%;
}
.qe-orbit-2 { inset: 20%; border-color: rgba(13,155,71,.15); }
.qe-chip {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.qe-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.qe-chip.c1 { top: 8%; left: 50%; transform: translateX(-50%); }
.qe-chip.c2 { top: 50%; left: -2%; transform: translateY(-50%); }
.qe-chip.c3 { bottom: 8%; right: 8%; }
.qe-chip.c4 { top: 18%; right: 4%; }

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  padding: 28px 24px;
  position: relative;
}
.step + .step { border-left: 1px solid var(--line); }
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.step-icon svg { width: 26px; height: 26px; }
.step h3 { font-size: 20px; margin: 0 0 8px; font-weight: 700; letter-spacing: -0.01em; }
.step p { color: var(--navy-300); font-size: 15px; margin: 0; line-height: 1.5; }

/* ========== BENEFITS ========== */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 19px; margin: 0 0 10px; font-weight: 700; letter-spacing: -0.01em; }
.benefit p { color: var(--navy-300); font-size: 15px; margin: 0; line-height: 1.5; }

/* ========== ADMIN MOCKUP SECTION ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.25fr 1fr; }
.split.reverse .split-text { order: 2; }
.split-text h2 { margin-bottom: 18px; }
.split-text .lead { margin-bottom: 28px; max-width: 520px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15.5px; line-height: 1.5;
}
.feature-list .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .check svg { width: 14px; height: 14px; stroke-width: 3; }
.feature-list strong { font-weight: 700; color: var(--navy); display: block; }
.feature-list span.desc { color: var(--navy-300); font-size: 14.5px; }

/* Admin browser frame */
.browser {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #f4f1ea;
  border-bottom: 1px solid var(--line);
}
.browser-bar .dots { display: flex; gap: 6px; }
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #d6cfc1; }
.browser-bar .dot.r { background: #ec6a5e; }
.browser-bar .dot.y { background: #f5bf4f; }
.browser-bar .dot.g { background: #62c554; }
.browser-bar .url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--navy-300);
  text-align: center;
  margin: 0 12px;
  border: 1px solid var(--line);
  font-family: ui-monospace, "SF Mono", monospace;
}

/* Dashboard */
.dash {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}
.dash-side {
  background: var(--navy);
  color: #fff;
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.dash-side-brand { display: flex; align-items: center; gap: 10px; padding: 4px 8px 18px; }
.dash-side-brand .mark {
  width: 26px; height: 26px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center;
}
.dash-side-brand .mark svg { width: 14px; height: 14px; }
.dash-side-brand strong { font-size: 14px; font-weight: 800; }
.dash-side-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  padding: 9px 10px;
  border-radius: 8px;
  color: rgba(255,255,255,.7);
}
.dash-side-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.dash-side-item.active { background: rgba(13,155,71,.2); color: #fff; }
.dash-side-divider { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); padding: 14px 10px 6px; }

.dash-main { padding: 22px; background: #faf8f3; }
.dash-h {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.dash-h h4 { font-size: 18px; margin: 0; font-weight: 800; letter-spacing: -0.01em; }
.dash-h .sub { font-size: 12px; color: var(--navy-300); margin-top: 2px; }
.dash-h-actions { display: flex; gap: 8px; }
.dash-pill { font-size: 11px; padding: 6px 10px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--navy); font-weight: 600; }
.dash-pill.green { background: var(--green); color: #fff; border-color: var(--green); }

.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.kpi { background: #fff; border-radius: 10px; padding: 12px; border: 1px solid var(--line); }
.kpi-label { font-size: 10px; color: var(--navy-300); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.kpi-value { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-top: 4px; line-height: 1; }
.kpi-delta { font-size: 11px; margin-top: 4px; font-weight: 600; }
.kpi-delta.up { color: var(--green); }
.kpi-delta.down { color: #c0392b; }

.dash-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; }
.dash-card { background: #fff; border-radius: 10px; border: 1px solid var(--line); padding: 14px; }
.dash-card h5 { font-size: 13px; margin: 0 0 10px; font-weight: 700; }
.dash-card .more { font-size: 11px; color: var(--navy-300); float: right; font-weight: 500; }

.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 110px; padding-top: 8px; }
.chart-bars .bar {
  flex: 1; background: linear-gradient(180deg, var(--green), #34c66b);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  position: relative;
}
.chart-bars .bar.muted { background: linear-gradient(180deg, #cfdfd5, #e5ede8); }
.chart-x { display: flex; gap: 6px; margin-top: 6px; font-size: 9px; color: var(--navy-300); }
.chart-x span { flex: 1; text-align: center; }

.top-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line); font-size: 12px; }
.top-row:first-of-type { border-top: 0; padding-top: 4px; }
.top-row .av { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: var(--navy-200); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 11px; }
.top-row .name { flex: 1; font-weight: 600; }
.top-row .pts { color: var(--green); font-weight: 700; }
.top-row .tier { font-size: 9px; padding: 2px 6px; border-radius: 999px; background: #fef3c7; color: #92400e; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-right: 6px; }
.top-row .tier.silver { background: #e5e7eb; color: #4b5563; }
.top-row .tier.platinum { background: #ddd6fe; color: #5b21b6; }

/* ========== REAL DASHBOARD (matches product UI) ========== */
.dash2 { background: #faf8f3; min-height: 540px; padding: 22px 24px; }
.dash2-nav {
  display: flex; align-items: center; gap: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.dash2-brand { display: flex; align-items: center; gap: 8px; margin-right: 16px; }
.dash2-brand .mark { width: 24px; height: 24px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.dash2-brand .mark svg { width: 13px; height: 13px; }
.dash2-brand strong { font-size: 14px; font-weight: 800; line-height: 1; }
.dash2-brand small { font-size: 9px; color: var(--navy-300); display: block; line-height: 1; }
.dash2-nav-link { font-size: 12px; font-weight: 600; color: var(--navy-300); }
.dash2-nav-link.active { color: var(--navy); position: relative; }
.dash2-nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -23px;
  height: 2px; background: var(--navy);
}
.dash2-title { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 16px; }

.dash2-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi2 {
  background: #fff;
  border-radius: 8px;
  padding: 14px 14px 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-left: 3px solid var(--navy);
}
.kpi2.green { border-left-color: var(--green); }
.kpi2.cyan { border-left-color: #3eb8d4; }
.kpi2.yellow { border-left-color: #f5b840; }
.kpi2-label { font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.kpi2.green .kpi2-label { color: var(--green); }
.kpi2.cyan .kpi2-label { color: #2ba2bb; }
.kpi2.yellow .kpi2-label { color: #c08e1f; }
.kpi2-value { font-size: 22px; font-weight: 800; margin-top: 4px; line-height: 1; color: var(--navy); }
.kpi2-icon { color: var(--navy-200); flex-shrink: 0; }
.kpi2-icon svg { width: 26px; height: 26px; }

.dash2-actions {
  background: #f0ece2;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.dash2-actions h6 { margin: 0 0 10px; font-size: 11px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.dash2-actions h6::before { content: "⚡"; color: #f5b840; }
.dash2-action-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dash2-action {
  background: var(--navy); color: #fff;
  border-radius: 6px;
  padding: 10px;
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.dash2-action.green { background: var(--green); }
.dash2-action.cyan { background: #3eb8d4; }
.dash2-action.yellow { background: #f5b840; color: var(--navy); }
.dash2-action svg { width: 13px; height: 13px; }

.dash2-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 12px; margin-bottom: 12px; }
.dash2-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.dash2-card h6 { font-size: 12px; margin: 0 0 12px; font-weight: 700; color: var(--navy); }

.line-chart { height: 110px; position: relative; padding: 6px 0; }
.line-chart svg { width: 100%; height: 100%; overflow: visible; }
.line-chart .gridline { stroke: #e8e4dc; stroke-width: 1; }
.line-chart .axis-label { font-size: 8px; fill: var(--navy-300); }
.line-chart .legend { display: flex; gap: 14px; justify-content: center; margin-bottom: 8px; font-size: 10px; }
.line-chart .legend-item { display: flex; align-items: center; gap: 5px; color: var(--navy); }
.line-chart .legend-swatch { width: 16px; height: 2px; border-radius: 2px; }

.donut { display: flex; align-items: center; gap: 14px; }
.donut-svg { width: 110px; height: 110px; flex-shrink: 0; }
.donut-legend { font-size: 10px; display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.donut-legend-item { display: flex; align-items: center; gap: 6px; color: var(--navy); }
.donut-legend-item .sw { width: 9px; height: 9px; border-radius: 2px; flex-shrink: 0; }
.donut-legend-item .nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ========== APP MOCKUP SECTION ========== */
.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}
.phone-stage::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(ellipse at center, rgba(13,155,71,0.15), transparent 65%);
  z-index: 0;
}
.phone {
  position: relative;
  width: 290px;
  height: 590px;
  background: #0c1220;
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(8,41,82,.35), 0 0 0 1px rgba(255,255,255,.05) inset;
  z-index: 1;
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #0c1220;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.app-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 6px;
  font-size: 12px; font-weight: 700; color: var(--navy);
}
.app-status .right-icons { display: flex; gap: 4px; }
.app-status svg { width: 14px; height: 14px; }
.app-h {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 0;
}
.app-h .greet { font-size: 13px; color: var(--navy-300); }
.app-h .name { font-size: 17px; font-weight: 800; }
.app-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #ffd6a5, #f4a261); }

.app-card {
  margin: 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,155,71,.5), transparent 70%);
}
.app-card .label { font-size: 11px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.app-card .pts { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-top: 4px; display: flex; align-items: baseline; gap: 6px; }
.app-card .pts .star { width: 22px; height: 22px; color: var(--green); }
.app-card .tier-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; font-size: 12px; }
.app-card .tier-row .tier { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; padding: 4px 10px; border-radius: 999px; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.app-card .progress-mini { height: 5px; background: rgba(255,255,255,.18); border-radius: 999px; margin-top: 10px; overflow: hidden; }
.app-card .progress-mini > span { display: block; height: 100%; width: 70%; background: var(--green); border-radius: 999px; }
.app-card .progress-text { font-size: 10px; color: rgba(255,255,255,.7); margin-top: 6px; }

.app-quick {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 0 14px;
  margin-bottom: 14px;
}
.app-quick-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
}
.app-quick-item svg { width: 18px; height: 18px; color: var(--green); margin: 0 auto 4px; display: block; }

.app-section-title { padding: 0 18px; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.app-benefit-list { padding: 0 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.app-benefit {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}
.app-benefit .pic { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; background: var(--green-50); display: grid; place-items: center; color: var(--green); font-weight: 700; font-size: 12px; }
.app-benefit .body { flex: 1; }
.app-benefit .title { font-size: 12px; font-weight: 700; line-height: 1.2; }
.app-benefit .meta { font-size: 10px; color: var(--navy-300); margin-top: 2px; }
.app-benefit .cost { font-size: 11px; font-weight: 700; color: var(--green); flex-shrink: 0; }

.app-tabbar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px 0 14px;
}
.app-tab { display: grid; place-items: center; gap: 2px; font-size: 9px; color: var(--navy-300); font-weight: 600; }
.app-tab.active { color: var(--green); }
.app-tab svg { width: 18px; height: 18px; }

/* App floating chips */
.phone-chip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}
.phone-chip .ic { width: 28px; height: 28px; border-radius: 8px; background: var(--green-50); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.phone-chip .ic svg { width: 16px; height: 16px; }
.phone-chip .small { font-size: 11px; color: var(--navy-300); font-weight: 500; }
.phone-chip.pc1 { top: 12%; left: 10%; transform: rotate(-4deg); }
.phone-chip.pc2 { bottom: 18%; right: 4%; transform: rotate(3deg); }
.phone-chip.pc3 { top: 50%; right: 6%; transform: rotate(-2deg); }

/* ========== APP REAL (matches product) ========== */
.app2-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px 8px; }
.app2-top .logo { font-size: 19px; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.app2-top .menu { width: 32px; height: 32px; background: var(--navy); border-radius: 6px; display: grid; place-items: center; color: #fff; }
.app2-top .menu svg { width: 16px; height: 16px; }

.app2-card {
  margin: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.app2-card .head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.app2-card .title { font-size: 19px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.app2-card .tier-pill { background: linear-gradient(135deg, #cfd6dd, #8b96a3); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.app2-card .pts { font-size: 22px; font-weight: 800; color: var(--navy); margin-top: 8px; letter-spacing: -0.01em; }
.app2-card .pts span { font-size: 13px; font-weight: 600; color: var(--navy-300); margin-left: 2px; }
.app2-card .actions { display: flex; gap: 8px; margin-top: 12px; }
.app2-card .actions .btn-mini { flex: 1; text-align: center; padding: 9px; font-size: 12px; font-weight: 700; border-radius: 6px; }
.app2-card .actions .filled { background: var(--navy); color: #fff; }
.app2-card .actions .outline { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
.app2-card hr { border: 0; border-top: 1px solid var(--line); margin: 14px 0 12px; }
.app2-card .progress-label { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.app2-card .progress-track {
  height: 18px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.app2-card .progress-fill {
  height: 100%; width: 92.5%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
}
.app2-card .progress-foot { font-size: 10px; color: var(--navy-300); text-align: right; margin-top: 5px; }

.app2-section {
  margin: 8px 12px 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 14px 12px;
  flex: 1;
}
.app2-section .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.app2-section .head .ttl { font-size: 13px; font-weight: 700; color: var(--navy); }
.app2-section .head .more { font-size: 9px; font-weight: 700; background: var(--navy); color: #fff; padding: 5px 8px; border-radius: 6px; }
.app2-bens { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.app2-ben {
  flex: 0 0 130px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.app2-ben .img {
  height: 70px;
  background-size: cover; background-position: center;
}
.app2-ben .body { padding: 8px 10px 10px; }
.app2-ben .nm { font-size: 11px; font-weight: 700; line-height: 1.25; color: var(--navy); margin-bottom: 4px; }
.app2-ben .desc { font-size: 9px; color: var(--navy-300); line-height: 1.35; margin-bottom: 6px; }
.app2-ben .pts { font-size: 12px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.app2-ben .suc { display: inline-block; background: var(--navy); color: #fff; font-size: 7px; font-weight: 700; padding: 3px 5px; border-radius: 4px; letter-spacing: .04em; margin-bottom: 4px; }
.app2-ben .days { display: flex; gap: 3px; flex-wrap: wrap; }
.app2-ben .day { font-size: 7px; font-weight: 700; background: var(--green); color: #fff; padding: 2px 5px; border-radius: 999px; }

/* ========== WEMENU SECTION ========== */
:root {
  --wm-pink: #ec9bbf;
  --wm-pink-dark: #d56a9c;
  --wm-blue: #4858b8;
  --wm-blue-dark: #3a48a0;
  --wm-bg-1: #fdf3f8;
  --wm-bg-2: #eef0fb;
  --wm-border: #f3cfe1;
}
.wm-section {
  background: linear-gradient(180deg, #fdf3f8 0%, #eef0fb 100%);
  border-top: 1px solid var(--wm-border);
  border-bottom: 1px solid var(--wm-border);
  position: relative;
  overflow: hidden;
}
.wm-section::before {
  content: "";
  position: absolute;
  top: -10%; right: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(236,155,191,0.30) 0%, transparent 65%);
  pointer-events: none;
}
.wm-section::after {
  content: "";
  position: absolute;
  bottom: -15%; left: -5%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(72,88,184,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.wm-section .container { position: relative; z-index: 1; }
.wm-section h2 { color: var(--navy); }
.wm-section h2 .accent { color: var(--wm-blue); }
.wm-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.wm-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fce4ef;
  color: var(--wm-blue) !important;
  border: 1px solid var(--wm-border);
  color: var(--green);
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.wm-eyebrow .badge { width: 22px; height: 22px; background: var(--wm-pink); border-radius: 50%; display: grid; place-items: center; color: #fff; }
.wm-eyebrow .badge svg { width: 13px; height: 13px; }
.wm-logos {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.wm-logos .logo-chip {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 22px 14px 14px;
  box-shadow: 0 4px 14px rgba(8,41,82,0.06);
}
.wm-logos .logo-chip .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.wm-logos .logo-chip .ic svg { width: 24px; height: 24px; }
.wm-logos .logo-chip .nm { font-weight: 800; color: var(--navy); font-size: 19px; letter-spacing: -0.01em; }
.wm-logos .logo-chip.alt { background: #fff; border-color: var(--wm-border); }
.wm-logos .logo-chip.alt .ic { background: transparent; width: 56px; height: 56px; }
.wm-logos .logo-chip.alt .ic img { width: 56px; height: 56px; display: block; object-fit: contain; }
.wm-logos .logo-chip.alt .nm { color: var(--wm-blue); }
.wm-logos .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.wm-feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.wm-feature-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; }
.wm-feature-list .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--wm-blue) !important;
  color: #fff;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.wm-feature-list .ic svg { width: 18px; height: 18px; }
.wm-feature-list strong { font-weight: 700; display: block; margin-bottom: 3px; }
.wm-feature-list span.desc { color: var(--navy-300); font-size: 14.5px; }

/* WeMenu visual: dual mockup composition */
.wm-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.wm-visual::before {
  content: "";
  position: absolute;
  inset: 8% 5%;
  background: radial-gradient(ellipse at center, rgba(236,155,191,0.30), transparent 65%);
  z-index: 0;
}
.wm-menu {
  width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  transform: rotate(-2deg);
}
.wm-menu .top {
  background: linear-gradient(135deg, #ec9bbf 0%, #4858b8 100%);
  color: #fff;
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.wm-menu .top .nm { font-weight: 800; font-size: 15px; }
.wm-menu .top .nm small { font-size: 11px; font-weight: 500; opacity: .65; display: block; margin-top: 1px; }
.wm-menu .pts-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--green);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.wm-menu .pts-pill svg { width: 11px; height: 11px; }
.wm-menu .body { padding: 14px 16px; }
.wm-menu .cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy-300); margin-bottom: 8px; }
.wm-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.wm-item:last-child { border-bottom: 0; }
.wm-item .pic { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; background-size: cover; background-position: center; }
.wm-item .body-i { flex: 1; min-width: 0; }
.wm-item .nm-i { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.wm-item .desc-i { font-size: 11px; color: var(--navy-300); margin-top: 2px; line-height: 1.3; }
.wm-item .price { font-size: 13px; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.wm-item .price small { font-size: 10px; color: var(--green); display: block; margin-top: 1px; font-weight: 700; }

.wm-toast {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
  max-width: 250px;
}
.wm-toast .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--green); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.wm-toast .ic svg { width: 18px; height: 18px; }
.wm-toast .ttl { font-size: 13px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.wm-toast .sub { font-size: 11px; color: var(--navy-300); margin-top: 2px; }
.wm-toast.t1 { top: 4%; right: 4%; transform: rotate(3deg); border: 1px solid var(--wm-border); }
.wm-toast.t2 { bottom: 8%; left: -4%; transform: rotate(-3deg); border: 1px solid var(--wm-border); }
.wm-toast.t2 .ic { background: var(--wm-blue); }

/* ========== TIERS CUSTOM BLOCK ========== */
.tier-custom {
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.tier-custom h3 { font-size: 24px; margin: 0 0 8px; font-weight: 800; letter-spacing: -0.01em; }
.tier-custom p { color: var(--navy-300); margin: 0; font-size: 15px; line-height: 1.55; }
.tier-examples { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.tier-example {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.tier-example .lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: 8px; }
.tier-example .row { display: flex; gap: 6px; flex-wrap: wrap; }
.tier-example .chip {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
}

/* ========== TIERS ========== */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tier {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease;
}
.tier:hover { transform: translateY(-4px); }
.tier-medal {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}
.tier-bronze .tier-medal { background: linear-gradient(135deg, #c47b3a, #8a4f1d); box-shadow: 0 8px 20px rgba(196,123,58,.35); }
.tier-silver .tier-medal { background: linear-gradient(135deg, #cfd6dd, #8b96a3); box-shadow: 0 8px 20px rgba(139,150,163,.3); }
.tier-gold .tier-medal { background: linear-gradient(135deg, #f5cf67, #c89225); box-shadow: 0 8px 20px rgba(200,146,37,.35); }
.tier-platinum .tier-medal { background: linear-gradient(135deg, #d6e6f5, #6b8eaf); box-shadow: 0 8px 20px rgba(107,142,175,.3); }
.tier-name { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; }
.tier-range { font-size: 13px; color: var(--navy-300); font-weight: 600; margin-bottom: 18px; }
.tier-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.tier-perks li { display: flex; gap: 8px; align-items: flex-start; color: var(--navy-700); }
.tier-perks li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ========== CASES ========== */
.cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.case {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff;
  isolation: isolate;
}
.case-img { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; transition: transform .4s ease; }
.case:hover .case-img { transform: scale(1.05); }
.case::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,41,82,.85) 100%);
  z-index: -1;
}
.case-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; }
.case-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #34c66b; margin-bottom: 6px; }
.case h4 { font-size: 19px; margin: 0 0 6px; font-weight: 800; letter-spacing: -0.01em; }
.case p { font-size: 13px; margin: 0; color: rgba(255,255,255,.85); line-height: 1.45; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tst {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.tst .quote { font-size: 11rem; line-height: 0; position: absolute; top: 50px; left: 22px; color: rgba(13,155,71,.18); font-family: serif; }
.tst-text { font-size: 16px; line-height: 1.5; margin: 0 0 24px; color: rgba(255,255,255,.92); position: relative; }
.tst-author { display: flex; align-items: center; gap: 12px; }
.tst-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.2);
}
.tst-author .name { font-weight: 700; font-size: 14px; color: #fff; }
.tst-author .role { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.tst-stars { color: #fcd34d; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }

/* ========== PRICING ========== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s ease;
}
.plan.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.plan-tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-name { font-size: 14px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--green); }
.plan.featured .plan-name { color: #34c66b; }
.plan-desc { font-size: 14px; color: var(--navy-300); margin: 6px 0 22px; }
.plan.featured .plan-desc { color: rgba(255,255,255,.7); }
.plan-price { font-size: 46px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.plan-price small { font-size: 16px; font-weight: 600; color: var(--navy-300); margin-left: 4px; }
.plan.featured .plan-price small { color: rgba(255,255,255,.6); }
.plan-period { font-size: 13px; color: var(--navy-300); margin-top: 6px; }
.plan.featured .plan-period { color: rgba(255,255,255,.6); }
.plan-features { list-style: none; padding: 0; margin: 28px 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.plan-features li::before {
  content: "";
  width: 18px; height: 18px;
  background: var(--green-50);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9b47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.plan.featured .plan-features li::before { background-color: rgba(13,155,71,.3); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334c66b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.plan .btn { justify-content: center; width: 100%; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.contact-grid::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,155,71,.3), transparent 65%);
}
.contact-grid h2 { color: #fff; margin-bottom: 14px; }
.contact-grid .lead { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; position: relative; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(13,155,71,.18); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.contact-item .ic svg { width: 20px; height: 20px; }
.contact-item .label { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.contact-item .val { font-size: 16px; font-weight: 600; margin-top: 2px; color: #fff; }

.form { background: #fff; color: var(--navy); border-radius: 18px; padding: 32px; box-shadow: var(--shadow-md); position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13,155,71,.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-full { grid-column: 1 / -1; margin-bottom: 14px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg);
  padding: 60px 0 34px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 16px; color: var(--navy); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--navy-300); transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-about p { font-size: 14px; color: var(--navy-300); margin: 12px 0 0; max-width: 320px; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); font-size: 13px; color: var(--navy-300); }
.footer-bottom .made { display: flex; align-items: center; gap: 6px; }
.footer-bottom .made .heart { color: #e74c3c; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .wm-grid { grid-template-columns: 1fr; gap: 60px; }
  .wm-visual { max-width: 520px; margin: 0 auto; }
  .tier-custom { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 80px 0 100px; }
  .hero-card-wrap { display: none; }
  .qe-grid, .split, .split.reverse { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse .split-text { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step + .step { border-left: 0; }
  .step:nth-child(2) { border-left: 1px solid var(--line); }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 28px; }
  .step:nth-child(4) { border-left: 1px solid var(--line); }
  .benefits, .tiers, .cases, .testimonials, .plans { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding: 44px 28px; }
  .section { padding: 80px 0; }
  .dash2 { padding: 16px; }
  .dash2-nav { flex-wrap: wrap; gap: 6px 14px; padding-bottom: 10px; }
  .dash2-nav-link { font-size: 11px; }
  .dash2-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash2-grid { grid-template-columns: 1fr; }
  .dash2-action-row { grid-template-columns: repeat(2, 1fr); }
  .donut { flex-direction: column; gap: 16px; }
  .donut-svg { width: 140px; height: 140px; }
  h1 { font-size: clamp(36px, 7vw, 56px); }
  h2 { font-size: clamp(28px, 5vw, 40px); }
  .hero-title { font-size: clamp(40px, 8vw, 64px); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .nav { padding: 14px 0; }
  .nav-actions .btn-secondary { display: none; }
  .nav-actions { gap: 8px; }
  .nav-brand img { height: 32px; }
  .benefits, .tiers, .cases, .testimonials, .plans { grid-template-columns: 1fr; }
  .qe-stats { grid-template-columns: 1fr; }
  .qe-visual { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step + .step, .step:nth-child(2), .step:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); margin-top: 24px; padding-top: 28px; }
  .step:nth-child(3) { margin-top: 24px; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .dash2-kpis { grid-template-columns: 1fr; }
  .dash2-action-row { grid-template-columns: 1fr; }
  .dash2-title { font-size: 18px; }
  .kpi2-value { font-size: 28px; }
  .tier-examples { grid-template-columns: 1fr; }
  .wm-toast.t1, .wm-toast.t2 { display: none; }
  .wm-menu { padding: 14px; }
  .wm-logos { flex-wrap: wrap; gap: 10px; }
  .logo-chip { font-size: 14px; padding: 8px 12px; }
  .hero-card-wrap, .hero-card { padding: 18px; }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 28px; }
  .lead { font-size: 16px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; text-align: center; justify-content: center; }
  .phone { transform: scale(0.92); transform-origin: top center; }
  .device-window { transform: scale(0.85); transform-origin: top center; margin-bottom: -40px; }
}
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  h1, .hero-title { font-size: 36px; }
  .section-head h2, h2 { font-size: 26px; }
  .device-window { display: none; }
  .panel-mobile-fallback { display: block; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 16px; text-align: center; color: var(--navy-300); font-size: 14px; }
}
