/* =============================================
   Quali Connect Africa — Main Stylesheet
   Brand: Green #00B050 / Black #111 / White
   ============================================= */

:root {
  --green:       #00B050;
  --green-dark:  #007A35;
  --green-light: #E6F7EE;
  --black:       #111111;
  --gray-dark:   #333333;
  --gray:        #666666;
  --gray-mid:    #999999;
  --gray-light:  #F8FAF8;
  --border:      #E5E7EB;
  --white:       #ffffff;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }

/* ---- UTILITY ---- */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-green  { color: var(--green); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.12s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,176,80,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,176,80,0.25);
}

.btn-lg   { padding: 16px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAVIGATION ---- */
nav.topnav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-text { color: var(--black); }
.logo-text strong { color: var(--green); font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links li a {
  color: var(--gray-dark);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-links li a:hover { color: var(--green); background: var(--green-light); }

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-dark) !important;
  font-weight: 600 !important;
}
.nav-phone-link:hover { color: var(--green) !important; }

.btn-nav-cta {
  padding: 9px 20px !important;
  font-size: 0.9rem !important;
  border-radius: 9px !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--gray-light); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  background: var(--gray-light);
  padding: 80px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content { padding-right: 12px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(0,176,80,0.3);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.9rem;
  line-height: 1.12;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.7;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  font-weight: 500;
}
.bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero form column */
.hero-form-col { display: flex; align-items: flex-start; }

/* ---- BOOKING FORM CARD ---- */
.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--green);
  width: 100%;
}

.booking-form-header { margin-bottom: 24px; }
.booking-form-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}
.booking-form-header p {
  font-size: 0.88rem;
  color: var(--gray);
}

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 5px;
}
.form-group label .req { color: var(--green); margin-left: 1px; }
.label-optional { color: var(--gray-mid); font-weight: 400; font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,176,80,0.10);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.checkboxes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  padding: 9px 11px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s, background 0.18s;
  user-select: none;
}
.check-item:hover { border-color: var(--green); }
.check-item:has(input:checked) {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
}
.check-item input { accent-color: var(--green); flex-shrink: 0; }

.form-divider { border: none; border-top: 1px solid #f0f0f0; margin: 18px 0; }
.field-error  { display: block; color: #DC2626; font-size: 0.8rem; margin-top: 4px; }
.form-note    { font-size: 0.8rem; color: var(--gray-mid); margin-top: 10px; text-align: center; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--green);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 48px;
  flex: 1;
  text-align: center;
}
.trust-top {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  display: block;
}
.trust-bottom {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
  display: block;
}
.trust-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px 0;
  flex-shrink: 0;
}

/* ---- SECTIONS ---- */
.section       { padding: 88px 0; }
.section-light { background: var(--gray-light); }

.section-heading { margin-bottom: 52px; }
.section-heading h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section-heading p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.22s, transform 0.22s;
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  height: 44px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.step-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; }

/* ---- ISSUES ---- */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.issue-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  transition: box-shadow 0.22s, transform 0.22s;
}
.issue-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.issue-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  flex-shrink: 0;
}
.issue-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}
.issue-body p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ---- PROVIDERS ---- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.provider-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  cursor: default;
}
.provider-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0,176,80,0.12);
  transform: translateY(-3px);
}
.provider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  margin: 0 auto 12px;
}
.provider-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.3px;
}

