:root {
  --bg: #F6F1E5;
  --surface: #FDFAF2;
  --ink: #111111;
  --ink-soft: #6B6660;
  --ink-softer: #A39D92;
  --accent: #FF5E3A;
  --accent-soft: #FFE6DF;
  --butter: #FFD952;
  --butter-soft: #FFF1B8;
  --mint: #C8E8D0;
  --mint-ink: #1A6B3A;
  --line-green: #06C755;
  --line: rgba(17,17,17,0.08);
  --line-strong: rgba(17,17,17,0.15);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Prompt', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17,17,17,0.06) 1px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; }
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ==================== NAV ==================== */
.nav {
  padding: 18px 0;
  background: rgba(246, 241, 229, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.nav-logo .dot { color: var(--accent); }
.nav-logo .smile {
  width: 17px; height: 10px;
  color: var(--accent);
  margin-left: 1px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-cta .secondary {
  font-family: 'Prompt', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 12px;
  display: inline-flex;
}
.nav-cta .primary {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px 9px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s;
}
.nav-cta .primary:hover { transform: translateY(-1px); }
.nav-cta .primary .arrow-circle {
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}
.menu-toggle {
  display: inline-flex;
  width: 36px; height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 4px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

/* ==================== LOGIN MODAL ==================== */
.login-modal {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.2s;
}
.login-modal:target {
  display: flex;
  opacity: 1;
}
.login-modal-overlay {
  position: absolute;
  inset: 0;
  display: block;
  cursor: default;
}
.login-modal-card {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  width: 100%;
  max-width: 420px;
  padding: 26px 22px 22px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.login-modal:target .login-modal-card { transform: translateY(0); }
.login-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-family: 'Prompt', sans-serif;
  font-weight: 600; font-size: 16px;
  color: var(--ink);
  line-height: 1;
}
.login-modal-head {
  text-align: center;
  margin-bottom: 18px;
  padding: 0 8px;
}
.login-modal-head .logo-stamp {
  margin-bottom: 14px;
  filter: drop-shadow(2px 2px 0 var(--ink));
}
.login-modal-head h3 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.login-modal-head h3 em {
  font-style: italic; color: var(--accent);
}
.login-modal-head p {
  font-family: 'Prompt', sans-serif;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.login-modal-roles {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.login-modal-role {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 14px 14px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 2px 2px 0 var(--ink);
}
.login-modal-role:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.login-modal-role.primary {
  background: var(--ink); color: #FFF;
  box-shadow: 3px 3px 0 var(--accent);
}
.login-modal-role.primary .role-icon {
  background: var(--accent); color: #FFF;
  border-color: var(--accent);
}
.login-modal-role.primary .role-meta { color: var(--butter); opacity: 1; }
.login-modal-role.primary .role-arrow { color: var(--butter); }
.login-modal-role.primary:hover {
  box-shadow: 5px 5px 0 var(--accent);
}
.login-modal-role .role-icon {
  width: 40px; height: 40px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.login-modal-role .role-icon svg { width: 18px; height: 18px; }
.login-modal-role .role-info {
  flex: 1; line-height: 1.25;
}
.login-modal-role .role-name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.015em;
}
.login-modal-role .role-meta {
  font-family: 'Prompt', sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 1px;
}
.login-modal-role .role-arrow {
  font-size: 18px;
  color: var(--ink-softer);
  flex-shrink: 0;
  font-weight: 700;
}
.login-modal-role:hover .role-arrow { color: var(--accent); }
.login-modal-foot {
  text-align: center;
  font-family: 'Prompt', sans-serif;
  font-size: 11.5px;
  color: var(--ink-softer);
  padding-top: 12px;
  border-top: 1px dashed rgba(17,17,17,0.12);
}
.login-modal-foot a {
  color: var(--ink); font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==================== HERO ==================== */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, var(--butter) 0%, transparent 60%);
  opacity: 0.6;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  opacity: 0.7;
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  position: relative;
}
.hero-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) 0;
}
.hero-centered .hero-tag,
.hero-centered .role-chooser-label {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .role-chooser {
  margin-left: auto;
  margin-right: auto;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  background: var(--surface);
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  margin-bottom: 22px;
}
.hero-tag .pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-d 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,94,58,0.5);
}
@keyframes pulse-d {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,94,58,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255,94,58,0); }
}
.hero h1 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 700; }
.hero h1 .hl {
  background: linear-gradient(transparent 60%, var(--butter) 60%);
  padding: 0 6px;
}
.hero p.lead {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.btn-primary, .btn-secondary {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px 14px 22px;
  border-radius: 14px;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s;
}
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary .arrow-pill, .btn-secondary .arrow-pill {
  width: 26px; height: 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* btn-hero — larger, prominent variant */
.btn-hero {
  font-size: 16px;
  padding: 18px 22px 18px 28px;
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--accent);
  letter-spacing: -0.01em;
}
.btn-hero:hover { box-shadow: 7px 7px 0 var(--accent); }
.btn-hero .arrow-pill {
  width: 32px; height: 32px;
  font-size: 14px;
  background: var(--butter);
  color: var(--ink);
}
.role-chooser-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 10px;
}
.role-chooser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .role-chooser { grid-template-columns: 1fr 1fr; }
}
.role-card {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 12px;
  align-items: center;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.role-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.role-card.role-shop {
  background: var(--ink);
  color: var(--bg);
}
.role-card.role-shop .role-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--bg);
}
.role-card.role-shop .role-meta { color: var(--ink-softer); }
.role-card.role-shop .role-arrow {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.role-card.role-cust {
  background: var(--butter);
  color: var(--ink);
}
.role-card.role-cust .role-icon {
  background: var(--ink);
  color: var(--butter);
}
.role-card.role-cust .role-meta { color: var(--ink); opacity: 0.7; }
.role-card.role-cust .role-arrow {
  background: var(--ink);
  color: var(--butter);
  border-color: var(--ink);
}
.role-card .role-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.role-card .role-icon svg { width: 22px; height: 22px; }
.role-card .role-text { line-height: 1.2; min-width: 0; }
.role-card .role-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2px;
}
.role-card .role-name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 3px;
}
.role-card .role-meta {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.role-card .role-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.hero-trust {
  font-family: 'Prompt', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .check-mini {
  width: 16px; height: 16px;
  background: var(--mint);
  color: var(--mint-ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  border: 1px solid var(--mint-ink);
}

/* Hero phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.phones-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-label {
  position: absolute;
  z-index: 5;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--accent);
}
.phone-label .pl-num {
  width: 18px; height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 9px;
  border: 1.5px solid var(--ink);
}
.phone-label-shop {
  top: 8px;
  left: 4%;
  transform: rotate(-6deg);
}
.phone-label-cust {
  background: var(--butter);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  bottom: 12px;
  right: 4%;
  transform: rotate(5deg);
}
.phone-label-cust .pl-num {
  background: var(--ink);
  color: var(--butter);
}
.hero-phone {
  width: 240px;
  aspect-ratio: 9 / 19;
  background: #0a0a0a;
  border-radius: 32px;
  padding: 7px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.35),
    0 10px 20px -10px rgba(0,0,0,0.2),
    inset 0 0 0 1px #222;
  position: absolute;
}
.hero-phone-back {
  top: 20px;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
  opacity: 0.96;
}
.hero-phone-front {
  bottom: 0;
  right: 0;
  transform: rotate(4deg);
  z-index: 3;
}
@media (min-width: 480px) {
  .hero-phone { width: 250px; }
  .hero-phone-back { left: 6%; }
  .hero-phone-front { right: 6%; }
}
@media (min-width: 960px) {
  .hero-phone { width: 270px; }
  .hero-phone-back { top: 0; left: -10px; transform: rotate(-7deg); }
  .hero-phone-front { bottom: 10px; right: -10px; transform: rotate(5deg); }
  .phone-label-shop { top: -10px; left: -8px; }
  .phone-label-cust { bottom: -8px; right: -8px; }
}
.hero-phone::before {
  content: '';
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #000;
  border-radius: 9px;
  z-index: 10;
}
.hero-phone .screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}
.hero-phone .screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, var(--butter) 0%, transparent 45%);
  opacity: 0.55;
}
.hero-phone .screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17,17,17,0.07) 1px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.hero-phone .screen-tilted-badge {
  position: absolute;
  top: 32px; left: 12px;
  transform: rotate(-6deg);
  background: var(--ink); color: #fff;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700; font-size: 9px;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 4px;
  z-index: 5;
  box-shadow: 0 4px 10px -3px rgba(17,17,17,0.3);
}
.hero-phone .screen-tilted-badge svg {
  width: 10px; height: 6px;
  color: var(--accent);
}
.hero-phone .screen-status {
  position: relative;
  padding: 30px 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ink-softer);
  z-index: 2;
}
.hero-phone .screen-content {
  position: relative;
  padding: 16px 16px 12px;
  text-align: center;
  z-index: 2;
}
.hero-phone .screen-shop-head {
  margin-bottom: 8px;
}
.hero-phone .screen-logo {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-phone .screen-logo .dot { color: var(--accent); }
.hero-phone .screen-shop-sub {
  font-family: 'Prompt', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.hero-phone .screen-num-block {
  margin-bottom: 6px;
}
.hero-phone .screen-num-label {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 10px;
  color: var(--ink-soft);
  margin-bottom: 1px;
}
.hero-phone .screen-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 84px;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--accent);
  display: inline-block;
  position: relative;
}
.hero-phone .screen-num .star-mini {
  position: absolute;
  top: 4px; right: -14px;
  width: 14px; height: 14px;
  color: var(--butter);
  stroke: var(--ink); stroke-width: 2;
  animation: spin-slow 6s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-phone .screen-sub {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 12px;
  margin-top: 2px;
}
.hero-phone .screen-sub em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}
.hero-phone .screen-sub .of {
  color: var(--ink-softer);
  font-weight: 400;
  font-size: 10px;
  margin-left: 2px;
}
.hero-phone .screen-encourage {
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  font-size: 11px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--ink);
}
.hero-phone .stamps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  margin-bottom: 12px;
}
.hero-phone .stamp {
  height: 16px;
  border-radius: 5px;
  background: rgba(17,17,17,0.1);
}
.hero-phone .stamp.on {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.hero-phone .stamp.on::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}
.hero-phone .stamp.on.b { background: var(--butter); }
.hero-phone .stamp.on.b::after { background: rgba(17,17,17,0.4); }

.hero-phone .reward-card {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
  position: relative;
  box-shadow: 2px 2px 0 var(--ink);
  margin-bottom: 10px;
}
.hero-phone .reward-card::before {
  content: 'ใกล้แล้ว!';
  position: absolute;
  top: -8px; right: 10px;
  transform: rotate(6deg);
  background: var(--butter);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 2px 7px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 8px;
}
.hero-phone .reward-card .gift {
  width: 26px; height: 26px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 7px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-phone .reward-card .gift svg { width: 12px; height: 12px; }
.hero-phone .reward-card .rtxt { line-height: 1.2; }
.hero-phone .reward-card .rlabel-mini {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-softer);
  margin-bottom: 1px;
}
.hero-phone .reward-card .rname {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.hero-phone .screen-foot-mark {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 9px;
  color: var(--ink-softer);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hero-phone .screen-foot-mark .dot { color: var(--accent); }
.hero-phone .screen-foot-mark svg {
  width: 11px; height: 6.5px;
  color: var(--accent);
}

/* Wallet screen (front phone — customer C7 My Cards / DeeCard wallet) */
.hero-phone .screen-wallet {
  background: var(--bg);
}
.hero-phone .screen-wallet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 18%, var(--butter) 0%, transparent 45%);
  opacity: 0.5;
}
.hero-phone .screen-wallet::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17,17,17,0.07) 1px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
}
.hero-phone .wallet-greet {
  position: relative;
  padding: 14px 14px 0;
  z-index: 2;
}
.hero-phone .wallet-greet .wg-h {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.hero-phone .wallet-greet .wg-day {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 9px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.hero-phone .wallet-stats {
  position: relative;
  margin: 12px 14px 0;
  padding: 10px 12px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  border: 1.5px solid var(--ink);
  box-shadow: 1.5px 1.5px 0 var(--ink);
  z-index: 2;
  overflow: hidden;
}
.hero-phone .wallet-stats::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(255,217,82,0.5) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-phone .wallet-stats .ws-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.hero-phone .wallet-stats .ws-big {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--butter);
}
.hero-phone .wallet-stats .ws-meta {
  text-align: right;
  font-family: 'Prompt', sans-serif;
  line-height: 1.2;
}
.hero-phone .wallet-stats .ws-label {
  font-style: italic;
  font-size: 9px;
  color: var(--ink-softer);
  margin-bottom: 1px;
}
.hero-phone .wallet-stats .ws-total {
  font-size: 9px;
  font-weight: 600;
}
.hero-phone .wallet-stats .ws-bottom {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px dashed rgba(255,255,255,0.2);
  font-family: 'Prompt', sans-serif;
  font-size: 9px;
  position: relative;
}
.hero-phone .wallet-stats .ws-bottom strong {
  color: var(--accent);
  font-weight: 700;
}
.hero-phone .wallet-list-h {
  position: relative;
  padding: 10px 14px 4px;
  z-index: 2;
}
.hero-phone .wallet-list-h .wlh-label {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hero-phone .wallet-card {
  position: relative;
  margin: 0 14px 4px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
  padding: 7px 9px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  align-items: center;
  z-index: 2;
}
.hero-phone .wallet-card.featured {
  background: var(--butter);
}
.hero-phone .wallet-card .wc-ready {
  position: absolute;
  top: -7px;
  right: 7px;
  transform: rotate(4deg);
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  padding: 1px 6px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 8px;
}
.hero-phone .wallet-card .wc-logo {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: -0.03em;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}
.hero-phone .wallet-card.featured .wc-logo {
  background: var(--accent);
}
.hero-phone .wallet-card .wc-info {
  min-width: 0;
  line-height: 1.15;
}
.hero-phone .wallet-card .wc-name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-phone .wallet-card .wc-name .dot { color: var(--accent); }
.hero-phone .wallet-card.featured .wc-name .dot { color: var(--ink); }
.hero-phone .wallet-card .wc-reward {
  font-family: 'Prompt', sans-serif;
  font-size: 8px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.hero-phone .wallet-card.featured .wc-reward {
  color: var(--ink);
  opacity: 0.7;
}
.hero-phone .wallet-card .wc-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-phone .wallet-card .wc-num .of {
  color: var(--ink-softer);
  font-weight: 400;
  font-size: 9px;
}
.hero-phone .wallet-card.featured .wc-num { color: var(--ink); }
.hero-phone .wallet-card.featured .wc-num .of { color: var(--ink); opacity: 0.6; }

/* DeeBoard preview screen (back phone — shop view) */
.hero-phone .screen-shop {
  background: var(--bg);
}
.hero-phone .screen-shop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, var(--butter) 0%, transparent 50%);
  opacity: 0.5;
}
.hero-phone .screen-shop::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17,17,17,0.07) 1px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
}
.hero-phone .dash-content {
  position: relative;
  padding: 14px 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
.hero-phone .dash-greet {
  line-height: 1.2;
}
.hero-phone .dash-greet .dg-h {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.015em;
}
.hero-phone .dash-greet .dg-day {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 9px;
  color: var(--ink-soft);
  margin-top: 1px;
}
.hero-phone .dash-branch {
  font-family: 'Prompt', sans-serif;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 3px 8px 3px 6px;
  font-weight: 600;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
}
.hero-phone .dash-branch::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-phone .dash-hero {
  position: relative;
  padding: 14px 14px 8px;
  z-index: 2;
}
.hero-phone .dash-hero .dh-label {
  display: inline-flex;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 9px;
  color: var(--ink-soft);
  margin-bottom: 4px;
  background: var(--butter-soft);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px dashed var(--butter);
}
.hero-phone .dash-hero .dh-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 78px;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--ink);
  display: inline-block;
  position: relative;
  margin-bottom: 4px;
}
.hero-phone .dash-hero .dh-num .accent { color: var(--accent); }
.hero-phone .dash-hero .dh-num .dh-star {
  position: absolute;
  top: -2px; right: -14px;
  width: 14px; height: 14px;
  color: var(--butter);
  stroke: var(--ink); stroke-width: 2;
  animation: spin-slow 6s linear infinite;
}
.hero-phone .dash-hero .dh-cap {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.015em;
}
.hero-phone .dash-hero .dh-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 6px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: var(--mint-ink);
  background: var(--mint);
  padding: 2px 8px;
  border-radius: 999px;
}
.hero-phone .dash-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 8px 14px 10px;
  z-index: 2;
}
.hero-phone .dash-stats .ds-tile {
  padding: 7px 8px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 9px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
}
.hero-phone .dash-stats .ds-tile .n {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1px;
}
.hero-phone .dash-stats .ds-tile .l {
  font-family: 'Prompt', sans-serif;
  font-size: 8px;
  font-weight: 500;
  color: var(--ink-softer);
}
.hero-phone .dash-stats .ds-tile.balance .n { color: var(--accent); }
.hero-phone .dash-reach {
  position: relative;
  margin: 0 14px;
  padding: 10px 12px 8px;
  background: var(--butter);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
  z-index: 2;
}
.hero-phone .dash-reach .dr-kicker {
  display: inline-flex;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 9px;
  color: var(--ink);
  background: rgba(17,17,17,0.1);
  padding: 2px 7px;
  border-radius: 999px;
  margin-bottom: 5px;
}
.hero-phone .dash-reach .dr-head {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 7px;
}
.hero-phone .dash-reach .dr-btn {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 6px 8px 6px 10px;
  border-radius: 9px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-phone .dash-reach .dr-btn .dr-cost {
  background: var(--accent);
  color: #FFF;
  padding: 2px 7px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
}

/* Floating decorations around hero phone */
.hero-decor {
  position: absolute;
  pointer-events: none;
}
.decor-stamp-tilt {
  top: 32%; left: 38%;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 10px 12px;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  transform: rotate(-10deg);
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 4;
  text-align: center;
  display: none;
}
@media (min-width: 480px) {
  .decor-stamp-tilt { display: block; }
}
.decor-stamp-tilt::before {
  content: 'แต้มใหม่';
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 2px;
}
.decor-sticker-bottom {
  display: none;
}
.decor-sticker-bottom .big {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 2px;
}
.decor-spark {
  position: absolute;
  color: var(--butter);
  stroke: var(--ink);
  stroke-width: 1.5;
  z-index: 4;
  animation: twinkle 2.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85) rotate(0); }
  50% { opacity: 1; transform: scale(1.1) rotate(15deg); }
}
.decor-spark.s1 { top: 6%; right: 12%; width: 22px; height: 22px; }
.decor-spark.s2 { bottom: 12%; left: 8%; width: 16px; height: 16px; color: var(--accent); stroke: none; animation-delay: 0.6s; }
.decor-spark.s3 { top: 42%; right: 4%; width: 18px; height: 18px; animation-delay: 1.2s; }

