:root {
  /* MouNa brand: vibrant orange + near-black + white */
  --ink: #0E0E10;           /* near-black, like their top bar */
  --ink-2: #1A1A1D;
  --ink-3: #26262B;
  --line: #2B2B30;
  --paper: #FFFFFF;
  --paper-2: #FAF7F4;       /* warm off-white */
  --paper-3: #EFE9E2;
  --muted: #6B6660;
  --muted-2: #9A938A;
  --accent: #EF5022;        /* MouNa orange */
  --accent-2: #FF7A4A;      /* lifted orange for dark surfaces */
  --accent-3: #C73E13;      /* deeper orange for press / hover */
  --accent-soft: #FFEFE7;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --wa-bg: #ECE5DD;
  --wa-out: #DCF8C6;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14, 14, 16, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 14, 16, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 14, 16, 0.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.mono { font-family: "Geist Mono", ui-monospace, monospace; }
.eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.on-dark { color: var(--accent-2); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: 999px;
  font-family: inherit; font-size: 15px; font-weight: 500;
  cursor: pointer; border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); }
.btn-primary.on-dark { background: var(--paper); color: var(--ink); }
.btn-primary.on-dark:hover { background: var(--accent-2); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(14,14,16,0.18); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-ghost.on-dark { color: var(--paper); border-color: rgba(250,250,247,0.25); }
.btn-ghost.on-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(27,14,54,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: baseline; gap: 0;
  font-family: "Geist", sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -0.025em;
  color: var(--accent); text-decoration: none;
}
.logo .dot { color: var(--ink); font-weight: 700; }
.logo-sub {
  font-family: "Geist Mono", monospace;
  font-size: 9px; font-weight: 500; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase;
  margin-left: 8px; padding-top: 4px;
  display: inline-block;
}
@media (max-width: 640px) { .logo-sub { display: none; } }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14.5px; color: var(--ink); text-decoration: none;
  padding: 8px 14px; border-radius: 999px;
  transition: background 0.15s ease;
}
.nav-link:hover { background: var(--accent-soft); color: var(--accent-3); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 560px) { .nav-cta .btn-ghost { display: none; } }

/* ===== HERO ===== */
.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(255, 122, 74, 0.18), transparent 60%),
    radial-gradient(600px 600px at 10% 90%, rgba(239, 80, 34, 0.14), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 80px 0 88px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: stretch;
}
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; padding: 56px 0 64px; gap: 40px; align-items: center; } }

.hero h1 {
  font-size: clamp(44px, 6.4vw, 80px);
  font-weight: 500; letter-spacing: -0.035em; line-height: 0.98;
  margin: 24px 0 24px;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent-2); font-weight: 500; }
.hero .lede {
  font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.68);
  max-width: 480px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 460px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat .v { font-size: 22px; font-weight: 500; letter-spacing: -0.025em; color: var(--paper); }
