/* =====================================================
   Growi — Shared Styles
   Used by: index.html, app/index.html, web/index.html
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;600;700&family=Syne:wght@700;800&display=swap');

/* ── Design tokens ── */
:root {
  --ink:    #0C0C0C;
  --ink2:   #2E2E2E;
  --ink3:   #696969;
  --accent: #1A6B47;
  --accent2:#0E4A30;
  --accentM:#4FA87A;
  --accentL:#E7F4EE;
  --off:    #F6F6F4;
  --white:  #fff;
  --line:   rgba(12,12,12,.10);
  --line2:  rgba(12,12,12,.16);
  --epi:    'Epilogue', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --syne:   'Syne', var(--epi);
  --max:    1160px;
  --shadow-sm: 0 4px 12px rgba(12,12,12,.06);
  --shadow-md: 0 18px 50px rgba(12,12,12,.08);
  --shadow-lg: 0 28px 80px rgba(12,12,12,.10);
  --shadow: var(--shadow-lg);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--epi); background: #fff; color: var(--ink); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Navigation — floating pill ── */
nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 32px), var(--max));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 22px;
  border: 1px solid rgba(12,12,12,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: var(--shadow-md);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
nav.scrolled {
  border-color: rgba(12,12,12,.14);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,.88);
}
.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.nav-brand {
  display: flex;
  align-items: center;
  font-family: var(--syne);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.04em;
  color: var(--ink);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand .dot { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 620;
  color: var(--ink2);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(12,12,12,.06); color: var(--ink); }
.nav-links a.active {
  background: var(--accentL);
  color: var(--accent2);
  font-weight: 700;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 48px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
  transition: background .15s, transform .1s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-wa:hover { background: var(--accent); transform: translateY(-1px); }
.nav-wa svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-wa .wa-label { font-size: 13px; }
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(12,12,12,.08);
  border-radius: 999px;
  background: rgba(12,12,12,.04);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
}
.nav-hamburger svg { width: 19px; height: 19px; }
.nav-hamburger:hover { background: rgba(12,12,12,.075); }

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  display: block;
  pointer-events: none;
  background: rgba(12,12,12,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .18s ease;
}
.mobile-menu.open { pointer-events: auto; opacity: 1; }
.mobile-menu-card {
  position: absolute;
  top: 88px; left: 12px; right: 12px;
  padding: 10px;
  border: 1px solid rgba(12,12,12,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 6px;
}
.mobile-menu-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 18px;
  color: var(--ink2);
  font-size: 15px;
  font-weight: 620;
  transition: background .15s, color .15s;
}
.mobile-menu-card a:hover { background: var(--off); color: var(--ink); }
.mobile-menu-card a.active { color: var(--accent2); background: var(--accentL); }
.mobile-menu-card .mobile-wa,
.mobile-menu-card .mobile-menu-cta {
  background: var(--ink);
  color: #fff;
  justify-content: center;
  border-radius: 14px;
  font-weight: 720;
  margin-top: 4px;
}
.mobile-menu-card .mobile-wa:hover,
.mobile-menu-card .mobile-menu-cta:hover { background: var(--accent); }
body.menu-open { overflow: hidden; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--epi);
  font-size: 15px;
  font-weight: 720;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: background .16s, color .16s, transform .1s, box-shadow .16s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent2); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accentL); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--accent); color: #fff; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 13px; }
.btn-lg { height: 58px; padding: 0 36px; font-size: 16px; }

/* ── Sections ── */
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark   { background: var(--ink); color: #fff; }
.section-off    { background: var(--off); }
.section-accent { background: var(--accent); color: #fff; }

/* ── Section header ── */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  background: var(--accentL);
  color: var(--accent2);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-dark .eyebrow { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.section-accent .eyebrow { background: rgba(255,255,255,.2); color: rgba(255,255,255,.9); }
.section-title {
  font-family: var(--syne);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--ink);
}
.section-dark .section-title,
.section-accent .section-title { color: #fff; }
.section-lead {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 640px;
  margin-top: 16px;
}
.hero-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.5;
  text-wrap: balance;
}
.section-dark .section-lead   { color: rgba(255,255,255,.7); }
.section-accent .section-lead { color: rgba(255,255,255,.85); }
.section-header.center .section-lead { margin-left: auto; margin-right: auto; }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Card ── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accentL);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
  margin-bottom: 20px;
}
.icon-inline,
.icon-card,
.icon-pill {
  display: block;
  flex-shrink: 0;
  color: var(--accent2);
}
.icon-card {
  width: 24px;
  height: 24px;
}
.icon-pill {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
}