@media (min-width: 960px) {
  .hero-visual { min-height: 620px; }
}

/* ==================== STATS BAND ==================== */
.stats-band {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,217,82,0.18) 0%, transparent 60%);
  border-radius: 50%;
}
.stats-band .container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-band .container { grid-template-columns: repeat(4, 1fr); }
}
.stat-block {
  position: relative;
}
.stat-block + .stat-block::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.15);
}
.stat-block .n {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--butter);
  margin-bottom: 6px;
}
.stat-block .l {
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-softer);
}

/* ==================== SECTION HEAD ==================== */
.section-head-block {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head-block .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-head-block .kicker .smile {
  width: 14px; height: 8px;
  color: var(--accent);
}
.section-head-block h2 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-head-block h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}
.section-head-block h2 .hl {
  background: linear-gradient(transparent 60%, var(--butter) 60%);
  padding: 0 6px;
}
.section-head-block p {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ==================== FOR SHOPS ==================== */
.for-shops {
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
}
.for-shops::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--butter) 0%, transparent 60%);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}
.audience-tag {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}
.audience-tag .tag-pill {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 20px 10px 16px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--accent);
  position: relative;
  transform: rotate(-2deg);
}
.audience-tag.butter .tag-pill {
  background: var(--butter);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(2deg);
}
.audience-tag .tag-pill .num-circle {
  width: 24px; height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 12px;
  border: 1.5px solid var(--ink);
}
.audience-tag.butter .tag-pill .num-circle {
  background: var(--ink);
  color: var(--butter);
}
.audience-tag .tag-pill .role-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px dashed currentColor;
}
.shops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 48px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(17,17,17,0.08);
}
.shops-grid > .feature-card {
  border-right: 1px solid rgba(17,17,17,0.08);
}
.shops-grid > .feature-card:nth-child(2n) { border-right: none; }
@media (min-width: 960px) {
  .shops-grid { grid-template-columns: repeat(4, 1fr); }
  .shops-grid > .feature-card { border-right: 1px solid rgba(17,17,17,0.08); }
  .shops-grid > .feature-card:nth-child(2n) { border-right: 1px solid rgba(17,17,17,0.08); }
  .shops-grid > .feature-card:last-child { border-right: none; }
}
.feature-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(17,17,17,0.08);
  border-radius: 0;
  padding: 28px 22px;
  position: relative;
  transition: none;
}
.feature-card:hover { transform: none; box-shadow: none; }
.feature-card.butter, .feature-card.dark {
  background: transparent;
  color: var(--ink);
}
.feature-card.dark .feature-meta { color: var(--ink-soft); }

