:root {
  --white: #ffffff;
  --off: #f7f6f3;
  --black: #0d0d0d;
  --ink: #1a1a2e;
  --muted: #6b7280;
  --light: #e5e7eb;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --green-mid: #22c55e;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --accent: #f59e0b;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar span { opacity: 0.85; margin: 0 12px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 68px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.logo em { color: var(--green); font-style: normal; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(37,211,102,0.35);
}
.nav-wa:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
.nav-wa svg { width: 18px; height: 18px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft);
  color: var(--green);
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-mid);
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 mark {
  background: none;
  color: var(--green);
  position: relative;
}
.hero h1 mark::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--green-mid);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; flex-direction: column; gap: 12px; max-width: 360px; }

.btn-wa-main {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--wa);
  color: white;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 17px; font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  position: relative;
  overflow: hidden;
}
.btn-wa-main::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.btn-wa-main:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.btn-wa-main svg { width: 24px; height: 24px; flex-shrink: 0; }

.btn-wa-sub {
  text-align: center;
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-wa-sub svg { width: 14px; height: 14px; color: var(--green); }

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--off);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-top: 8px;
}
.trust-avatars { display: flex; }
.trust-avatars .av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.trust-avatars .av:first-child { margin-left: 0; }
.av-1 { background: #fbbf24; color: #78350f; }
.av-2 { background: #60a5fa; color: #1e3a5f; }
.av-3 { background: #f87171; color: #7f1d1d; }
.av-4 { background: #a78bfa; color: #3b0764; }
.trust-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.trust-text strong { color: var(--ink); display: block; font-size: 14px; }

/* ── HERO RIGHT: Dashboard mockup ── */
.hero-visual { position: relative; }

.mockup-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.mockup-bar {
  background: var(--off);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28ca41; }
.mockup-url {
  flex: 1; background: white; border-radius: 6px;
  padding: 4px 12px; font-size: 11px; color: var(--muted);
  border: 1px solid var(--border);
  margin-left: 8px;
  display: flex; align-items: center; gap: 6px;
}
.mockup-url svg { width: 10px; height: 10px; color: var(--green); }

.sheet-mock { padding: 20px; }
.sheet-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.sheet-live { font-size: 10px; background: var(--green-soft); color: var(--green); padding: 3px 10px; border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.sheet-live::before { content: ''; width: 5px; height: 5px; background: var(--green-mid); border-radius: 50%; animation: blink 1.5s infinite; }

.sheet-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.sheet-table th { background: var(--off); color: var(--muted); font-weight: 600; padding: 7px 10px; text-align: left; border: 1px solid var(--border); letter-spacing: 0.04em; font-size: 10px; }
.sheet-table td { padding: 7px 10px; border: 1px solid var(--border); color: var(--ink); }
.sheet-table tr:nth-child(even) td { background: #fafafa; }
.chip-aktif { background: var(--green-soft); color: var(--green); padding: 2px 8px; border-radius: 50px; font-size: 10px; font-weight: 600; }
.chip-auto {
  display: inline-flex; align-items: center; gap: 5px;
  background: #eff6ff; color: #2563eb;
  padding: 2px 8px; border-radius: 50px; font-size: 10px; font-weight: 600;
}

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.kpi-box { background: var(--off); border-radius: 8px; padding: 12px; border: 1px solid var(--border); }
.kpi-label { font-size: 9px; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; margin-bottom: 4px; }
.kpi-val { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); }
.kpi-change { font-size: 10px; margin-top: 2px; }
.up { color: var(--green); }
.down { color: #ef4444; }

.auto-note {
  margin-top: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11px;
  color: #1d4ed8;
  display: flex; align-items: center; gap: 8px;
}

.badge-float {
  position: absolute;
  top: -16px; right: -16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  animation: floatBob 3s ease-in-out infinite;
}
@keyframes floatBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.badge-float-icon { font-size: 24px; }
.badge-float-text { font-size: 11px; color: var(--muted); }

/* ── LOGOS / AS SEEN ON ── */
.logos-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 60px;
  background: var(--off);
  text-align: center;
}
.logos-label { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; font-weight: 600; margin-bottom: 20px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: #9ca3af;
  letter-spacing: -0.3px;
}
.logo-item svg { width: 24px; height: 24px; }

/* ── SECTIONS COMMON ── */
section { padding: 96px 60px; max-width: 1200px; margin: 0 auto; }
.section-super { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; color: var(--green); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-super::before { content: ''; width: 28px; height: 2px; background: var(--green); border-radius: 2px; }
.section-h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 900; letter-spacing: -1px; line-height: 1.15; color: var(--ink); margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 520px; line-height: 1.7; margin-bottom: 56px; }

/* ── PROBLEM ── */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.problem-list { display: flex; flex-direction: column; gap: 16px; }
.problem-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 12px;
}
.problem-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.problem-text strong { display: block; font-size: 15px; font-weight: 600; color: #b91c1c; margin-bottom: 4px; }
.problem-text p { font-size: 13px; color: #7f1d1d; opacity: 0.8; }

.solution-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--green));
}
.solution-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--green); margin-bottom: 16px; }
.solution-h { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.solution-p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.solution-features { display: flex; flex-direction: column; gap: 10px; }
.sf-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink); }
.sf-check { width: 20px; height: 20px; background: var(--green-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sf-check svg { width: 12px; height: 12px; color: var(--green); }

/* ── HOW IT WORKS ── */
.how-section { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-section > * { max-width: 1200px; margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.how-steps::after {
  content: '';
  position: absolute; top: 28px; left: 60px; right: 60px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 8px, transparent 8px, transparent 16px);
  opacity: 0.25;
  pointer-events: none;
}
.how-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.how-step:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-badge {
  width: 40px; height: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  margin-bottom: 16px;
}
.how-step h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.step-time { margin-top: 16px; font-size: 11px; font-weight: 600; color: var(--green); background: var(--green-soft); padding: 4px 10px; border-radius: 50px; display: inline-block; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: var(--shadow-lg); }
.stars { color: var(--accent); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--ink); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--muted); }
.verified { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); font-weight: 600; margin-top: 4px; }
.verified svg { width: 12px; height: 12px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  background: white;
  transition: all .25s;
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.pop-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 16px; border-radius: 50px;
}
.price-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.price-card.featured .price-tier { color: rgba(255,255,255,0.5); }
.price-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 4px; letter-spacing: -2px; }
.price-sup { font-size: 24px; vertical-align: super; }
.price-note { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.price-card.featured .price-note { color: rgba(255,255,255,0.4); }
.price-sep { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-card.featured .price-sep { background: rgba(255,255,255,0.1); }
.feat-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feat-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.feat-item.off { opacity: 0.35; text-decoration: line-through; }
.feat-icon { font-size: 15px; flex-shrink: 0; }

.btn-order {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px;
  border-radius: 12px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.btn-order-wa { background: var(--wa); color: white; box-shadow: 0 2px 12px rgba(37,211,102,0.3); }
.btn-order-wa:hover { background: var(--wa-dark); box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
.btn-order-outline { background: transparent; color: var(--ink); border: 2px solid var(--border); }
.btn-order-outline:hover { border-color: var(--ink); background: var(--ink); color: white; }
.btn-order-wh { background: white; color: var(--ink); }
.btn-order-wh:hover { background: var(--off); }
.btn-order svg { width: 20px; height: 20px; }

/* ── GUARANTEE ── */
.guarantee {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex; align-items: center; gap: 32px;
  margin-top: 40px;
}
.guarantee-icon { font-size: 56px; flex-shrink: 0; }
.guarantee h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.guarantee p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer;
  background: white;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: var(--off); }
.faq-arrow { font-size: 18px; color: var(--muted); transition: transform .3s; }
.faq-a {
  padding: 0 28px;
  font-size: 14px; color: var(--muted); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  background: white;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 28px 22px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 96px 60px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(34,197,94,0.2) 0%, transparent 60%);
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; letter-spacing: -2px;
  line-height: 1.1; margin-bottom: 20px;
  position: relative;
}
.final-cta h2 span { color: var(--green-mid); }
.final-cta p { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 40px; position: relative; }

.final-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wa);
  color: white; padding: 20px 40px;
  border-radius: 16px;
  font-size: 18px; font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  position: relative;
}
.final-btn::before {
  content: '';
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.final-btn:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 8px 40px rgba(37,211,102,0.55); }
.final-btn svg { width: 26px; height: 26px; }

