/* ─────────────────────────────────────────────────────────────
   LulamisaPay marketing site — design system
   Theme: blue (brand) + green (WhatsApp/money accent) + white
   ───────────────────────────────────────────────────────────── */

:root {
  /* Brand blue, sampled from the logo, plus a brighter action blue */
  --blue-900: #1B1A3E;
  --blue-800: #232058;
  --blue-700: #312E7A;
  --blue-600: #4B4A94; /* logo indigo */
  --blue-500: #3B5BDB; /* vivid action blue */
  --blue-400: #5C7CFA;
  --blue-100: #E8ECFC;
  --blue-50:  #F4F6FD;

  /* Accent green — WhatsApp / money / growth */
  --green-600: #128C4A;
  --green-500: #1DB954;
  --green-400: #34D399;
  --green-100: #DCFCE7;

  /* WhatsApp-exact tones, used only inside the chat mockup */
  --wa-header: #075E54;
  --wa-panel:  #ECE5DD;
  --wa-bubble-in:  #FFFFFF;
  --wa-bubble-out: #DCF8C6;
  --wa-tick: #34B7F1;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #EEF1F8;
  --gray-200: #DFE4F0;
  --gray-400: #94A0BD;
  --gray-600: #5B6480;
  --gray-800: #232742;
  --ink: #161A30;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(27, 26, 62, 0.06);
  --shadow-md: 0 12px 32px rgba(27, 26, 62, 0.10);
  --shadow-lg: 0 24px 64px rgba(27, 26, 62, 0.16);

  --container: 1180px;
  --nav-h: 100px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

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

section { position: relative; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

h1, .h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h3, .h3 { font-size: 1.3rem; font-weight: 700; line-height: 1.3; }
.lead { font-size: 1.15rem; color: var(--gray-600); line-height: 1.7; }
p { color: var(--gray-600); line-height: 1.7; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-top: 12px; }
.section-head p { margin-top: 16px; }

/* ── Gradient blobs (Webflow-style ambient backgrounds) ───────── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.blob-blue { background: radial-gradient(circle, var(--blue-400), transparent 70%); }
.blob-green { background: radial-gradient(circle, var(--green-400), transparent 70%); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(59, 91, 219, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(59, 91, 219, 0.45); }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(29, 185, 84, 0.35);
}
.btn-whatsapp:hover { box-shadow: 0 14px 30px rgba(29, 185, 84, 0.45); }
.btn-ghost {
  background: var(--white);
  color: var(--blue-700);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--blue-400); }
.btn-light {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navbar ────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(223, 228, 240, 0.7);
  transition: box-shadow 0.2s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--blue-700); }
.brand img { height: 65px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
  position: relative;
  padding: 6px 0;
}
.nav-links a.active { color: var(--blue-600); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--blue-700);
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 16px 24px 28px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 4px;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
  }
  .mobile-menu a.active { color: var(--blue-600); }
  .mobile-menu .btn { margin-top: 12px; }
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.hero-trust div { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--gray-600); }
.hero-trust svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }
.hero-visual { position: relative; display: flex; justify-content: center; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* ── Page header (non-home pages) ─────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.page-header .eyebrow { background: rgba(255,255,255,0.16); color: var(--white); }

/* ── Feature / product cards ──────────────────────────────────── */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-100);
  color: var(--blue-600);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card.green .card-icon { background: var(--green-100); color: var(--green-600); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

/* Product card variant: icon + title row, badge, fee line, CTA */
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card .row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.product-card .badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--green-100);
  color: var(--green-600);
}
.product-card p { flex-grow: 1; }
.product-card .meta {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.85rem;
}
.product-card .meta strong { display: block; color: var(--ink); font-size: 1rem; }
.product-card .meta span { color: var(--gray-400); }

/* ── Steps (how it works) ─────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: left; }
.step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--green-500));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.92rem; }

/* ── Stats strip ───────────────────────────────────────────────── */
.stats {
  background: var(--blue-900);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: var(--white);
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); padding: 32px; } }
.stat { text-align: center; }
.stat .num { font-size: 2.2rem; font-weight: 800; color: var(--green-400); }
.stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonial { display: flex; flex-direction: column; gap: 16px; }
.testimonial .stars { color: var(--green-500); display: flex; gap: 3px; }
.testimonial .stars svg { width: 16px; height: 16px; }
.testimonial .quote { font-size: 0.98rem; color: var(--gray-800); }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--green-400));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.testimonial .who strong { display: block; font-size: 0.9rem; color: var(--ink); }
.testimonial .who span { font-size: 0.8rem; color: var(--gray-400); }