.feature-card .icon-tile {
  width: 32px; height: 32px;
  background: transparent;
  color: var(--accent);
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-left: -4px;
}
.feature-card.butter .icon-tile,
.feature-card.dark .icon-tile {
  background: transparent;
  color: var(--accent);
  border: none;
}
.feature-card .icon-tile svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 8px;
}
.feature-card .feature-meta {
  font-family: 'Prompt', sans-serif;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.feature-card .stat-mini {
  margin-top: 14px;
  padding-top: 0;
  border-top: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-softer);
  text-transform: uppercase;
}
.feature-card.dark .stat-mini { color: var(--ink-softer); border-top: none; }
.feature-card .stat-mini strong {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
}
.feature-card.butter .stat-mini strong { color: var(--ink); }
.feature-card .dr-tag,
.feature-card .dr-tag .dr-mark { display: none !important; }
.feature-card .feature-meta strong { font-weight: 700; color: var(--ink); }

/* Dashboard preview block */
.dash-preview {
  margin-top: 0;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dash-preview::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--butter) 0%, transparent 60%);
  opacity: 0.5;
  border-radius: 50%;
}
.dash-preview > * { position: relative; }
@media (min-width: 880px) {
  .dash-preview { grid-template-columns: 1fr 1.1fr; }
}
.dash-text .kicker-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.dash-text .kicker-mini .dot-pulse {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-d 1.4s ease-in-out infinite;
}
.dash-text h3 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.dash-text h3 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}
.dash-text p {
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}
.dash-text ul {
  list-style: none;
  margin-bottom: 22px;
}
.dash-text ul li {
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed var(--line);
}
.dash-text ul li:last-child { border-bottom: none; }
.dash-text ul li .check-tile {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
}
.dash-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dash-text > h3,
.dash-text > p,
.dash-text > ul,
.dash-text > .kicker-mini {
  align-self: stretch;
}
.dash-text .btn-hero {
  margin-top: 22px;
}

/* Mock dashboard tile */
/* Section-embedded phone (used in for-shops dash-preview, for-customers cust-visual) */
.section-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}
.section-phone {
  width: 280px;
  aspect-ratio: 9 / 19;
  background: #0a0a0a;
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.35),
    0 10px 20px -10px rgba(0,0,0,0.2),
    inset 0 0 0 1px #222;
  position: relative;
  transform: rotate(-3deg);
}
.section-phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 20px;
  background: #000;
  border-radius: 10px;
  z-index: 10;
}
.section-phone .screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
/* Reuse all .hero-phone screen styles for section-phone screens */
.section-phone .screen-shop,
.section-phone .screen-wallet,
.section-phone .screen-deecard {
  background: var(--bg);
}
.section-phone .screen-deecard {
  background: linear-gradient(180deg, #FFE9A8 0%, #FFF6E0 45%, #FCEEE6 100%);
}
.section-phone .screen-shop::before,
.section-phone .screen-wallet::before,
.section-phone .screen-deecard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 18%, var(--butter) 0%, transparent 45%);
  opacity: 0.5;
}
.section-phone .screen-deecard::before {
  background: radial-gradient(circle at 50% 32%, rgba(255,221,140,0.6) 0%, transparent 55%);
  opacity: 0.85;
}
.section-phone .screen-shop::after,
.section-phone .screen-wallet::after,
.section-phone .screen-deecard::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17,17,17,0.07) 1px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
}
/* All inner content classes (screen-tilted-badge, screen-status, dash-content, dash-greet, dash-branch,
   dash-hero, dash-stats, dash-reach, wallet-greet, wallet-stats, wallet-list-h, wallet-card,
   screen-foot-mark) reuse the .hero-phone CSS via cascade — but we need to scope them to .section-phone too */
