/* ==========================================================================
   Munee — Design tokens + base
   ========================================================================== */

:root {
  /* Brand */
  --ink: #0A1628;
  --ink-2: #172437;
  --ink-3: #2B3A52;
  --mist: #F4F6FB;
  --paper: #FFFFFF;
  --line: #E5EAF2;
  --muted: #6B7896;

  --brand: #1C5EFB;       /* primary — deep electric blue, matches Livia backdrop */
  --brand-2: #0B3FD1;
  --brand-soft: #E8F0FF;
  --brand-ink: #001342;

  --accent: #22E07A;      /* WhatsApp / success green */
  --accent-2: #12B860;

  --hot: #FF3D57;         /* urgency / scarcity */
  --hot-soft: #FFE9ED;
  --amber: #FFB020;

  /* Type */
  --font-display: "Plus Jakarta Sans", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Radii & shadows */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06), 0 1px 3px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 4px 16px -4px rgba(10, 22, 40, 0.08), 0 2px 8px -2px rgba(10, 22, 40, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(10, 22, 40, 0.22), 0 8px 24px -12px rgba(10, 22, 40, 0.12);
  --shadow-brand: 0 18px 48px -16px rgba(28, 94, 251, 0.45);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

/* ==========================================================================
   Urgency bar (sticky top)
   ========================================================================== */
.urgency-bar {
  position: relative;
  z-index: 40;
  background: linear-gradient(90deg, #0A1628 0%, #0B3FD1 55%, #1C5EFB 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.urgency-bar strong { color: #FFD84D; }
.urgency-bar .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22E07A;
  box-shadow: 0 0 0 0 rgba(34, 224, 122, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 224, 122, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 224, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 224, 122, 0); }
}
.urgency-bar .countdown {
  display: inline-flex;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  background: rgba(255, 255, 255, 0.14);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1C5EFB, #0A1628);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.05em;
  box-shadow: var(--shadow-brand);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-3);
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { background: var(--brand); transform: translateY(-1px); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #062A14;
  box-shadow: 0 16px 36px -14px rgba(34, 224, 122, 0.6), inset 0 -3px 0 rgba(0,0,0,0.08);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(34, 224, 122, 0.7); }

.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover { background: var(--brand-2); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

.btn-lg { padding: 20px 32px; font-size: 17px; }

.wa-icon { width: 22px; height: 22px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 72px 0 96px;
  background:
    radial-gradient(1100px 500px at 75% -10%, rgba(28, 94, 251, 0.18), transparent 60%),
    radial-gradient(800px 400px at -10% 20%, rgba(28, 94, 251, 0.10), transparent 60%),
    linear-gradient(180deg, #F6F8FD 0%, #FFFFFF 70%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-3);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero-eyebrow .dot-live {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center;
  color: #062A14; font-weight: 900; font-size: 11px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #1C5EFB, #0A1628);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
  font-style: normal;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  bottom: 4px;
  height: 14px;
  background: rgba(255, 216, 77, 0.55);
  z-index: -1;
  border-radius: 3px;
  transform: skewY(-1.5deg);
}
.hero-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.hero-subline {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
  flex-wrap: wrap;
}
.hero-subline .check {
  color: var(--accent-2);
  font-weight: 800;
}
.hero-proof {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #fff;
  background: #ccc;
  margin-left: -10px;
  background-size: cover; background-position: center;
}
.avatars span:first-child { margin-left: 0; }
.avatars .a1 { background: linear-gradient(135deg, #FFB020, #FF6B6B); }
.avatars .a2 { background: linear-gradient(135deg, #1C5EFB, #22E07A); }
.avatars .a3 { background: linear-gradient(135deg, #FF3D57, #6B2AFF); }
.avatars .a4 { background: linear-gradient(135deg, #0A1628, #1C5EFB); }
.avatars .a5 { background: linear-gradient(135deg, #22E07A, #12B860); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12px; margin-left: -10px; }

.hero-proof-text { font-size: 13.5px; color: var(--ink-3); font-weight: 500; }
.hero-proof-text strong { color: var(--ink); font-weight: 700; }
.stars { color: #FFB020; font-size: 14px; letter-spacing: 1px; }

/* Livia card */
.livia-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.livia-photo {
  position: relative;
  aspect-ratio: 1/1;
  background: #1C5EFB;
}
.livia-photo img { width: 100%; height: 100%; object-fit: cover; }

.livia-online {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.livia-online .pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(34, 224, 122, 0.7);
  animation: pulse 1.6s infinite;
}
.livia-meta {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.livia-meta h4 { font-size: 18px; margin-bottom: 2px; }
.livia-meta p { font-size: 13px; color: var(--muted); }
.livia-stat {
  text-align: right;
}
.livia-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.livia-stat .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Chat bubble overlay */
.chat-teaser {
  position: absolute;
  bottom: 96px;
  right: -22px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  border: 1px solid var(--line);
  transform: translateX(0);
  animation: float 4s ease-in-out infinite;
}
.chat-teaser::before {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 20px; height: 20px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.chat-teaser .who { font-size: 11px; font-weight: 700; color: var(--brand); margin-bottom: 4px; letter-spacing: 0.04em; text-transform: uppercase; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .chat-teaser { right: auto; left: 12px; bottom: 108px; max-width: 220px; font-size: 13px; }
}

/* ==========================================================================
   Logo strip
   ========================================================================== */
.logos {
  padding: 36px 0 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.logos-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 44px;
  opacity: 0.72;
}
.logos-row span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink-3);
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.section {
  padding: 96px 0;
}
.section.tight { padding: 72px 0; }
.section.dark {
  background: var(--ink);
  color: #fff;
}
.section.dark h2, .section.dark h3 { color: #fff; }
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.dark .eyebrow {
  background: rgba(255,255,255,0.08);
  color: #9BB5FF;
}
h2.section-title {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.section-lede {
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.55;
}
.dark .section-lede { color: rgba(255,255,255,0.78); }

/* ==========================================================================
   Pain / problem section
   ========================================================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card .emoji-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--hot-soft);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.pain-card h4 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.02em; }
.pain-card p { color: var(--ink-3); font-size: 15px; line-height: 1.5; }

@media (max-width: 820px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Products (pricing)
   ========================================================================== */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.product {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 94, 251, 0.35);
}
.product.highlight {
  background: linear-gradient(180deg, #0A1628, #0B1E3D);
  color: #fff;
  border-color: var(--ink-2);
}
.product.highlight .product-desc,
.product.highlight .feature li,
.product.highlight .price-note {
  color: rgba(255,255,255,0.8);
}
.product-tag {
  position: absolute;
  top: -12px; right: 28px;
  background: var(--accent);
  color: #062A14;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -8px rgba(34, 224, 122, 0.6);
}
.product-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 10px;
}
.product.highlight .product-title { color: #9BB5FF; }
.product h3 {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.product-desc {
  color: var(--ink-3);
  font-size: 15.5px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.price-block {
  padding: 22px;
  background: var(--mist);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}
.product.highlight .price-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.price-row { display: flex; align-items: baseline; gap: 6px; }
.price-currency { font-size: 18px; font-weight: 700; color: var(--muted); }
.product.highlight .price-currency { color: rgba(255,255,255,0.7); }
.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 54px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-period { font-size: 16px; color: var(--muted); font-weight: 500; margin-left: 4px; }
.product.highlight .price-period { color: rgba(255,255,255,0.7); }
.price-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.price-breakdown {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.14);
  display: grid;
  gap: 6px;
  font-size: 13px;
}
.product:not(.highlight) .price-breakdown { border-top-color: var(--line); }
.price-breakdown .row {
  display: flex; justify-content: space-between; gap: 10px;
  color: var(--ink-3);
}
.product.highlight .price-breakdown .row { color: rgba(255,255,255,0.8); }
.price-breakdown .row strong { color: var(--ink); font-weight: 600; }
.product.highlight .price-breakdown .row strong { color: #fff; }

.feature {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.feature li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.feature svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--accent-2);
  margin-top: 2px;
}
.product.highlight .feature svg { color: var(--accent); }

.product .btn { width: 100%; }

@media (max-width: 820px) {
  .products { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Livia chat demo section
   ========================================================================== */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.demo-copy h2 { margin-bottom: 20px; }
.demo-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: grid;
  gap: 16px;
}
.demo-bullets li {
  display: flex; gap: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.demo-bullets li .num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}

.phone {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  background: #0F1B2E;
  border: 8px solid #1C2A44;
  border-radius: 44px;
  padding: 20px;
  box-shadow: var(--shadow-lg), 0 40px 80px -30px rgba(28, 94, 251, 0.5);
}
.phone-header {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 6px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.phone-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background-image: url('images/livia.png');
  background-size: cover; background-position: center;
  border: 2px solid var(--brand);
}
.phone-header .who { font-weight: 600; color: #fff; font-size: 15px; }
.phone-header .status { font-size: 12px; color: var(--accent); display: flex; align-items: center; gap: 5px; }
.phone-header .status::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.msg {
  font-size: 14px;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 16px;
  margin-bottom: 10px;
  max-width: 82%;
  animation: msgIn .6s both;
}
.msg.in { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.95); border-bottom-left-radius: 4px; }
.msg.out { background: var(--brand); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px 16px 16px 4px;
}
.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 820px) {
  .demo-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--brand);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 14px;
}
.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-3); line-height: 1.5; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Bonus stack
   ========================================================================== */
.bonus-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(180deg, #FFFBEB, #FFF);
  border: 2px dashed #FFB020;
  border-radius: var(--r-xl);
  padding: 40px;
}
.bonus-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 6px;
}
.bonus-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 14px;
}
.bonus-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 14px;
}
.bonus-list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
}
.bonus-list .gift {
  width: 40px; height: 40px;
  background: #FFF4D6;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 20px;
}
.bonus-list .val {
  font-weight: 700;
  color: var(--ink);
  text-decoration: line-through;
  text-decoration-color: var(--hot);
  font-size: 14px;
}
.bonus-total {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 2px dashed #FFB020;
  text-align: center;
}
.bonus-total .was { color: var(--muted); text-decoration: line-through; font-size: 15px; }
.bonus-total .now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.bonus-total .now strong { color: #22A054; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi p { font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.testi .who {
  display: flex; gap: 12px; align-items: center;
}
.testi .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--ink));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
}
.testi .who strong { display: block; font-size: 14px; font-weight: 700; }
.testi .who span { font-size: 12.5px; color: var(--muted); }
.testi .metric {
  background: var(--brand-soft);
  color: var(--brand);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  align-self: flex-start;
}

@media (max-width: 820px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Guarantee
   ========================================================================== */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  padding: 36px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.badge {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1C5EFB, #22E07A, #1C5EFB);
  padding: 6px;
  display: grid; place-items: center;
}
.badge-inner {
  background: #fff;
  width: 100%; height: 100%;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  padding: 10px;
}
.badge-inner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 2px;
}
.badge-inner span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.guarantee h3 { font-size: 22px; margin-bottom: 8px; }
.guarantee p { color: var(--ink-3); font-size: 15px; line-height: 1.55; }

@media (max-width: 620px) {
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .badge { margin: 0 auto; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq details[open] summary { color: var(--brand); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 300;
  color: var(--muted);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer {
  margin-top: 12px;
  color: var(--ink-3);
  line-height: 1.55;
  font-size: 15px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(28, 94, 251, 0.35), transparent 60%),
    linear-gradient(180deg, #0A1628 0%, #071021 100%);
  color: #fff;
  padding: 96px 24px;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  margin-bottom: 16px;
}
.final-cta p { color: rgba(255,255,255,0.72); font-size: 18px; max-width: 600px; margin: 0 auto 36px; }

/* ==========================================================================
   Forms
   ========================================================================== */
.wa-form {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  position: relative;
}
.hero .wa-form { margin-bottom: 14px; }
.wa-form .input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 8px 0 20px;
  gap: 10px;
  min-width: 0;
}
.wa-form .flag {
  font-size: 18px;
  line-height: 1;
}
.wa-form input {
  border: 0;
  font-size: 16px;
  width: 100%;
  outline: none;
  font-family: inherit;
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  min-width: 0;
}
.wa-form input::placeholder { color: var(--muted); }
.wa-form .btn { padding: 14px 22px; font-size: 15px; }

.wa-form.dark { background: rgba(255,255,255,0.08); box-shadow: none; border: 1px solid rgba(255,255,255,0.14); }
.wa-form.dark input { color: #fff; }
.wa-form.dark input::placeholder { color: rgba(255,255,255,0.5); }

.wa-form.block {
  flex-direction: column;
  border-radius: var(--r-xl);
  padding: 20px;
  gap: 12px;
  max-width: 100%;
}
.wa-form.block .input-wrap {
  background: var(--mist);
  border-radius: 12px;
  padding: 4px 16px;
}
.wa-form.block input { padding: 16px 0; }
.wa-form.block .btn { width: 100%; }

.form-error {
  color: var(--hot);
  font-size: 13px;
  margin-top: 8px;
  padding-left: 12px;
}

.form-success {
  display: none;
  padding: 20px;
  background: rgba(34, 224, 122, 0.12);
  border: 1px solid rgba(34, 224, 122, 0.4);
  border-radius: var(--r-md);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  align-items: center;
  gap: 12px;
}
.form-success.active { display: flex; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 35;
  background: #25D366;
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 36px -6px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform .2s ease;
  animation: wa-pulse 2.4s infinite;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }
.fab-wa .badge-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--hot);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid #fff;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 36px -6px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 12px 36px -6px rgba(37, 211, 102, 0.5), 0 0 0 22px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 36px -6px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Social proof toasts
   ========================================================================== */
.toast-wrap {
  position: fixed;
  bottom: 100px; left: 24px;
  z-index: 34;
  pointer-events: none;
}
.toast {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: auto;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast .tav {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.toast strong { font-size: 14px; font-weight: 700; display: block; }
.toast span { font-size: 12.5px; color: var(--muted); }
.toast .dot { color: var(--accent-2); font-weight: 800; }
.toast-close {
  background: transparent;
  color: var(--muted);
  padding: 4px;
  line-height: 0;
}

@media (max-width: 620px) {
  .toast-wrap { left: 12px; bottom: 96px; }
  .toast { max-width: 280px; }
}

/* ==========================================================================
   Exit intent modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .3s ease;
}
.modal-backdrop.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  animation: modalIn .4s cubic-bezier(.18,.89,.32,1.28);
  box-shadow: var(--shadow-lg);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal .close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink-3);
  font-size: 20px;
  line-height: 1;
  display: grid; place-items: center;
}
.modal .emoji-big { font-size: 52px; margin-bottom: 12px; text-align: center; }
.modal h3 { font-size: 26px; margin-bottom: 10px; text-align: center; letter-spacing: -0.03em; }
.modal p { color: var(--ink-3); font-size: 15px; line-height: 1.5; text-align: center; margin-bottom: 24px; }
.modal .discount-tag {
  display: inline-block;
  background: #FFE9ED;
  color: var(--hot);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.68);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 36px;
}
.footer h5 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer .logo { color: #fff; }
.footer p { font-size: 14px; line-height: 1.5; margin-top: 14px; max-width: 360px; }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Tweaks panel (bottom right)
   ========================================================================== */
.tweaks {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 45;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  width: 280px;
  display: none;
}
.tweaks.visible { display: block; }
.tweaks h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; color: var(--ink); }
.tweaks .row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; padding: 6px 0; gap: 10px; }
.tweaks label { color: var(--ink-3); }
.tweaks .swatch-row { display: flex; gap: 8px; }
.tweaks .swatch {
  width: 26px; height: 26px; border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}
.tweaks .swatch.active { border-color: var(--ink); }
.tweaks .tweak-close {
  position: absolute; top: 8px; right: 8px;
  width: 24px; height: 24px;
  font-size: 16px;
  color: var(--muted);
}
.tweaks select, .tweaks input[type="checkbox"] { accent-color: var(--brand); }
.tweaks select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 13px;
}

/* Accent variants (applied to :root) */
body[data-accent="amber"] { --accent: #FFB020; --accent-2: #DA8500; }
body[data-accent="violet"] { --accent: #8B5CF6; --accent-2: #6D28D9; }
body[data-accent="pink"] { --accent: #EC4899; --accent-2: #DB2777; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