.final-reassure {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-top: 28px; flex-wrap: wrap;
}
.fr-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.45); }
.fr-item svg { width: 14px; height: 14px; color: var(--green-mid); }

/* ── FOOTER ── */
footer {
  background: #0a0a0f;
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer .logo { color: white; font-size: 18px; }
footer p { font-size: 12px; color: #4b5563; }

/* ── FLOATING WA BUTTON ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 500;
  display: flex; align-items: center; gap: 12px;
  background: var(--wa);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: all .25s;
  animation: popIn 0.5s ease 1s both;
}
@keyframes popIn { from{transform:scale(0) translateY(20px);opacity:0} to{transform:scale(1) translateY(0);opacity:1} }
.float-wa:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.float-wa svg { width: 22px; height: 22px; }
.float-wa-pulse {
  position: absolute; top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #ef4444; border-radius: 50%;
  border: 2px solid white;
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing { 0%{box-shadow:0 0 0 0 rgba(239,68,68,0.6)} 70%{box-shadow:0 0 0 8px rgba(239,68,68,0)} 100%{box-shadow:0 0 0 0 rgba(239,68,68,0)} }

/* ── ANIMATE ON SCROLL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
  .hero-visual .badge-float { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .testi-grid, .pricing-grid { grid-template-columns: 1fr; }
  .proof-numbers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 64px 20px; }
  .logos-section { padding: 24px 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::after { display: none; }
  .guarantee { flex-direction: column; text-align: center; padding: 28px 24px; }
  .final-cta { padding: 64px 20px; }
  footer { padding: 28px 20px; flex-direction: column; text-align: center; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
}