.section-phone .screen-tilted-badge {
  position: absolute;
  top: 32px; left: 12px;
  transform: rotate(-6deg);
  background: var(--ink); color: #fff;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700; font-size: 9px;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 4px;
  z-index: 5;
  box-shadow: 0 4px 10px -3px rgba(17,17,17,0.3);
}
.section-phone .screen-tilted-badge svg {
  width: 10px; height: 6px;
  color: var(--accent);
}
.section-phone .screen-status {
  position: relative;
  padding: 30px 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ink-softer);
  z-index: 2;
}
.section-phone .dash-content {
  position: relative;
  padding: 14px 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
.section-phone .dash-greet { line-height: 1.2; }
.section-phone .dash-greet .dg-h {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.015em;
}
.section-phone .dash-greet .dg-day {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 9px;
  color: var(--ink-soft);
  margin-top: 1px;
}
.section-phone .dash-branch {
  font-family: 'Prompt', sans-serif;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 3px 8px 3px 6px;
  font-weight: 600;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
}
.section-phone .dash-branch::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.section-phone .dash-hero {
  position: relative;
  padding: 14px 14px 8px;
  z-index: 2;
}
.section-phone .dash-hero .dh-label {
  display: inline-flex;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 9px;
  color: var(--ink-soft);
  margin-bottom: 4px;
  background: var(--butter-soft);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px dashed var(--butter);
}
.section-phone .dash-hero .dh-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 88px;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--ink);
  display: inline-block;
  position: relative;
  margin-bottom: 4px;
}
.section-phone .dash-hero .dh-num .accent { color: var(--accent); }
.section-phone .dash-hero .dh-num .dh-star {
  position: absolute;
  top: -2px; right: -16px;
  width: 16px; height: 16px;
  color: var(--butter);
  stroke: var(--ink); stroke-width: 2;
  animation: spin-slow 6s linear infinite;
}
.section-phone .dash-hero .dh-cap {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.015em;
}
.section-phone .dash-hero .dh-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 6px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: var(--mint-ink);
  background: var(--mint);
  padding: 2px 8px;
  border-radius: 999px;
}
.section-phone .dash-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 14px 10px;
  z-index: 2;
}
.section-phone .dash-stats .ds-tile {
  padding: 8px 9px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
}
.section-phone .dash-stats .ds-tile .n {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1px;
}
.section-phone .dash-stats .ds-tile .l {
  font-family: 'Prompt', sans-serif;
  font-size: 8px;
  font-weight: 500;
  color: var(--ink-softer);
}
.section-phone .dash-stats .ds-tile.balance .n { color: var(--accent); }
.section-phone .dash-reach {
  position: relative;
  margin: 0 14px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.section-phone .dash-reach .dr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  margin-bottom: 1px;
}
.section-phone .dash-reach .dr-h-title {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-phone .dash-reach .dr-h-title svg {
  width: 9px; height: 9px;
  color: var(--accent);
}
.section-phone .dash-reach .dr-h-meta {
  font-family: 'Prompt', sans-serif;
  font-size: 9px;
  color: rgba(17,17,17,0.55);
}
.section-phone .dash-reach .dr-feed-card {
  background: var(--surface);
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: 11px;
  padding: 8px 10px 8px;
  box-shadow: 0 1px 2px rgba(17,17,17,0.04);
}
.section-phone .dash-reach .dr-fc-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.section-phone .dash-reach .dr-fc-pill {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 8.5px;
  background: #C8E8DA;
  color: #0F5C42;
  padding: 1.5px 7px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.section-phone .dash-reach .dr-fc-pill.alt {
  background: #E0EFE6;
  color: #2C6B45;
}
.section-phone .dash-reach .dr-fc-count {
  font-family: 'Prompt', sans-serif;
  font-size: 9px;
  color: rgba(17,17,17,0.55);
}
.section-phone .dash-reach .dr-fc-head {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.015em;
}
.section-phone .dash-reach .dr-fc-meta {
  font-family: 'Prompt', sans-serif;
  font-size: 9.5px;
  color: rgba(17,17,17,0.6);
  line-height: 1.32;
  margin-bottom: 6px;
}
.section-phone .dash-reach .dr-fc-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 7px 10px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.section-phone .dash-reach .dr-fc-btn .cost {
  background: rgba(0,0,0,0.22);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.section-phone .dash-reach .dr-kicker {
  display: inline-flex;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 10px;
  color: var(--ink);
  background: rgba(17,17,17,0.1);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 5px;
}
.section-phone .dash-reach .dr-head {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-phone .dash-reach .dr-btn {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 7px 9px 7px 11px;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 11px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-phone .dash-reach .dr-btn .dr-cost {
  background: var(--accent);
  color: #FFF;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
}
.section-phone .dash-reach .dr-more {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(17,17,17,0.18);
}
.section-phone .dash-reach .dr-mini {
  font-family: 'Prompt', sans-serif;
  font-size: 9.5px;
  color: rgba(17,17,17,0.72);
  background: rgba(255,255,255,0.55);
  padding: 2px 7px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Wallet inside section-phone */
.section-phone .wallet-greet {
  position: relative;
  padding: 14px 14px 0;
  z-index: 2;
}
.section-phone .wallet-greet .wg-h {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.section-phone .wallet-greet .wg-day {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.section-phone .wallet-stats {
  position: relative;
  margin: 12px 14px 0;
  padding: 11px 13px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
  border: 1.5px solid var(--ink);
  box-shadow: 1.5px 1.5px 0 var(--ink);
  z-index: 2;
  overflow: hidden;
}
.section-phone .wallet-stats::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(255,217,82,0.5) 0%, transparent 65%);
  border-radius: 50%;
}
.section-phone .wallet-stats .ws-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.section-phone .wallet-stats .ws-big {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--butter);
}
.section-phone .wallet-stats .ws-meta {
  text-align: right;
  font-family: 'Prompt', sans-serif;
  line-height: 1.2;
}
.section-phone .wallet-stats .ws-label {
  font-style: italic;
  font-size: 10px;
  color: var(--ink-softer);
  margin-bottom: 1px;
}
.section-phone .wallet-stats .ws-total {
  font-size: 10px;
  font-weight: 600;
}
.section-phone .wallet-stats .ws-bottom {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,0.2);
  font-family: 'Prompt', sans-serif;
  font-size: 10px;
  position: relative;
}
.section-phone .wallet-stats .ws-bottom strong {
  color: var(--accent);
  font-weight: 700;
}
.section-phone .wallet-list-h {
  position: relative;
  padding: 12px 14px 4px;
  z-index: 2;
}
.section-phone .wallet-list-h .wlh-label {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.section-phone .wallet-card {
  position: relative;
  margin: 0 14px 5px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 11px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 9px;
  align-items: center;
  z-index: 2;
}
.section-phone .wallet-card.featured {
  background: var(--butter);
}
.section-phone .wallet-card .wc-ready {
  position: absolute;
  top: -7px;
  right: 8px;
  transform: rotate(4deg);
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  padding: 1px 7px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 9px;
}
.section-phone .wallet-card .wc-logo {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -0.03em;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}
.section-phone .wallet-card.featured .wc-logo {
  background: var(--accent);
}
.section-phone .wallet-card .wc-info {
  min-width: 0;
  line-height: 1.15;
}
.section-phone .wallet-card .wc-name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-phone .wallet-card .wc-name .dot { color: var(--accent); }
.section-phone .wallet-card.featured .wc-name .dot { color: var(--ink); }
.section-phone .wallet-card .wc-reward {
  font-family: 'Prompt', sans-serif;
  font-size: 9px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.section-phone .wallet-card.featured .wc-reward {
  color: var(--ink);
  opacity: 0.7;
}
.section-phone .wallet-card .wc-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}
.section-phone .wallet-card .wc-num .of {
  color: var(--ink-softer);
  font-weight: 400;
  font-size: 10px;
}
.section-phone .wallet-card.featured .wc-num { color: var(--ink); }
.section-phone .wallet-card.featured .wc-num .of { color: var(--ink); opacity: 0.6; }
.section-phone .screen-foot-mark {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 9px;
  color: var(--ink-softer);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  z-index: 2;
}
.section-phone .screen-foot-mark .dot { color: var(--accent); }
.section-phone .screen-foot-mark svg {
  width: 11px; height: 6.5px;
  color: var(--accent);
}

/* Floating decor stickers around section phones */
.section-phone-decor {
  position: absolute;
  z-index: 5;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 11px 13px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  box-shadow: 3px 3px 0 var(--ink);
  text-align: center;
  display: none;
}
@media (min-width: 600px) {
  .section-phone-decor { display: block; }
}
.section-phone-decor.decor-tag-shop {
  top: 10%;
  right: 6%;
  transform: rotate(8deg);
}
.section-phone-decor.decor-tag-shop .d-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  display: block;
}
.section-phone-decor.decor-tag-shop .d-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.section-phone-decor.decor-tag-cust {
  background: var(--butter);
  color: var(--ink);
  bottom: 8%;
  left: 4%;
  transform: rotate(-6deg);
}
.section-phone-decor.decor-tag-cust .d-big {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 2px;
}
.section-phone-decor.decor-tag-cust .d-label {
  font-size: 11px;
}
.section-phone .stamps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  padding: 0 18px;
  margin: 8px 0 0;
  position: relative;
  z-index: 2;
}
.section-phone .stamp {
  height: 18px;
  border-radius: 6px;
  background: rgba(17,17,17,0.1);
  position: relative;
}
.section-phone .stamp.on { background: var(--accent); }
.section-phone .stamp.on.b { background: var(--butter); }
.section-phone .stamp.on::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 3px; height: 3px;
  background: rgba(0,0,0,0.42);
  border-radius: 50%;
}
.section-phone .stamp.on.b::after { background: rgba(17,17,17,0.55); }

/* DeeCard screen — single shop view (customer section) */
.section-phone .screen-deecard {
  display: flex;
  flex-direction: column;
}

/* 3-dot menu (top right) */
.section-phone .dc-menu {
  position: absolute;
  top: 36px; right: 18px;
  display: flex;
  gap: 4px;
  z-index: 5;
}
.section-phone .dc-menu span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(17,17,17,0.45);
}

/* Shop brand row */
.section-phone .dc-brand {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 18px 0;
}
.section-phone .dc-brand-name {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.045em;
  color: var(--ink);
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
}
.section-phone .dc-brand-name .dot { color: var(--accent); }
.section-phone .dc-brand-sub {
  font-family: 'Prompt', sans-serif;
  font-size: 11px;
  color: rgba(17,17,17,0.6);
  margin-left: 6px;
  display: inline-block;
  vertical-align: baseline;
}
.section-phone .dc-spark {
  width: 9px; height: 9px;
  color: var(--accent);
  display: inline-block;
  vertical-align: middle;
}
.section-phone .dc-spark-l {
  margin-right: 5px;
  opacity: 0.85;
  transform: translateY(-4px) rotate(-12deg);
}
.section-phone .dc-spark-r {
  margin-left: 5px;
  opacity: 0.55;
  width: 7px; height: 7px;
  transform: translateY(-6px) rotate(20deg);
}

/* Big number progress */
.section-phone .dc-progress {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 14px 14px 4px;
}
.section-phone .dc-label {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 11px;
  color: rgba(17,17,17,0.55);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.section-phone .dc-num-wrap {
  position: relative;
  display: inline-block;
}
.section-phone .dc-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 96px;
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: var(--accent);
  text-shadow: 0 0 28px rgba(232, 122, 106, 0.35), 0 0 12px rgba(255, 217, 82, 0.5);
  display: inline-block;
}
.section-phone .dc-num-spark {
  position: absolute;
  top: 4px;
  right: -14px;
  width: 12px; height: 12px;
  color: var(--accent);
  transform: rotate(15deg);
}
.section-phone .dc-meta-line {
  margin-top: 4px;
  font-family: 'Prompt', sans-serif;
  font-size: 12px;
}
.section-phone .dc-meta-emp {
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}
.section-phone .dc-meta-sep {
  margin: 0 6px;
  color: rgba(17,17,17,0.3);
}
.section-phone .dc-meta-grey {
  color: rgba(17,17,17,0.55);
}

/* Reward sparkle line */
.section-phone .dc-reward-line {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  margin: 14px 14px 10px;
}
.section-phone .dc-reward-line .spark {
  color: var(--accent);
  margin: 0 7px;
  font-size: 11px;
}

/* Gift card */
.section-phone .dc-gift {
  position: relative;
  z-index: 2;
  margin: 0 14px 8px;
  background: var(--surface);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 14px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 8px rgba(17,17,17,0.06);
}
.section-phone .dc-gift-icon {
  width: 36px; height: 36px;
  background: rgba(232, 122, 106, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section-phone .dc-gift-icon svg {
  width: 18px; height: 18px;
  color: var(--accent);
}
.section-phone .dc-gift-info { flex: 1; min-width: 0; line-height: 1.15; }
.section-phone .dc-gift-label {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 10px;
  color: rgba(17,17,17,0.55);
}
.section-phone .dc-gift-name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 1px;
}
.section-phone .dc-gift-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--butter);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 3px 9px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: -0.01em;
  transform: rotate(8deg);
  box-shadow: 1.5px 1.5px 0 var(--ink);
}