/* ── Pricing ───────────────────────────────────────────────────── */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--blue-500);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card.featured::before {
  content: 'Most used';
  position: absolute;
  top: -13px; left: 32px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.price-card .amount { font-size: 2.4rem; font-weight: 800; margin: 14px 0 4px; }
.price-card .amount span { font-size: 1rem; font-weight: 600; color: var(--gray-400); }
.price-card ul { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--gray-600); }
.price-card li svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; margin-top: 1px; }

/* ── Accordion (FAQ) ───────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.acc-trigger .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.acc-item.open .acc-trigger .plus { transform: rotate(45deg); background: var(--green-100); color: var(--green-600); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.acc-panel-inner { padding: 0 24px 22px; }
.acc-panel-inner p { font-size: 0.95rem; }

/* ── CTA banner ────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500) 60%, var(--green-500));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 10px; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Scan to chat card ─────────────────────────────────────────── */
.scan-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--blue-50), var(--green-100));
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex-wrap: wrap;
}
.scan-qr {
  width: 132px; height: 132px;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.scan-copy { flex: 1; min-width: 220px; }
.scan-copy h3 { margin: 12px 0 8px; }
.scan-copy p { font-size: 0.95rem; }
@media (max-width: 600px) {
  .scan-card { flex-direction: column; text-align: center; }
  .scan-copy { min-width: 0; }
}

/* ── Logo strip ────────────────────────────────────────────────── */
.logo-strip { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px; opacity: 0.65; }
.logo-strip span { font-weight: 800; font-size: 1.05rem; color: var(--gray-400); letter-spacing: -0.01em; }

/* ── Footer ────────────────────────────────────────────────────── */
.footer { background: var(--blue-900); color: rgba(255,255,255,0.7); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--white); font-size: 1.1rem; margin-bottom: 14px; }
.footer-brand img { height: 30px; }
.footer p.tag { font-size: 0.9rem; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer a { font-size: 0.92rem; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
}
.social { display: flex; gap: 12px; }
.social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social svg { width: 17px; height: 17px; }
.social a:hover { background: var(--green-500); }

/* ── Sticky WhatsApp floating button ──────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(29, 185, 84, 0.4);
  animation: pulse 2.4s infinite;
}
.fab-whatsapp svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.45), 0 12px 28px rgba(29, 185, 84, 0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(29, 185, 84, 0), 0 12px 28px rgba(29, 185, 84, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0), 0 12px 28px rgba(29, 185, 84, 0.4); }
}

/* ── Scroll reveal ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ───────────────────────────────────────────────────────────────
   WhatsApp chat simulation mockup
   ─────────────────────────────────────────────────────────────── */
.phone {
  width: 340px;
  height: 700px;
  background: var(--ink);
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 22px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--wa-panel);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.wa-header {
  background: var(--wa-header);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 36px 16px 14px;
  flex-shrink: 0;
}
.wa-header .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.wa-header .avatar img { width: 26px; }
.wa-header .who { flex-grow: 1; }
.wa-header .who strong { display: block; font-size: 0.95rem; }
.wa-header .who span { font-size: 0.72rem; opacity: 0.8; }
.wa-header svg { width: 20px; height: 20px; opacity: 0.9; }
.wa-header .icons { display: flex; gap: 16px; }

.wa-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: radial-gradient(rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 14px 14px;
}
.wa-row { display: flex; }
.wa-row.out { justify-content: flex-end; }
.bubble {
  max-width: 80%;
  padding: 8px 10px 6px;
  border-radius: 10px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  position: relative;
  animation: pop 0.25s ease;
}
@keyframes pop { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.bubble.in { background: var(--wa-bubble-in); border-top-left-radius: 2px; }
.bubble.out { background: var(--wa-bubble-out); border-top-right-radius: 2px; }
.bubble .meta {
  display: flex; justify-content: flex-end; align-items: center; gap: 3px;
  margin-top: 3px;
  font-size: 0.65rem;
  color: var(--gray-400);
}
.bubble .meta svg { width: 14px; height: 14px; color: var(--wa-tick); }
.bubble-buttons { display: flex; flex-direction: column; gap: 1px; margin-top: 8px; }
.bubble-buttons button {
  background: none; border: none; border-top: 1px solid rgba(0,0,0,0.08);
  color: var(--blue-500); font-weight: 700; font-size: 0.85rem;
  padding: 9px 4px 2px; text-align: center;
}
.bubble-link {
  display: block;
  margin-top: 6px;
  background: var(--blue-50);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 700;
  color: var(--blue-600);
  font-size: 0.82rem;
}
.typing {
  display: flex;
  gap: 4px;
  background: var(--wa-bubble-in);
  padding: 11px 14px;
  border-radius: 10px;
  border-top-left-radius: 2px;
  width: fit-content;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gray-400);
  animation: blink 1.2s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.3; } 40% { opacity: 1; } }