.hero-stat .v sub { font-size: 12px; color: var(--accent-2); font-weight: 400; }
.hero-stat .k {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(14,14,16,0.0) 60%, rgba(14,14,16,0.35) 100%),
    url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR5ysNvC67yLQRinb8Hd4hF4dXR9KNuEK-GEw&s') center/cover no-repeat,
    linear-gradient(180deg, #1A1A1D 0%, #0E0E10 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(239,80,34,0.08);
}
@media (max-width: 980px) { .hero-visual { aspect-ratio: 5/6; min-height: 0; } }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(239,80,34,0.20), transparent 60%);
  pointer-events: none;
}
.hero-visual-label {
  position: absolute; top: 18px; left: 18px;
  font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
  background: rgba(14,14,16,0.55);
  backdrop-filter: blur(8px);
  padding: 6px 10px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 1;
}
.hero-meter {
  position: relative;
  margin-top: 28px;
  max-width: 460px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-meter-top { display: flex; align-items: center; justify-content: space-between; }
.hero-meter-speed { font-size: 26px; font-weight: 500; letter-spacing: -0.025em; display: inline-flex; align-items: baseline; gap: 4px; }
.hero-meter-speed sub { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 400; }
.hero-meter-tag {
  font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.14em;
  color: var(--accent-2); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-meter-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.hero-meter-bar { height: 4px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; }
.hero-meter-fill { height: 100%; width: 86%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 99px; animation: pulseBar 4s ease-in-out infinite; }
@keyframes pulseBar { 0%, 100% { width: 78%; } 50% { width: 92%; } }
.hero-meter-grid { display: none; }

.hero-chips {
  position: absolute; top: 18px; right: 18px;
  display: flex; flex-direction: row; gap: 8px;
  align-items: center;
  z-index: 1;
  max-width: 60%;
  flex-wrap: wrap; justify-content: flex-end;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 30px; padding: 0 12px;
  background: rgba(14,14,16,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 99px;
  font-size: 12px; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 6px var(--accent-2); }

/* hero ticker */
.hero-ticker {
  position: relative;
  border-top: 1px solid rgba(250,250,247,0.08);
  border-bottom: 1px solid rgba(250,250,247,0.08);
  background: var(--ink);
  color: rgba(250,250,247,0.6);
  overflow: hidden;
}
.hero-ticker-track {
  display: flex; gap: 56px; padding: 16px 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.hero-ticker-track span {
  font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-ticker-track span::after { content: "◆"; color: var(--accent-2); font-size: 8px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION ===== */
section { padding: 112px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 18px; } }
.section-head h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.0;
  margin: 14px 0 0; text-wrap: balance;
}
.section-head p { font-size: 17px; line-height: 1.55; color: var(--muted); max-width: 480px; margin: 0; }

/* ===== OFFERS ===== */
.offers { background: var(--paper); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.offer-card.featured {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.offer-card.featured:hover { box-shadow: var(--shadow-lg); }
.offer-badge {
  position: absolute; top: -10px; right: 22px;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: 99px;
}
.offer-name { font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.offer-card.featured .offer-name { color: var(--accent-2); }
.offer-speed { font-size: 56px; font-weight: 500; letter-spacing: -0.035em; line-height: 1; margin: 12px 0 6px; }
.offer-speed sub { font-size: 18px; color: var(--muted); font-weight: 400; }
.offer-card.featured .offer-speed sub { color: rgba(250,250,247,0.5); }
.offer-price { font-size: 15px; color: var(--muted); margin-bottom: 22px; }
.offer-card.featured .offer-price { color: rgba(250,250,247,0.65); }
.offer-price b { color: var(--ink); font-weight: 500; font-size: 17px; }
.offer-card.featured .offer-price b { color: var(--paper); }
.offer-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.offer-list li { font-size: 14.5px; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.offer-card.featured .offer-list li { color: rgba(250,250,247,0.88); }
.offer-list li svg { flex-shrink: 0; }
.offer-cta { margin-top: auto; }

/* perks strip */
.perks {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  background: #fff;
  margin-top: 56px; overflow: hidden;
}
@media (max-width: 820px) { .perks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .perks { grid-template-columns: 1fr; } }
.perk { padding: 28px; border-right: 1px solid var(--paper-3); }
.perks .perk:last-child { border-right: none; }
@media (max-width: 820px) {
  .perk { border-bottom: 1px solid var(--paper-3); }
  .perk:nth-child(2n) { border-right: none; }
  .perk:nth-last-child(-n+2) { border-bottom: none; }
}
.perk-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 14px;
}
.perk h4 { margin: 0 0 6px; font-size: 16px; font-weight: 500; }
.perk p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ===== BUSINESS ===== */
.business { background: var(--ink); color: var(--paper); }
.business .section-head h2 { color: var(--paper); }
.business .section-head p { color: rgba(250,250,247,0.6); }
.biz-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(220px, auto); gap: 14px; }
.biz-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.biz-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.biz-card h3 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.biz-card p { margin: 8px 0 0; font-size: 14px; line-height: 1.5; color: rgba(250,250,247,0.6); max-width: 320px; }
.biz-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,122,74,0.14); color: var(--accent-2);
  margin-bottom: 16px;
}
.biz-card.span-3 { grid-column: span 3; }
.biz-card.span-2 { grid-column: span 2; }
.biz-card.span-4 { grid-column: span 4; }
@media (max-width: 820px) {
  .biz-grid { grid-template-columns: 1fr; }
  .biz-card.span-3, .biz-card.span-2, .biz-card.span-4 { grid-column: span 1; }
}
.biz-card .arrow {
  position: absolute; right: 24px; bottom: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.biz-card:hover .arrow { background: var(--accent); border-color: var(--accent); color: #fff; }

.biz-feature {
  grid-column: span 6;
  background:
    radial-gradient(420px 280px at 90% 20%, rgba(255,122,74,0.22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,122,74,0.06) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #1A1A1D 0%, #0E0E10 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px; min-height: 260px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
}
@media (max-width: 820px) { .biz-feature { grid-template-columns: 1fr; grid-column: span 1; } }
.biz-feature h3 { font-size: clamp(28px, 4vw, 40px); font-weight: 500; letter-spacing: -0.025em; margin: 12px 0 0; line-height: 1.05; }
.biz-feature p { color: rgba(250,250,247,0.7); margin: 14px 0 24px; font-size: 16px; line-height: 1.55; max-width: 460px; }
.biz-feature-viz {
  aspect-ratio: 4/3; border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14,14,16,0.0) 30%, rgba(14,14,16,0.55) 100%),
    linear-gradient(135deg, rgba(239,80,34,0.18) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1573164713988-8665fc963095?w=900&q=80&auto=format&fit=crop') center/cover;
  position: relative; overflow: hidden;
}
.biz-feature-viz::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

/* ===== INDUSTRIES ===== */
.industries { background: var(--ink); color: var(--paper); }
.industries .section-head h2 { color: var(--paper); }
.industries .section-head p { color: rgba(255,255,255,0.6); }
.ind-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 980px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ind-grid { grid-template-columns: 1fr; } }
.ind-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.ind-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.ind-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.ind-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,14,16,0.65) 100%);
}
.ind-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: #fff;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 99px;
  z-index: 1;
}
.ind-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.ind-body h3 {
  margin: 0; font-size: 19px; font-weight: 500; letter-spacing: -0.02em;
}
.ind-body p {
  margin: 0; font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
.ind-link {
  margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-2); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  transition: gap 0.15s ease;
}
.ind-link:hover { gap: 12px; color: #fff; }
.sat { background: var(--paper-2); }
.sat-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: stretch; }
@media (max-width: 980px) { .sat-grid { grid-template-columns: 1fr; } }

.sat-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card {
  background: #fff; border: 1px solid var(--paper-3); border-radius: var(--radius-lg);
  padding: 28px;
}
.stat-card.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.stat-card .num { font-size: 64px; font-weight: 500; letter-spacing: -0.035em; line-height: 1; }
.stat-card .num sub { font-size: 22px; font-weight: 400; color: var(--muted); }
.stat-card.dark .num sub { color: rgba(250,250,247,0.5); }
.stat-card .lbl { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.stat-card.dark .lbl { color: rgba(250,250,247,0.65); }

.testimonial {
  background: #fff; border: 1px solid var(--paper-3); border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-direction: column; height: 100%;
}
.testimonial-quote { font-size: 22px; line-height: 1.4; letter-spacing: -0.015em; color: var(--ink); margin: 0 0 28px; text-wrap: pretty; }
.testimonial-quote::before { content: "“"; color: var(--accent); font-size: 56px; line-height: 0; vertical-align: -16px; margin-right: 6px; font-family: serif; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--paper-3); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 15px;
}
.testimonial-meta .name { font-size: 14.5px; font-weight: 500; }
.testimonial-meta .role { font-size: 13px; color: var(--muted); }
.testimonial-stars { margin-left: auto; color: var(--accent); display: inline-flex; gap: 2px; }
.testimonial-pager { display: flex; gap: 8px; margin-top: 20px; }
.testimonial-pager button {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--paper-3); background: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.testimonial-pager button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.testimonial-pager .dots { display: flex; gap: 6px; align-items: center; padding: 0 12px; }
.testimonial-pager .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--paper-3); }
.testimonial-pager .dot.active { background: var(--ink); }