/* Old dash-mockup CSS (now unused but keep stubs to not break anything) */
.dash-mockup {
  display: none;
}

/* ==================== HOW IT WORKS ==================== */
.how {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,217,82,0.18) 0%, transparent 60%);
  border-radius: 50%;
}
.how::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,94,58,0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.how .section-head-block .kicker {
  background: rgba(255,217,82,0.15);
  color: var(--butter);
}
.how .section-head-block h2 { color: var(--bg); }
.how .section-head-block h2 em { color: var(--butter); }
.how .section-head-block h2 .hl { background: linear-gradient(transparent 60%, rgba(255,217,82,0.4) 60%); }
.how .section-head-block p { color: var(--ink-softer); }

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
@media (min-width: 880px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* Compact horizontal layout: 3 cards + arrows between */
.how-compact {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border-top: none;
  position: relative;
}
.how-compact > * {
  border-bottom: none;
}
.how-compact > .how-c-step:nth-child(odd) {
  border-right: none;
}
.how-c-step {
  background: transparent;
  color: var(--ink);
  border: none;
  border-radius: 0;
  padding: 16px 6px;
  position: relative;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.how-c-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  box-shadow: none;
}
.how-c-step h3 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  line-height: 1.25;
}
.how-c-step p {
  font-family: 'Prompt', sans-serif;
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  flex: 1;
}
.how-c-step .how-mini {
  margin-top: auto;
}
@media (min-width: 768px) {
  .how-c-step {
    padding: 24px 18px;
  }
  .how-c-step .step-num {
    width: 28px; height: 28px;
    font-size: 13px;
    margin-bottom: 12px;
  }
  .how-c-step h3 {
    font-size: 15px;
  }
  .how-c-step p {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

/* Mini phone visuals inside each how step */
.how-mini {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}
.how-mini-phone {
  width: 84px;
  aspect-ratio: 9 / 17;
  background: #111;
  border: 1.5px solid #111;
  border-radius: 14px;
  padding: 5px;
  position: relative;
  box-shadow: 2px 2px 0 var(--accent);
}
@media (min-width: 768px) {
  .how-mini { margin-top: 18px; }
  .how-mini-phone {
    width: 130px;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 3px 3px 0 var(--accent);
  }
}
.how-mini-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 9px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .how-mini-screen {
    border-radius: 13px;
    padding: 14px 10px;
  }
}

/* Step 1 — QR */
.how-mini-qr .qr-frame {
  width: 50px;
  height: 50px;
  background: #FDFAF2;
  border: 1px solid #111;
  border-radius: 4px;
  padding: 3px;
  margin-bottom: 5px;
}
.how-mini-qr .qr-frame svg { display: block; width: 100%; height: 100%; }
.how-mini-qr .how-mini-cap {
  font-family: 'Prompt', sans-serif;
  font-size: 7px;
  color: var(--ink-soft);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .how-mini-qr .qr-frame {
    width: 78px; height: 78px;
    border-width: 1.5px;
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 8px;
  }
  .how-mini-qr .how-mini-cap { font-size: 9px; }
}

/* Step 2 — stamp card */
.how-mini-stamp {
  background: var(--bg);
  padding: 8px 6px;
  gap: 4px;
  justify-content: center;
}
.how-mini-stamp .hms-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.how-mini-stamp .hms-sub {
  font-size: 10px;
  color: var(--ink-softer);
  margin-left: 1px;
}
.hms-stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  width: 100%;
}
.hms-s {
  aspect-ratio: 1;
  background: transparent;
  border: 1px dashed var(--ink-softer);
  border-radius: 50%;
}
.hms-s.on {
  background: var(--ink);
  border-color: var(--ink);
  border-style: solid;
}
.hms-s.on.new {
  background: var(--accent);
  border-color: var(--accent);
  animation: pop 1.5s ease-in-out infinite;
}
@keyframes pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.hms-toast {
  position: absolute;
  bottom: 6px;
  background: var(--accent);
  color: #FFF;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 7px;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid #111;
  box-shadow: 1px 1px 0 #111;
}
@media (min-width: 768px) {
  .how-mini-stamp { padding: 14px 10px; gap: 0; }
  .how-mini-stamp .hms-num { font-size: 32px; margin-bottom: 8px; }
  .how-mini-stamp .hms-sub { font-size: 14px; }
  .hms-stamps { gap: 3px; }
  .hms-toast { bottom: 10px; font-size: 10px; padding: 4px 10px; border-width: 1.5px; }
}