.wa-inputbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--wa-panel);
}
.wa-inputbar .field {
  flex-grow: 1;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 0.82rem;
  color: var(--gray-400);
}
.wa-inputbar .mic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--wa-header);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-inputbar .mic svg { width: 18px; height: 18px; }

/* ── BNPL provider redirect overlay (simulation.html) ─────────────
   Sits on top of .phone-screen to represent leaving WhatsApp for the
   customer's own BNPL provider to log
   in and confirm with an OTP — LulamisaPay never sees those credentials,
   it only links the bill to whichever BNPL account the customer has. */
.phone { position: relative; }
.bnpl-overlay {
  position: absolute;
  top: 14px; left: 14px; right: 14px; bottom: 14px;
  border-radius: 30px;
  background: var(--white);
  z-index: 20;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bnpl-overlay.show { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.bnpl-browser-bar {
  background: var(--gray-100);
  padding: 38px 16px 12px;
  font-size: 0.72rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.bnpl-overlay-body {
  flex-grow: 1;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.bnpl-overlay-body h4 { font-size: 1rem; margin: 4px 0 0; }
.bnpl-overlay-body p.sub { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 4px; }
.bnpl-logo {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--green-500));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.bnpl-field-mock { width: 100%; text-align: left; }
.bnpl-field-mock label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--gray-600); margin-bottom: 5px; }
.bnpl-field-mock .input-mock {
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  padding: 10px 12px; font-size: 0.85rem; color: var(--ink);
  background: var(--gray-50);
}
.bnpl-otp-row { display: flex; gap: 8px; justify-content: center; }
.bnpl-otp-row .digit {
  width: 34px; height: 40px; border: 1.5px solid var(--gray-200); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-weight: 700; background: var(--gray-50);
}
.bnpl-btn-mock {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white); font-weight: 700; font-size: 0.85rem;
  padding: 11px; border-radius: var(--radius-pill);
  margin-top: 4px;
}
.bnpl-status { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bnpl-status .check {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.bnpl-amount { font-size: 1.9rem; font-weight: 800; color: var(--ink); }
.bnpl-breakdown { width: 100%; display: flex; flex-direction: column; gap: 8px; margin: 4px 0; }
.bnpl-breakdown .row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--gray-600);
  padding-bottom: 6px; border-bottom: 1px solid var(--gray-100);
}
.bnpl-breakdown .row.total { color: var(--ink); font-weight: 700; border-bottom: none; padding-top: 2px; }

/* ── "Other phone" divider + bubbles (simulation.html) ────────────
   Represents the beneficiary's own WhatsApp thread when a payer pays for
   someone else and POPIA consent is required (Municipal/Traffic) — a
   visually distinct (amber) bubble inside the same mockup, since this is
   a single-phone demo standing in for two separate real conversations. */
.wa-divider-row { display: flex; justify-content: center; margin: 4px 0; }
.wa-divider {
  background: rgba(0, 0, 0, 0.08);
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-align: center;
}
.bubble.other-device.in { background: #FFF1DC; }
.bubble.other-device.out { background: #FFDFAE; }

/* ── Simulation controls panel ─────────────────────────────────── */
.sim-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .sim-wrap { grid-template-columns: 1fr; } }
.sim-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.sim-tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
}
.sim-tab.active { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }
.sim-controls { display: flex; gap: 12px; margin-top: 24px; }
.sim-steps-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.sim-steps-list li { display: flex; gap: 12px; font-size: 0.92rem; color: var(--gray-600); align-items: flex-start; }
.sim-steps-list svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }

/* ── Misc page sections: about / contact / legal ──────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img, .split .img-frame { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.img-frame {
  background: linear-gradient(135deg, var(--blue-100), var(--green-100));
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.img-frame img { width: 55%; }

.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--gray-800); font-size: 0.96rem; }
.checklist svg { width: 22px; height: 22px; color: var(--green-500); flex-shrink: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--gray-800); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--blue-500);
}
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-card .card-icon { margin-bottom: 0; flex-shrink: 0; }

.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.3rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal-updated { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 36px; }

.not-found { text-align: center; padding: calc(var(--nav-h) + 100px) 0 120px; }
.not-found .code { font-size: 6rem; font-weight: 800; background: linear-gradient(135deg, var(--blue-500), var(--green-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