/* ===== ELIGIBILITY ===== */
.elig { background: var(--paper); }
.elig-card {
  background: var(--ink); color: var(--paper);
  border-radius: 32px;
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.elig-card::before {
  content: ""; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,122,74,0.40), transparent 70%);
  pointer-events: none;
}
.elig-card::after {
  content: ""; position: absolute; bottom: -160px; left: -100px; width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(239,80,34,0.30), transparent 70%);
  pointer-events: none;
}
@media (max-width: 820px) { .elig-card { grid-template-columns: 1fr; padding: 40px 28px; } }
.elig-card h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.0; margin: 14px 0 16px; text-wrap: balance; }
.elig-card p { color: rgba(250,250,247,0.65); font-size: 17px; line-height: 1.55; margin: 0 0 28px; max-width: 460px; }

.elig-form {
  background: rgba(250,250,247,0.04);
  border: 1px solid rgba(250,250,247,0.12);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 28px; position: relative; z-index: 1;
}
.elig-form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.elig-form label { font-family: "Geist Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250,250,247,0.5); }
.elig-form input {
  height: 48px; padding: 0 16px;
  background: rgba(250,250,247,0.06);
  border: 1px solid rgba(250,250,247,0.14);
  border-radius: 10px; color: var(--paper);
  font-family: inherit; font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.elig-form input:focus { outline: none; border-color: var(--accent-2); background: rgba(255,122,74,0.10); }
.elig-form input::placeholder { color: rgba(250,250,247,0.35); }
.elig-form .btn { width: 100%; margin-top: 6px; }
.elig-result {
  margin-top: 14px;
  padding: 14px 16px; border-radius: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #DCF8C6;
  font-size: 14px; line-height: 1.5;
}

/* ===== FOOTER ===== */
footer { background: var(--ink); color: var(--paper); padding: 80px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .logo { color: var(--paper); }
.foot-brand p { color: rgba(250,250,247,0.55); font-size: 14px; line-height: 1.55; margin: 18px 0 22px; max-width: 280px; }
.foot-news input {
  flex: 1; height: 44px; padding: 0 14px;
  background: rgba(250,250,247,0.06);
  border: 1px solid var(--line); border-right: none;
  border-radius: 10px 0 0 10px; color: var(--paper);
  font-family: inherit; font-size: 14px;
}
.foot-news input:focus { outline: none; border-color: var(--accent-2); }
.foot-news input::placeholder { color: rgba(250,250,247,0.35); }
.foot-news { display: flex; }
.foot-news button {
  height: 44px; padding: 0 18px; border-radius: 0 10px 10px 0;
  background: var(--accent); color: #fff; border: 1px solid var(--accent);
  font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background 0.2s ease;
}
.foot-news button:hover { background: var(--accent-2); }
.foot-col h5 { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,250,247,0.5); margin: 0 0 18px; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a, .foot-col li { color: rgba(250,250,247,0.8); font-size: 14.5px; text-decoration: none; }
.foot-col a:hover { color: var(--accent-2); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
.foot-bottom .copy { font-size: 13px; color: rgba(250,250,247,0.5); }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(250,250,247,0.7);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.foot-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== PAYMENT MODAL ===== */
.pay-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14,14,16,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: payFade 0.2s ease;
}
@keyframes payFade { from { opacity: 0; } to { opacity: 1; } }

.pay-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%; max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: paySlide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes paySlide { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }

.pay-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--paper-3);
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 100%);
}
.pay-eyebrow { font-size: 11px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.pay-price { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin-top: 4px; }
.pay-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(14,14,16,0.06); border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.pay-close:hover { background: rgba(14,14,16,0.12); }

.pay-modal-body { padding: 28px 28px 28px; }
@media (max-width: 560px) { .pay-modal-body { padding: 22px 20px; } .pay-modal-head { padding: 20px 22px 16px; } }

.pay-modal-body h2 {
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.pay-sub { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0 0 22px; }

.pay-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.pay-option {
  display: grid; grid-template-columns: 48px 1fr 20px; gap: 14px; align-items: center;
  background: #fff; border: 1.5px solid var(--paper-3);
  border-radius: 14px; padding: 16px 18px;
  text-align: left; cursor: pointer; font-family: inherit; color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.pay-option:hover { transform: translateY(-1px); border-color: var(--ink); }
.pay-option.selected { border-color: var(--accent); background: linear-gradient(180deg, #fff, var(--accent-soft)); }
.pay-option-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.pay-option.selected .pay-option-icon { background: var(--accent); color: #fff; }
.pay-option h4 { margin: 0 0 3px; font-size: 15.5px; font-weight: 500; }
.pay-option p { margin: 0; font-size: 13px; line-height: 1.45; color: var(--muted); }
.pay-option-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--paper-3);
  flex-shrink: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.pay-option.selected .pay-option-radio {
  border-color: var(--accent); background: var(--accent);
  box-shadow: inset 0 0 0 3px #fff;
}

.pay-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.pay-method {
  display: grid; grid-template-columns: 60px 1fr 20px; gap: 14px; align-items: center;
  background: #fff; border: 1.5px solid var(--paper-3);
  border-radius: 14px; padding: 14px 18px;
  text-align: left; cursor: pointer; font-family: inherit; color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.pay-method:hover { border-color: var(--ink); }
.pay-method.selected { border-color: var(--accent); background: linear-gradient(180deg, #fff, var(--accent-soft)); }
.pay-method h4 { margin: 0 0 2px; font-size: 15px; font-weight: 500; }
.pay-method p { margin: 0; font-size: 12.5px; color: var(--muted); }
.pay-method-logo {
  width: 56px; height: 36px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; letter-spacing: 0.04em;
  color: #fff;
}
.pay-card {
  background: linear-gradient(135deg, #1A1F71 0%, #133490 100%);
  position: relative; padding: 0 8px;
  gap: 6px;
}
.pay-card-visa { font-style: italic; font-size: 13px; font-weight: 800; }
.pay-card-mc {
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 70% 50%, #F79E1B 50%, transparent 50%),
              radial-gradient(circle at 30% 50%, #EB001B 50%, transparent 50%);
  margin-left: -6px;
}
.pay-om {
  background: #FF7900;
  font-weight: 800; font-size: 16px;
}
.pay-momo {
  background: #FFCC00;
  color: #1A1A1D;
  font-weight: 800; font-size: 12px;
}

.pay-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.pay-field label {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.pay-input {
  height: 46px; padding: 0 14px;
  background: var(--paper-2); border: 1px solid var(--paper-3);
  border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.pay-input:focus { outline: none; border-color: var(--accent); background: #fff; }
.pay-hint { font-size: 12.5px; color: var(--muted); }
.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.pay-summary {
  background: var(--paper-2); border: 1px solid var(--paper-3);
  border-radius: 12px; padding: 14px 16px;
  margin: 6px 0 18px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13.5px;
}
.pay-summary div { display: flex; justify-content: space-between; }
.pay-summary span { color: var(--muted); }
.pay-summary b { color: var(--ink); font-weight: 500; }

.pay-actions {
  display: flex; gap: 10px; justify-content: space-between;
  margin-top: 24px;
}
.pay-actions .btn { flex: 1; }

.pay-processing, .pay-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
  padding: 20px 0;
}
.pay-processing h2, .pay-success h2 { margin: 8px 0 6px; }
.pay-spinner {
  width: 64px; height: 64px; border-radius: 50%;
  border: 4px solid var(--paper-3);
  border-top-color: var(--accent);
  animation: paySpin 1s linear infinite;
  margin-bottom: 8px;
}
@keyframes paySpin { to { transform: rotate(360deg); } }

.pay-success-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px var(--accent-soft);
  animation: paySuccessPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 6px;
}
.pay-later-icon { background: var(--ink); font-size: 32px; box-shadow: 0 0 0 8px rgba(14,14,16,0.08); }
@keyframes paySuccessPop { 0% { transform: scale(0); } 100% { transform: scale(1); } }

.pay-receipt {
  background: var(--paper-2); border: 1px solid var(--paper-3);
  border-radius: 12px; padding: 16px 18px;
  margin: 10px 0 18px;
  text-align: left; width: 100%;
  display: flex; flex-direction: column; gap: 8px;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
}
.pay-receipt .row { display: flex; justify-content: space-between; }
.pay-receipt span { color: var(--muted); }
.pay-receipt b { color: var(--ink); font-weight: 500; }

/* Subscription form */
.pay-address-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}
.pay-address-row .pay-input { width: 100%; }
.pay-verify-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 46px; padding: 0 16px;
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: 10px;
  font-family: inherit; font-size: 13.5px; font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.pay-verify-btn:hover:not(:disabled) { background: var(--accent-soft); border-color: var(--accent); }
.pay-verify-btn:disabled { opacity: 0.6; cursor: default; }
.pay-verified-note {
  margin-top: 8px;
  font-size: 13px;
  color: oklch(0.55 0.15 145);
}
.pay-summary-card {
  background: var(--paper-2); border: 1px solid var(--paper-3);
  border-radius: 14px; padding: 18px 20px;
  margin: 10px 0 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.pay-summary-title {
  font-weight: 600; font-size: 15px;
  margin-bottom: 2px;
}
.pay-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.pay-summary-row span { color: var(--muted); }
.pay-summary-row b { color: var(--ink); font-weight: 500; }
.pay-summary-price {
  color: var(--accent) !important;
  font-size: 18px;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}
.pay-finalise {
  width: 100%;
  height: 52px;
  font-size: 15px;
  margin-top: 4px;
}
.pay-input.is-invalid {
  border-color: oklch(0.6 0.18 25);
  background: oklch(0.97 0.04 25);
}
.pay-err {
  margin-top: 6px;
  font-size: 12.5px;
  color: oklch(0.55 0.18 25);
}
.pay-validation-hint {
  margin-top: 12px;
  padding: 12px 14px;
  background: oklch(0.97 0.04 25);
  border: 1px solid oklch(0.85 0.08 25);
  border-radius: 10px;
  color: oklch(0.45 0.16 25);
  font-size: 12.5px;
  line-height: 1.6;
}

/* Embedded map sheet inside payment modal */
.pay-map-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(14,14,16,0.72);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: payFade 0.18s ease;
}
.pay-map-sheet {
  background: #fff;
  border-radius: 18px;
  width: 100%; max-width: 640px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  display: flex; flex-direction: column;
  animation: paySlide 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.pay-map-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--paper-3);
}
.pay-map-head h3 {
  margin: 4px 0 0; font-size: 18px; font-weight: 500; letter-spacing: -0.02em;
}
.pay-map-eyebrow {
  font-size: 10.5px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.pay-map {
  position: relative;
  aspect-ratio: 4/3;
  margin: 18px 22px 6px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--paper-3);
  cursor: crosshair;
  background: linear-gradient(135deg, #E9EDF2 0%, #DDE3EC 100%);
}
.pay-map-inner {
  position: absolute; inset: 0;
  transform-origin: 50% 50%;
  transition: transform 0.18s ease;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 32px),
    radial-gradient(circle at 70% 80%, rgba(37, 211, 102, 0.08), transparent 50%);
  pointer-events: none;
}
.pay-map-roads {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.6) 32%, transparent 32%),
    linear-gradient(20deg, transparent 50%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 52%, transparent 52%),
    linear-gradient(170deg, transparent 70%, rgba(255,255,255,0.4) 70%, rgba(255,255,255,0.4) 71.5%, transparent 71.5%);
  pointer-events: none;
}
.pay-map-labels { position: absolute; inset: 0; pointer-events: none; }
.pay-map-labels span {
  position: absolute;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.08em;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  background: rgba(255,255,255,0.6);
  padding: 2px 6px;
  border-radius: 3px;
}
.pay-geo-btn {
  position: absolute; top: 12px; right: 12px;
  background: #fff; border: 1px solid var(--paper-3);
  padding: 8px 14px; border-radius: 8px;
  font-family: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 2;
}
.pay-geo-btn:hover:not(:disabled) { background: var(--paper-2); }
.pay-geo-btn:disabled { opacity: 0.6; cursor: default; }
.pay-zoom-ctrl {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--paper-3);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 2;
}
.pay-zoom-ctrl button {
  width: 32px; height: 32px;
  background: #fff; border: none; cursor: pointer;
  font-family: inherit; font-size: 18px; font-weight: 500;
  color: var(--ink); line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.pay-zoom-ctrl button:hover:not(:disabled) { background: var(--paper-2); }
.pay-zoom-ctrl button:disabled { color: var(--muted-2); cursor: default; }
.pay-zoom-ctrl button + button { border-top: 1px solid var(--paper-3); }
.pay-map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  color: var(--accent);
  filter: drop-shadow(0 4px 6px rgba(239,80,34,0.4));
  pointer-events: none;
  animation: pinDrop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pay-map-coords {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(14,14,16,0.78); color: #fff;
  font-size: 11px;
  padding: 5px 10px; border-radius: 6px;
  backdrop-filter: blur(8px);
}
.pay-map-hint {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(0,0,0,0.5);
  font-style: italic;
  pointer-events: none;
  text-align: center; padding: 0 16px;
}
.pay-map-foot {
  display: flex; gap: 10px; justify-content: flex-end;
  padding: 14px 22px 20px;
  margin-top: auto;
}
.pay-map-foot .btn { min-width: 140px; }
@media (max-width: 560px) {
  .pay-map-head, .pay-map-foot { padding-left: 16px; padding-right: 16px; }
  .pay-map { margin: 14px 16px 6px; }
}
.wa-launcher {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  border: none; cursor: pointer;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 4px 10px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.wa-launcher:hover { transform: scale(1.06); }
.wa-launcher::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--wa); opacity: 0.5;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-badge {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--paper);
}

.wa-panel {
  position: fixed; bottom: 100px; right: 24px; z-index: 100;
  width: 380px; max-width: calc(100vw - 32px);
  height: 560px; max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95); opacity: 0; pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.wa-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

.wa-header {
  background: var(--wa-dark); color: #fff;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.wa-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--wa-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
  position: relative;
}
.wa-avatar::after {
  content: ""; position: absolute; bottom: 0; right: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: #4ade80; border: 2px solid var(--wa-dark);
}
.wa-header-info { flex: 1; min-width: 0; }
.wa-header-name { font-size: 15px; font-weight: 500; }
.wa-header-status { font-size: 12px; opacity: 0.85; }
.wa-header-close {
  background: transparent; border: none; color: #fff; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.wa-header-close:hover { background: rgba(255,255,255,0.15); }

.wa-body {
  flex: 1; overflow-y: auto;
  background: var(--wa-bg);
  background-image:
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.wa-msg {
  max-width: 80%;
  padding: 8px 12px 6px;
  border-radius: 8px;
  font-size: 14px; line-height: 1.4;
  position: relative;
  word-wrap: break-word;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  animation: msgIn 0.25s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-msg.in {
  background: #fff; align-self: flex-start;
  border-top-left-radius: 0;
}
.wa-msg.in::before {
  content: ""; position: absolute; top: 0; left: -8px;
  border: 8px solid transparent; border-right-color: #fff; border-bottom: 0; border-left: 0;
}
.wa-msg.out {
  background: var(--wa-out); align-self: flex-end;
  border-top-right-radius: 0;
}
.wa-msg.out::before {
  content: ""; position: absolute; top: 0; right: -8px;
  border: 8px solid transparent; border-left-color: var(--wa-out); border-bottom: 0; border-right: 0;
}
.wa-msg-time { font-size: 10px; color: rgba(0,0,0,0.45); text-align: right; margin-top: 2px; }
.wa-msg-time .checks { color: #34B7F1; margin-left: 4px; }

.wa-typing {
  align-self: flex-start;
  background: #fff;
  padding: 12px 14px; border-radius: 8px; border-top-left-radius: 0;
  display: flex; gap: 4px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}
.wa-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #999;
  animation: typing 1.2s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

.wa-quick-replies {
  display: flex; flex-direction: column; gap: 6px;
  margin: 6px 0 4px;
  align-self: stretch;
}
.wa-quick-replies button {
  background: #fff;
  border: 1px solid rgba(18, 140, 126, 0.25);
  color: var(--wa-dark);
  padding: 10px 14px; border-radius: 12px;
  font-family: inherit; font-size: 13.5px; font-weight: 500;
  cursor: pointer; text-align: left;
  transition: background 0.15s ease;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.wa-quick-replies button:hover { background: #F3FBF8; }
.wa-quick-replies button:disabled { opacity: 0.5; cursor: default; }
.wa-quick-replies button .arr { color: var(--wa); font-size: 13px; }

.wa-msg.has-media { padding: 4px 4px 6px; }
.wa-msg.has-media .wa-msg-time { padding: 0 8px; }
.wa-msg-img {
  display: block;
  width: 100%;
  max-width: 220px;
  border-radius: 6px;
  margin-bottom: 4px;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.wa-msg-map {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 16/10;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 4px;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, #DDE3EC 0%, #CFD6E0 100%);
}
.wa-msg-map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  color: var(--accent);
  filter: drop-shadow(0 3px 4px rgba(239,80,34,0.35));
}

.wa-camera-card {
  display: flex; flex-direction: column; gap: 8px;
  align-self: stretch;
  margin: 4px 0;
}
.wa-camera-video {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  object-fit: cover;
  background: #000;
  border: 2px solid var(--wa-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.wa-map-picker {
  display: flex; flex-direction: column; gap: 8px;
  align-self: stretch;
  margin: 4px 0;
}
.wa-map-picker-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: crosshair;
  border: 2px solid var(--wa-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #E7EDF2 0%, #D5DCE5 100%);
}
.wa-map-picker-inner {
  position: absolute; inset: 0;
  transform-origin: 50% 50%;
  transition: transform 0.18s ease;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 24px),
    radial-gradient(circle at 70% 80%, rgba(37, 211, 102, 0.12), transparent 50%);
  pointer-events: none;
}
.wa-zoom-ctrl {
  position: absolute; bottom: 8px; right: 8px;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
}
.wa-zoom-ctrl button {
  width: 28px; height: 28px;
  background: #fff; border: none; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 500;
  color: var(--ink); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.wa-zoom-ctrl button:hover:not(:disabled) { background: #F0F2F5; }
.wa-zoom-ctrl button:disabled { color: #ccc; cursor: default; }
.wa-zoom-ctrl button + button { border-top: 1px solid rgba(0,0,0,0.08); }
.wa-map-picker-roads {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.6) 32%, transparent 32%),
    linear-gradient(20deg, transparent 50%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 52%, transparent 52%),
    linear-gradient(170deg, transparent 70%, rgba(255,255,255,0.4) 70%, rgba(255,255,255,0.4) 71.5%, transparent 71.5%);
  pointer-events: none;
}
.wa-map-picker-labels {
  position: absolute; inset: 0;
  pointer-events: none;
}
.wa-map-picker-labels span {
  position: absolute;
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  background: rgba(255,255,255,0.55);
  padding: 2px 5px;
  border-radius: 3px;
}
.wa-map-picker-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  color: var(--accent);
  filter: drop-shadow(0 4px 6px rgba(239,80,34,0.45));
  pointer-events: none;
  animation: pinDrop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pinDrop {
  0% { transform: translate(-50%, -150%) scale(0.5); opacity: 0; }
  100% { transform: translate(-50%, -100%) scale(1); opacity: 1; }
}
.wa-map-picker-hint {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(0,0,0,0.55);
  background: rgba(255,255,255,0.35);
  pointer-events: none;
  font-style: italic;
}
.wa-map-picker-coords {
  text-align: center;
  font-size: 12px;
  color: var(--wa-dark);
  font-weight: 500;
  padding: 4px;
}
  background: #F0F2F5;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 8px;
}
.wa-input input {
  flex: 1; height: 40px; padding: 0 14px;
  background: #fff; border: none; border-radius: 999px;
  font-family: inherit; font-size: 14px;
  color: var(--ink);
}
.wa-input input:focus { outline: none; }
.wa-input button {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--wa-dark); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.wa-input button:hover { background: var(--wa); }
.wa-input button:disabled { background: #9CA3AF; cursor: default; }

.wa-banner {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  text-align: center;
  padding: 6px 0;
}
.wa-day-divider {
  align-self: center;
  background: rgba(255,255,255,0.85);
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; color: rgba(0,0,0,0.55);
  margin: 4px 0 8px;
}

@media (max-width: 480px) {
  .wa-panel { right: 12px; bottom: 90px; height: calc(100vh - 110px); }
  .wa-launcher { right: 16px; bottom: 16px; }
}