/* ---- FOOTER ---- */
footer.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text strong { color: var(--green); font-weight: 800; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links-col h4,
.footer-contact-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links-col ul li a:hover { color: var(--green); }
.footer-contact-col { display: flex; flex-direction: column; gap: 0; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--green); }
.footer-contact-item svg { flex-shrink: 0; color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ---- FLOATING WHATSAPP ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,0.50);
}
.wa-icon {
  width: 30px;
  height: 30px;
  color: var(--white);
  fill: var(--white);
  display: block;
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--black);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ---- SUCCESS PAGE ---- */
.success-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--gray-light);
}
.success-card {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 560px;
  border-top: 4px solid var(--green);
}
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  margin: 0 auto 24px;
}
.success-card h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; color: var(--black); }
.success-card p  { color: var(--gray); margin-bottom: 28px; line-height: 1.7; }
.appt-ref {
  background: var(--green-light);
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.appt-ref strong { color: var(--green-dark); }

/* ---- ADMIN PANEL (preserved, do not modify) ---- */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--black); padding: 24px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar .brand { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; }
.admin-sidebar .brand h2 { color: var(--white); font-size: 1rem; font-weight: 700; }
.admin-sidebar .brand span { color: var(--green); }
.admin-sidebar .brand small { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.sidebar-nav { list-style: none; }
.sidebar-nav li a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all 0.2s; text-decoration: none; }
.sidebar-nav li a:hover,
.sidebar-nav li a.active { color: var(--white); background: rgba(0,176,80,0.15); border-left: 3px solid var(--green); }
.admin-main { background: #F7F8FA; padding: 32px; overflow-y: auto; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-header h1 { font-size: 1.5rem; color: var(--black); }

.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.stat-card  { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-top: 4px solid var(--green); }
.stat-card .s-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.stat-card .s-value { font-size: 2rem; font-weight: 800; color: var(--black); }
.stat-card.warn    { border-top-color: #f59e0b; }
.stat-card.success { border-top-color: #10b981; }
.stat-card.danger  { border-top-color: #ef4444; }

.data-table-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.table-toolbar { padding: 16px 20px; border-bottom: 1px solid #eee; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.table-toolbar select, .table-toolbar input { padding: 8px 12px; border: 1.5px solid #ddd; border-radius: 6px; font-size: 0.88rem; }
table.data-table { width: 100%; border-collapse: collapse; }
table.data-table thead { background: var(--gray-light); }
table.data-table th { padding: 12px 16px; text-align: left; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); }
table.data-table td { padding: 14px 16px; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; }
table.data-table tr:hover td { background: #FAFFF9; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.badge-pending   { background: #FFF3CD; color: #856404; }
.badge-confirmed { background: #D1ECF1; color: #0C5460; }
.badge-done      { background: #D4EDDA; color: #155724; }
.badge-cancelled { background: #F8D7DA; color: #721C24; }

.progress-bar-wrap { background: #eee; border-radius: 20px; height: 8px; width: 100%; }
.progress-bar      { background: var(--green); border-radius: 20px; height: 8px; transition: width 0.3s; }

.commission-card  { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); border-top: 4px solid var(--green); }
.commission-total { font-size: 2.4rem; font-weight: 800; color: var(--green); margin: 16px 0 4px; }
.commission-total span { font-size: 1rem; color: var(--gray); font-weight: 400; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 40px; }
  .hero-content    { padding-right: 0; }
  .hero h1         { font-size: 2.4rem; }
  .steps-grid      { grid-template-columns: 1fr; gap: 20px; }
  .providers-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-cards      { grid-template-columns: repeat(2,1fr); }
  .admin-layout    { grid-template-columns: 1fr; }
  .admin-sidebar   { position: static; height: auto; }
  .trust-stat      { padding: 24px 24px; }
}

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 12px;
    z-index: 200;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 0.97rem;
  }
  .nav-links li a.btn-nav-cta {
    margin: 8px 16px 0;
    width: calc(100% - 32px);
    text-align: center;
    border-radius: 9px !important;
  }
  .hero            { padding: 56px 0 64px; }
  .hero h1         { font-size: 2rem; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-stat      { padding: 20px 20px; flex: 0 0 50%; }
  .trust-divider   { display: none; }
  .section         { padding: 60px 0; }
  .issues-grid     { grid-template-columns: 1fr; }
  .providers-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .booking-form    { padding: 24px 18px; }
  .form-row        { grid-template-columns: 1fr; }
  .checkboxes-grid { grid-template-columns: 1fr; }
  .success-card    { padding: 36px 22px; }
  .wa-float        { bottom: 20px; right: 20px; }
}