/* Step 3 — reward */
.how-mini-reward {
  background: var(--butter);
  padding: 10px 6px;
  gap: 4px;
  justify-content: center;
}
.how-mini-reward .hmr-badge {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0;
}
.how-mini-reward .hmr-badge svg { width: 100%; height: 100%; }
.how-mini-reward .hmr-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.how-mini-reward .hms-sub {
  font-size: 10px;
  color: var(--ink);
  opacity: 0.55;
}
.how-mini-reward .hmr-msg {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 8px;
  margin-top: 0;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.2;
}
.how-mini-reward .hmr-btn {
  background: var(--ink);
  color: var(--butter);
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .how-mini-reward { padding: 14px 10px; gap: 6px; }
  .how-mini-reward .hmr-badge { width: 26px; height: 26px; }
  .how-mini-reward .hmr-num { font-size: 28px; }
  .how-mini-reward .hms-sub { font-size: 12px; }
  .how-mini-reward .hmr-msg { font-size: 10px; margin-bottom: 6px; }
  .how-mini-reward .hmr-btn { font-size: 10px; padding: 6px 14px; border-width: 1.5px; }
}

.how-c-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-softer);
  flex-shrink: 0;
  padding: 0 4px;
}
.how-c-arrow svg {
  width: 14px; height: 14px;
}
@media (min-width: 768px) {
  .how-c-arrow svg {
    width: 18px; height: 18px;
  }
}
.how-step {
  background: var(--bg);
  color: var(--ink);
  border: 1.5px solid var(--bg);
  border-radius: 22px;
  padding: 26px 22px;
  position: relative;
  box-shadow: 4px 4px 0 var(--accent);
}
.how-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  box-shadow: 2px 2px 0 var(--ink);
}
.how-step h3 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.how-step p {
  font-family: 'Prompt', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.how-step .visual-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
}
.how-step .qr-mini {
  width: 38px; height: 38px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}
.how-step .qr-mini svg { width: 100%; height: 100%; }
.how-step .visual-row .vr-text {
  flex: 1;
  line-height: 1.2;
}
.how-step .visual-row .vr-text strong {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 12px;
  display: block;
}
.how-step .visual-row .vr-text span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-soft);
}
.how-step .visual-row .plus-mini {
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 13px;
  transform: rotate(-6deg);
}

.how-step .stamps-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  padding: 10px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
}
.how-step .stamps-row .ss {
  height: 16px; border-radius: 4px;
  background: rgba(17,17,17,0.1);
}
.how-step .stamps-row .ss.on { background: var(--accent); }
.how-step .stamps-row .ss.on.b { background: var(--butter); }

.how-step .voucher-mini {
  background: var(--butter);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  transform: rotate(-1deg);
  position: relative;
}
.how-step .voucher-mini::before, .how-step .voucher-mini::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.how-step .voucher-mini::before { left: -6px; }
.how-step .voucher-mini::after { right: -6px; }
.how-step .voucher-mini .vl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 1px;
}
.how-step .voucher-mini .vt {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.01em;
}

/* Full phone mockup for each how-step (scaled section-phone) */
.how-step .step-phone-wrap {
  position: relative;
  height: 380px;
  margin-top: 14px;
  overflow: visible;
}
.how-step .step-phone-wrap .section-phone {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(-2deg) scale(0.62);
  transform-origin: top center;
  width: 280px;
}

/* Welcome screen (Step 1 — C2 first-scan moment) */
.section-phone .screen-welcome {
  background: linear-gradient(180deg, #FFE9A8 0%, #FFF6E0 50%, #FCEEE6 100%);
  display: flex;
  flex-direction: column;
}
.section-phone .screen-welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,221,140,0.7) 0%, transparent 55%);
  z-index: 1;
}
.section-phone .screen-welcome::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17,17,17,0.07) 1px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.section-phone .sw-plus-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 78px;
}
.section-phone .sw-plus {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 108px;
  color: var(--accent);
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-shadow: 0 0 32px rgba(232,122,106,0.4), 0 0 50px rgba(255,217,82,0.5);
  display: inline-block;
}
.section-phone .sw-plus-spark {
  position: absolute;
  width: 14px; height: 14px;
  color: var(--accent);
}
.section-phone .sw-plus-spark.l {
  left: -22px; top: 6px;
  transform: rotate(-12deg);
  opacity: 0.7;
}
.section-phone .sw-plus-spark.r {
  right: -18px; top: -2px;
  transform: rotate(20deg);
  opacity: 0.55;
}
.section-phone .sw-title {
  position: relative;
  z-index: 2;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: rgba(17,17,17,0.65);
  text-align: center;
  margin-top: 16px;
}
.section-phone .sw-shop {
  position: relative;
  z-index: 2;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-align: center;
  margin-top: 2px;
  line-height: 1;
}
.section-phone .sw-shop .dot { color: var(--accent); }
.section-phone .sw-meta {
  position: relative;
  z-index: 2;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  text-align: center;
  margin: 22px 14px 12px;
}
.section-phone .sw-meta .spark {
  color: var(--accent);
  margin: 0 6px;
  font-size: 11px;
}
.section-phone .sw-progress-label {
  position: relative;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(17,17,17,0.55);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Claimed celebration screen (Step 3 — C5) — replaces DeeCard screen with celebration view */
.section-phone .screen-claimed {
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.section-phone .screen-claimed .screen-status {
  color: rgba(255,255,255,0.5);
}
.section-phone .screen-claimed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(232,122,106,0.25) 0%, transparent 55%);
  z-index: 1;
}
.section-phone .sc-icon-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 60px;
}
.section-phone .sc-icon {
  width: 72px; height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(232,122,106,0.18), 0 0 40px rgba(232,122,106,0.45);
}
.section-phone .sc-icon svg {
  width: 38px; height: 38px;
  color: #fff;
}
.section-phone .sc-title {
  font-family: 'Prompt', sans-serif;
  font-weight: 800;
  font-size: 26px;
  text-align: center;
  margin: 22px 14px 6px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
}
.section-phone .sc-reward-card {
  position: relative;
  z-index: 2;
  margin: 16px 14px 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
}
.section-phone .sc-reward-label {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.section-phone .sc-reward-name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.01em;
}
.section-phone .sc-pulse-wrap {
  position: relative;
  z-index: 2;
  margin: 24px 18px 0;
}
.section-phone .sc-pulse-bar {
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: sc-pulse-flow 1.8s linear infinite;
}
@keyframes sc-pulse-flow {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.section-phone .sc-pulse-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 10px;
}


/* ========================================================== */
/* TaemDee app screen designs (ported from taemdee-final-thai) */
/* Used in how-it-works steps + customer section main phone   */
/* ========================================================== */
.section-phone .td {
  font-family: 'Prompt', sans-serif;
  color: var(--ink);
  background: var(--bg);
  width: 100%; height: 100%;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.section-phone .td .topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 40px 20px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--ink-softer);
  letter-spacing: 0.04em;
  position: relative; z-index: 2;
}
.section-phone .td::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 12%, rgba(255,217,82,0.5) 0%, rgba(255,217,82,0) 35%),
    radial-gradient(circle at 10% 85%, rgba(255,94,58,0.08) 0%, transparent 45%);
  pointer-events: none; z-index: 0;
}
.section-phone .td::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(17,17,17,0.07) 1px, transparent 1.5px);
  background-size: 18px 18px; opacity: 0.4;
  pointer-events: none; z-index: 0;
}
.section-phone .td > * { position: relative; z-index: 1; }

.section-phone .td .td-badge {
  position: absolute;
  top: 42px; left: 16px;
  transform: rotate(-6deg);
  background: var(--ink); color: #FFF;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700; font-size: 10px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 5px;
  z-index: 3;
  box-shadow: 0 4px 12px -4px rgba(17,17,17,0.25);
}
.section-phone .td .td-badge .s { width: 11px; height: 6.5px; color: var(--accent); }