/* ── Steps ── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { position: relative; }
.step-num {
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--syne);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--ink);
}
.step-desc { font-size: 14px; color: var(--ink2); line-height: 1.6; }

/* ── Checklist ── */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 620;
  color: var(--ink);
  line-height: 1.4;
}
.check-item .chk {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accentL);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-item .chk svg { width: 12px; height: 12px; color: var(--accent2); }

/* ── Price anchor ── */
.price-anchor {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink3);
  letter-spacing: -.01em;
}

/* ── Plan cards ── */
.plans-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  display: inline-flex;
  width: max-content;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 770;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.plan-name {
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--ink3);
  margin-bottom: 10px;
}
.plan-card.featured .plan-name { color: rgba(255,255,255,.5); }
.plan-setup-price {
  font-family: var(--syne);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .95;
  color: var(--ink);
  margin-bottom: 4px;
}
.plan-card.featured .plan-setup-price { color: #fff; }
.plan-period-label {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 8px;
}
.plan-card.featured .plan-period-label { color: rgba(255,255,255,.5); }
.plan-monthly {
  font-size: 14px;
  font-weight: 620;
  color: var(--ink2);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 16px 0;
}
.plan-card.featured .plan-monthly { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.12); }
.plan-monthly strong { color: var(--ink); }
.plan-card.featured .plan-monthly strong { color: #fff; }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; }
.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.4;
}
.plan-card.featured .plan-feat { color: rgba(255,255,255,.75); }
.plan-feat-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}
.plan-card.featured .plan-feat-dot { background: var(--accentM); }
.plan-cta { width: 100%; display: flex; justify-content: center; }
.plan-cta .btn { width: 100%; }
.plan-note {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-of-type { border-top: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.02em;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink3);
  flex-shrink: 0;
  font-style: normal;
  line-height: 1;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.faq-list details[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-list details p {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 36px;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--syne);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 10px;
}
.footer-brand-name .dot { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.55;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ink3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink2);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink3);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .56s ease, transform .56s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .grid-3  { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .plans-row { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  nav { top: 12px; width: calc(100% - 24px); height: 64px; padding: 9px 9px 9px 18px; }
  .nav-links { display: none; }
  .nav-right { margin-left: auto; }
  .nav-wa { display: none; }
  .nav-hamburger { display: inline-flex; margin-left: auto; }
}

@media (max-width: 768px) {
  .grid-2  { grid-template-columns: 1fr; }
  .grid-3  { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
}

@media (max-width: 640px) {
  .nav-wa .wa-label { display: none; }
  .nav-wa { width: 48px; padding: 0; justify-content: center; border-radius: 50%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 420px) {
  nav { width: calc(100% - 16px); padding: 8px; }
  .nav-inner { gap: 6px; }
  .nav-brand,
  .nav-logo-text { font-size: 19px; }
  .nav-hamburger,
  .nav-wa { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { height: 48px; padding: 0 22px; font-size: 14px; }
  .btn-lg { height: 52px; padding: 0 26px; font-size: 15px; }
}

/* ── Aliases for /app and /web pages ── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; margin-top: 40px; }
.plan-price { font-family: var(--syne); font-size: 40px; font-weight: 800; letter-spacing: -.055em; line-height: .95; color: var(--ink); margin-bottom: 4px; }
.plan-card.featured .plan-price { color: #fff; }
.plan-period { font-size: 13px; color: var(--ink3); margin-bottom: 8px; }
.plan-card.featured .plan-period { color: rgba(255,255,255,.5); }
.plan-setup { font-size: 12px; font-weight: 650; color: var(--accent); margin-bottom: 20px; }
.plan-card.featured .plan-setup { color: var(--accentM); }
.plan-divider { height: 1px; background: var(--line); margin: 0 0 20px; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,.12); }
.plan-btn { width: 100%; height: 50px; border-radius: 999px; font-family: inherit; font-size: 14px; font-weight: 690; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .16s, color .16s, transform .1s; text-decoration: none; margin-top: auto; }
.plan-btn-outline { border: 1.5px solid var(--line); background: transparent; color: var(--ink); }
.plan-btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.plan-btn-fill { border: 0; background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.plan-btn-fill:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.pfd { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 6px; }
.plan-card.featured .pfd { background: var(--accentM); }
/* Footer aliases */
.footer-inner { max-width: calc(var(--max) + 48px); margin: 0 auto; padding: 0 24px; }
.footer-brand { font-family: var(--syne); font-weight: 800; font-size: 20px; letter-spacing: -.04em; color: var(--ink); margin-bottom: 10px; display: inline-block; text-decoration: none; }
.footer-brand .dot { color: var(--accent); }
/* FAQ body (div variant) */
.faq-body { padding: 0 0 22px; font-size: 15px; color: var(--ink2); line-height: 1.7; }
/* Nav logo text (inherits from nav-brand) */
.nav-logo-text { font-family: var(--syne); font-weight: 800; font-size: 21px; letter-spacing: -.04em; color: var(--ink); }
.nav-logo-text .dot { color: var(--accent); }
@media (max-width: 880px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .plans-grid { gap: 14px; }
}

/* ── Currency toggle ── */
.currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--off);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 40px;
}
.currency-btn {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: var(--epi);
  font-size: 13px;
  font-weight: 680;
  color: var(--ink3);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.currency-btn.active {
  background: var(--ink);
  color: #fff;
}
.currency-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Guarantee block ── */
.guarantee-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--accentL);
  border: 1px solid rgba(26,107,71,.15);
  border-radius: 18px;
  margin-top: 40px;
}
.guarantee-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.guarantee-text h4 {
  font-size: 15px;
  font-weight: 740;
  letter-spacing: -.02em;
  color: var(--accent2);
  margin-bottom: 4px;
}
.guarantee-text p {
  font-size: 13.5px;
  color: var(--accent2);
  opacity: .8;
  line-height: 1.55;
}

/* ── Stat row ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.stat-number {
  font-family: var(--syne);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.05em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span {
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}
.trust-title {
  font-family: var(--syne);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 10px;
}
.trust-label {
  max-width: 220px;
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.55;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.use-case-card h3,
.example-card h3 {
  font-family: var(--syne);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 12px;
}
.use-case-card p,
.example-card p {
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.65;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.example-card {
  display: flex;
  flex-direction: column;
}
.example-objective {
  margin-bottom: 18px;
}
.example-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.example-list li {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.5;
}
.example-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: 800;
  margin-right: 8px;
}
.example-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.trust-block {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  text-align: center;
}
.trust-block h2 {
  font-family: var(--syne);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
}
.trust-block p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink2);
}

/* Legal pages */
.legal-shell {
  min-height: 100vh;
  background: var(--bg);
}
.legal-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250,249,246,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.legal-nav-inner {
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-brand {
  font-family: var(--syne);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  text-decoration: none;
}
.legal-brand .dot { color: var(--accent); }
.legal-back {
  font-size: 13px;
  font-weight: 720;
  color: var(--ink2);
  text-decoration: none;
}
.legal-back:hover { color: var(--accent); }
.legal-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 96px 24px 72px;
}
.legal-main h1 {
  font-family: var(--syne);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 20px;
}
.legal-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 0 0 44px;
}
.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.legal-section h2 {
  font-family: var(--syne);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal-section p,
.legal-section li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink2);
}
.legal-section p { margin: 0 0 12px; }
.legal-section ul {
  margin: 0;
  padding-left: 20px;
}
.legal-note {
  margin-top: 36px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--off);
  color: var(--ink3);
  font-size: 13px;
  line-height: 1.6;
}

/* ── Plan badge ── */
.plan-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accentM);
  color: #fff;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan-card.featured .plan-badge {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* ── WhatsApp float button (mobile only) ── */
.wa-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  left: auto;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .15s, box-shadow .15s;
}
.wa-float:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}

/* ── Scroll margin for fixed nav ── */
section[id] { scroll-margin-top: 96px; }

/* ── Focus visible global ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .stat-row { grid-template-columns: 1fr; gap: 12px; }
  .use-cases-grid { grid-template-columns: 1fr; gap: 14px; }
  .example-card .btn,
  .section-cta .btn { width: 100%; justify-content: center; }
  .trust-block { padding: 28px 20px; }
  .currency-toggle { width: 100%; justify-content: center; }
  .wa-float { display: flex; }
  footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .section { padding: 56px 0; }
}