/* Shop head — used in C1, C2 */
.section-phone .td .shop-head {
  padding: 48px 20px 0;
  text-align: center;
  position: relative;
}
.section-phone .td .shop-head .side-spark {
  position: absolute;
  top: 56px;
  color: var(--accent);
  width: 12px; height: 12px;
}
.section-phone .td .shop-head .side-spark.l { left: 30px; transform: rotate(-15deg); }
.section-phone .td .shop-head .side-spark.r { right: 30px; transform: rotate(15deg); color: var(--butter); }
.section-phone .td .shop-logo-mark {
  display: inline-block;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.section-phone .td .shop-logo-mark .dot { color: var(--accent); }
.section-phone .td .shop-sub {
  font-family: 'Prompt', sans-serif;
  font-weight: 400; font-size: 12px;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.section-phone .td .shop-sub .dotsep {
  width: 3px; height: 3px;
  background: var(--accent); border-radius: 50%;
}

/* Hero number block */
.section-phone .td .hero-num-wrap {
  text-align: center;
  padding: 26px 20px 12px;
  position: relative;
}
.section-phone .td .hero-num-wrap::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -40%);
  width: 170px; height: 170px;
  background: radial-gradient(circle, var(--butter) 0%, transparent 65%);
  opacity: 0.55; border-radius: 50%; z-index: 0;
}
.section-phone .td .hero-num-wrap > * { position: relative; z-index: 1; }
.section-phone .td .hero-label {
  font-family: 'Prompt', sans-serif;
  font-style: italic; font-weight: 500;
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 2px;
}
.section-phone .td .hero-num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 128px;
  letter-spacing: -0.065em;
  line-height: 0.85;
  color: var(--accent);
  margin-bottom: 4px;
  position: relative; display: inline-block;
}
.section-phone .td .hero-num .mini-star {
  position: absolute;
  top: 6px; right: -16px;
  width: 16px; height: 16px;
  color: var(--butter);
  animation: gentle-spin 6s linear infinite;
}
@keyframes gentle-spin {
  from { transform: rotate(0deg); } to { transform: rotate(360deg); }
}
.section-phone .td .hero-num-sub {
  font-family: 'Prompt', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.005em;
}
.section-phone .td .hero-num-sub em {
  font-style: italic; font-weight: 600; color: var(--accent);
}
.section-phone .td .hero-num-sub .of {
  font-weight: 400; color: var(--ink-softer);
  font-size: 11px; margin-left: 4px;
}

/* Stamps inside .td (override section-phone defaults) */
.section-phone .td .stamps-wrap { padding: 12px 20px 10px; }
.section-phone .td .stamps {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px;
  padding: 0; margin: 0;
}
.section-phone .td .stamp {
  height: 22px; border-radius: 7px;
  background: rgba(17,17,17,0.08);
  position: relative;
}
.section-phone .td .stamp.on {
  background: var(--accent); position: relative; overflow: hidden;
}
.section-phone .td .stamp.on::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.6); border-radius: 50%;
}
.section-phone .td .stamp.on.butter { background: var(--butter); }
.section-phone .td .stamp.on.butter::after { background: rgba(17,17,17,0.5); }

.section-phone .td .encourage {
  text-align: center;
  padding: 18px 20px 0;
  font-family: 'Prompt', sans-serif;
  font-weight: 500; font-size: 14px;
  color: var(--ink); line-height: 1.4;
  display: flex; justify-content: center; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.section-phone .td .encourage .spark-mini { width: 10px; height: 10px; color: var(--accent); }

.section-phone .td .reward-pill {
  margin: 20px 20px 0;
  background: var(--surface);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
}
.section-phone .td .reward-pill .badge-tilted {
  position: absolute;
  top: -10px; right: 12px;
  transform: rotate(6deg);
  background: var(--butter); color: var(--ink);
  padding: 3px 10px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700; font-size: 9px;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--ink);
}
.section-phone .td .reward-pill .gift {
  width: 34px; height: 34px;
  background: rgba(255,94,58,0.14); color: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.section-phone .td .reward-pill .gift svg { width: 16px; height: 16px; }
.section-phone .td .reward-pill .rtxt { flex: 1; line-height: 1.3; }
.section-phone .td .reward-pill .rlabel {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-softer);
  margin-bottom: 2px;
}
.section-phone .td .reward-pill .rname {
  font-family: 'Prompt', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
}

.section-phone .td .footer-mark {
  padding: 12px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid rgba(17,17,17,0.12);
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.section-phone .td .footer-mark .fm-brand {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.section-phone .td .footer-mark .smile-stamp {
  flex-shrink: 0;
}
.section-phone .td .footer-mark .brand {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.section-phone .td .footer-mark .brand .dot { color: var(--accent); }
.section-phone .td .footer-mark .fm-install {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Prompt', sans-serif;
  font-weight: 600; font-size: 11.5px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(17,17,17,0.25);
  text-underline-offset: 3px;
  cursor: pointer;
  flex-shrink: 0;
}
.section-phone .td .footer-mark .fm-install svg {
  width: 12px; height: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============== C2 — First-stamp celebration ============== */
.section-phone .td .c2-celebration {
  margin: 16px 20px 0;
  padding: 12px 14px;
  background: var(--accent);
  color: #FFF;
  border-radius: 16px;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: flex; align-items: center; gap: 10px;
  position: relative;
}
.section-phone .td .c2-celebration .plus {
  width: 32px; height: 32px;
  background: var(--butter); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  transform: rotate(-8deg);
  font-family: 'Host Grotesk', sans-serif;
}
.section-phone .td .c2-celebration .ctxt { flex: 1; line-height: 1.25; }
.section-phone .td .c2-celebration .ctxt strong {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.01em;
}
.section-phone .td .c2-celebration .ctxt span {
  font-family: 'Prompt', sans-serif;
  font-style: italic; font-weight: 400;
  font-size: 11px; opacity: 0.9;
}
.section-phone .td .c2-celebration .corner-spark {
  position: absolute;
  top: -6px; right: 12px;
  width: 14px; height: 14px;
  color: var(--butter);
  animation: twinkle-c 2s ease-in-out infinite;
}
@keyframes twinkle-c {
  0%, 100% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.2) rotate(20deg); }
}
.section-phone .td .c2-welcome-text {
  text-align: center;
  padding: 22px 26px 0;
}
.section-phone .td .c2-welcome-text .title {
  font-family: 'Prompt', sans-serif;
  font-style: italic; font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.section-phone .td .c2-welcome-text .sub {
  font-family: 'Prompt', sans-serif;
  font-size: 12px; color: var(--ink-soft);
  line-height: 1.5;
}
.section-phone .td .c2-cta {
  padding: 20px 20px 0;
}
.section-phone .td .c2-cta .save-btn {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 14px;
  font-family: 'Prompt', sans-serif;
  font-weight: 600; font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}
.section-phone .td .c2-cta .save-btn svg { width: 15px; height: 15px; }
.section-phone .td .c2-cta .reassure {
  text-align: center;
  margin-top: 12px;
  font-family: 'Prompt', sans-serif;
  font-style: italic; font-weight: 400;
  font-size: 11px; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.section-phone .td .c2-cta .reassure .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; background: var(--butter);
  color: var(--ink); border-radius: 50%;
  font-size: 8px; font-weight: 700; font-style: normal;
  border: 1px solid var(--ink);
}

/* ============== C5 — Reward claimed ============== */
.section-phone .td.c5 .claimed-hero {
  padding: 60px 22px 16px;
  text-align: center;
  position: relative;
}
.section-phone .td.c5 .claimed-hero::before {
  content: '';
  position: absolute;
  top: 50px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--butter) 0%, transparent 60%);
  opacity: 0.55; border-radius: 50%;
  z-index: 0;
}
.section-phone .td.c5 .claimed-hero > * { position: relative; z-index: 1; }
.section-phone .td.c5 .claimed-mark {
  width: 68px; height: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  border: 1.5px solid var(--ink);
  box-shadow: 0 8px 20px -6px rgba(255,94,58,0.5), 3px 3px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.section-phone .td.c5 .claimed-mark svg { width: 32px; height: 32px; }
.section-phone .td.c5 .claimed-mark::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border: 1.5px dashed var(--accent);
  opacity: 0.4; border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.14); opacity: 0.1; }
}
.section-phone .td.c5 .claimed-hero .confetti {
  position: absolute;
  color: var(--butter);
  animation: twinkle-c 2s ease-in-out infinite;
}
.section-phone .td.c5 .claimed-hero .confetti.c1 { top: 80px; left: 18%; width: 12px; height: 12px; }
.section-phone .td.c5 .claimed-hero .confetti.c2 { top: 56px; right: 20%; width: 10px; height: 10px; animation-delay: 0.5s; color: var(--accent); }
.section-phone .td.c5 .claimed-hero .confetti.c3 { top: 100px; right: 14%; width: 10px; height: 10px; animation-delay: 1.2s; }
.section-phone .td.c5 .claimed-hero .confetti.c4 { top: 110px; left: 12%; width: 8px; height: 8px; animation-delay: 1.6s; color: var(--accent); }
.section-phone .td.c5 .claimed-title {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-phone .td.c5 .claimed-title em {
  font-style: italic; font-weight: 700; color: var(--accent);
}
.section-phone .td.c5 .live-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
  font-weight: 600;
}
.section-phone .td.c5 .live-pulse .pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink-dot 1.1s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.section-phone .td.c5 .voucher {
  margin: 0 22px;
  padding: 16px 18px;
  background: var(--butter);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  transform: rotate(-1.5deg);
}
.section-phone .td.c5 .voucher::before, .section-phone .td.c5 .voucher::after {
  content: ''; position: absolute;
  width: 14px; height: 14px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}
.section-phone .td.c5 .voucher::before { left: -8px; top: 50%; transform: translateY(-50%); }
.section-phone .td.c5 .voucher::after { right: -8px; top: 50%; transform: translateY(-50%); }
.section-phone .td.c5 .voucher .v-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 4px; text-align: center;
  font-weight: 600;
}
.section-phone .td.c5 .voucher .v-title {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  text-align: center; margin-bottom: 6px;
}
.section-phone .td.c5 .voucher .v-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--ink);
  opacity: 0.6;
  text-align: center; letter-spacing: 0.08em;
}
.section-phone .td.c5 .farewell {
  text-align: center;
  margin: 18px 20px 0;
  font-family: 'Prompt', sans-serif;
  font-style: italic; font-weight: 500;
  font-size: 13px; color: var(--ink-soft);
}
/* ==================== FOR CUSTOMERS ==================== */
.for-customers {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--surface);
  position: relative;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.for-customers::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  opacity: 0.7;
  border-radius: 50%;
  pointer-events: none;
}
.for-customers::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--butter) 0%, transparent 60%);
  opacity: 0.5;
  border-radius: 50%;
  pointer-events: none;
}
.cust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
@media (min-width: 960px) {
  .cust-layout { grid-template-columns: 1fr 1fr; }
}
.cust-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cust-feature {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 3px 3px 0 var(--ink);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.cust-feature.butter { background: var(--butter); }
.cust-feature .ic {
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cust-feature.butter .ic { background: var(--ink); color: var(--butter); }
.cust-feature .ic svg { width: 20px; height: 20px; }
.cust-feature .text h4 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.cust-feature .text p {
  font-family: 'Prompt', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.cust-feature.butter .text p { color: var(--ink); opacity: 0.75; }

/* Compact customer section: trust pills + centered phone */
.cust-trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 44px;
  max-width: 720px;
  padding: 0;
}
.cust-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: 'Prompt', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}
.cust-trust-row li.butter { background: var(--butter); }
.cust-trust-row li svg {
  width: 15px; height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}
.cust-trust-row li.butter svg { color: var(--ink); }
.cust-phone-wrap {
  display: flex;
  justify-content: center;
}

/* Customer cards visual */
.cust-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 440px;
}
.cards-stack {
  position: relative;
  width: 280px;
  height: 380px;
}
.cust-card {
  position: absolute;
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
}
.cust-card.featured {
  background: var(--butter);
  top: 0;
  z-index: 3;
  transform: rotate(-3deg);
}
.cust-card.featured::before {
  content: 'พร้อม!';
  position: absolute;
  top: -10px; right: 12px;
  transform: rotate(6deg);
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  padding: 3px 10px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 10px;
}
.cust-card.mid {
  top: 88px;
  left: 14px;
  z-index: 2;
  transform: rotate(2deg);
}
.cust-card.bottom {
  top: 176px;
  left: -12px;
  z-index: 1;
  transform: rotate(-1deg);
  background: var(--surface);
}
.cust-card.fourth {
  top: 264px;
  left: 18px;
  z-index: 0;
  transform: rotate(3deg);
  opacity: 0.85;
}
.cust-card .logo-tile {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800; font-size: 16px;
  letter-spacing: -0.03em;
  border: 1.5px solid var(--ink);
}
.cust-card.featured .logo-tile { background: var(--accent); }
.cust-card .info { min-width: 0; }
.cust-card .name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cust-card .name .dot { color: var(--accent); }
.cust-card.featured .name .dot { color: var(--ink); }
.cust-card .reward-tx {
  font-family: 'Prompt', sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.cust-card.featured .reward-tx { color: var(--ink); opacity: 0.7; }
.cust-card .num-stack {
  text-align: right;
}
.cust-card .num-stack .num {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
}
.cust-card .num-stack .num .of {
  color: var(--ink-softer);
  font-weight: 400;
  font-size: 13px;
}
.cust-card.featured .num-stack .num { color: var(--ink); }
.cust-card.featured .num-stack .num .of { color: var(--ink); opacity: 0.6; }

/* ==================== PRICING ==================== */
.pricing {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  background: var(--butter);
}
.price-card.popular::before {
  content: 'แนะนำ';
  position: absolute;
  top: -12px; left: 24px;
  transform: rotate(-4deg);
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.price-card .pkg-name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.price-card .pkg-price {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-card .pkg-price .currency {
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink-soft);
  margin-right: 4px;
}
.price-card .pkg-credits {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.price-card.popular .pkg-credits { color: var(--ink); opacity: 0.7; }
.price-card .pkg-bonus {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 18px;
}
.price-card ul {
  list-style: none;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1.5px dashed rgba(17,17,17,0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.price-card ul li {
  font-family: 'Prompt', sans-serif;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.price-card ul li .check-tile {
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  margin-top: 2px;
}
.price-card.popular ul li .check-tile { background: var(--ink); color: var(--butter); }
.price-card .pkg-cta {
  background: var(--ink);
  color: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  transition: transform 0.15s;
}
.price-card .pkg-cta:hover { transform: translateY(-2px); }
.price-card .pkg-cta .arrow-pill {
  width: 22px; height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.price-note {
  text-align: center;
  margin-top: 36px;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--butter-soft);
  border: 1.5px dashed var(--butter);
  padding: 10px 18px;
  border-radius: 999px;
}
.price-note-wrap { text-align: center; }

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--butter) 0%, transparent 60%);
  opacity: 0.45;
  border-radius: 50%;
}
.testimonials .container { position: relative; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
.testi-card {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
}
.testi-card.tilt-l { transform: rotate(-1deg); }
.testi-card.tilt-r { transform: rotate(1deg); }
.testi-card .quote-mark {
  position: absolute;
  top: 12px; right: 18px;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
}
.testi-card .quote {
  font-family: 'Prompt', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  position: relative;
}
.testi-card .quote em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}
.testi-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--line);
}
.testi-card .author .avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.testi-card .author .avatar.b { background: var(--butter); color: var(--ink); }
.testi-card .author .avatar.m { background: var(--mint); color: var(--mint-ink); }
.testi-card .author .author-text {
  line-height: 1.25;
  flex: 1;
}
.testi-card .author .author-text .name {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.testi-card .author .author-text .role {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: 11px;
  color: var(--ink-soft);
}
.testi-card .stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: clamp(80px, 10vw, 120px) 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .toggle-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.faq-item[open] summary .toggle-icon {
  background: var(--accent);
  transform: rotate(45deg);
}
.faq-item .answer {
  padding: 0 20px 20px;
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 60px);
  position: relative;
}
.cta-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: 32px;
  padding: clamp(36px, 6vw, 72px) clamp(24px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,217,82,0.3) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,94,58,0.25) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-card > * { position: relative; }
.cta-card .kicker-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--butter);
  margin-bottom: 18px;
}
.cta-card .kicker-mini .smile {
  width: 14px; height: 8px;
  color: var(--butter);
}
.cta-card h2 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.cta-card h2 em { font-style: italic; color: var(--accent); font-weight: 700; }
.cta-card h2 .hl-light {
  background: linear-gradient(transparent 60%, rgba(255,217,82,0.4) 60%);
  padding: 0 6px;
  color: var(--butter);
}
.cta-card p {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--ink-softer);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.55;
}
.cta-card .cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cta-card .btn-primary {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--accent);
}
.cta-card .btn-secondary {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
  box-shadow: 4px 4px 0 var(--accent);
}
.cta-card .trust {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Prompt', sans-serif;
  font-size: 12px;
  color: var(--ink-softer);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-card .trust span { display: inline-flex; align-items: center; gap: 5px; }
.cta-card .trust .dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

/* ==================== FOOTER ==================== */
.foot {
  padding: clamp(40px, 5vw, 60px) 0 30px;
  border-top: 1.5px solid var(--line);
}
.foot .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.foot .container > .foot-brand {
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .foot .container {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 36px;
  }
  .foot .container > .foot-brand {
    grid-column: auto;
  }
}
.foot-brand .nav-logo { font-size: 26px; margin-bottom: 12px; }
.foot-brand p {
  font-family: 'Prompt', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 320px;
}
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; }
.foot-col ul li {
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.foot-col ul li a:hover { color: var(--accent); }
.foot-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Prompt', sans-serif;
  font-size: 12px;
  color: var(--ink-softer);
}
.foot-bottom .socials {
  display: flex;
  gap: 6px;
}
.foot-bottom .social-pill {
  width: 30px; height: 30px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s;
}
.foot-bottom .social-pill:hover { transform: translateY(-2px); }
.foot-bottom .social-pill svg { width: 14px; height: 14px; color: var(--ink); }
.foot-bottom .social-pill-line { background: #06C755; border-color: #06C755; }
.foot-bottom .social-pill-line svg { width: 18px; height: 18px; }

