/* ============================================================
   CITY E BIKE — Global Stylesheet
   Palette: charcoal ink + electric lime green on white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ink:        #232323;
  --ink-soft:   #4a4a4a;
  --ink-mute:   #7a7d78;
  --green:      #8CC63F;
  --green-dark: #6EA82F;
  --green-deep: #4d7d1f;
  --white:      #ffffff;
  --bg-soft:    #f6f7f4;
  --line:       #e6e8e2;
  --radius:     14px;
  --shadow:     0 14px 34px rgba(35,35,35,0.09);
  --shadow-sm:  0 6px 16px rgba(35,35,35,0.08);
  --maxw:       1180px;
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--ink);
  margin:0 0 .5em;
  line-height:1.15;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; color:var(--ink-soft); line-height:1.7; }

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:3px solid var(--green-dark);
  outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--green-deep);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--green);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:0.02em;
  padding:15px 28px;
  border-radius:999px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; flex:0 0 auto; }
.btn-primary{
  background:var(--green);
  color:var(--ink);
  box-shadow:0 10px 22px rgba(140,198,63,0.38);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 28px rgba(140,198,63,0.48); background:var(--green-dark); }
.btn-dark{
  background:var(--ink);
  color:var(--white);
}
.btn-dark:hover{ transform:translateY(-2px); background:#000; }
.btn-outline{
  background:transparent;
  color:var(--ink);
  border-color:var(--ink);
}
.btn-outline:hover{ background:var(--ink); color:var(--white); transform:translateY(-2px); }
.btn-outline-light{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,0.55);
}
.btn-outline-light:hover{ background:var(--white); color:var(--ink); }
.btn-block{ width:100%; justify-content:center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  max-width:var(--maxw);
  margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:52px; width:auto; }
.brand-text{ display:none; }

.main-nav{ display:none; }
.main-nav ul{ display:flex; align-items:center; gap:6px; }
.main-nav a{
  font-family:var(--font-display);
  font-weight:600;
  font-size:14px;
  letter-spacing:0.02em;
  color:var(--ink-soft);
  padding:10px 16px;
  border-radius:999px;
  transition:background .18s ease, color .18s ease;
  position:relative;
}
.main-nav a:hover{ color:var(--ink); background:var(--bg-soft); }
.main-nav a.active{ color:var(--ink); background:var(--bg-soft); }
.main-nav a.active::after{
  content:"";
  position:absolute; left:16px; right:16px; bottom:5px;
  height:2px; background:var(--green);
  border-radius:2px;
}

.header-cta{ display:none; }

.nav-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  border-radius:10px;
  border:1.5px solid var(--line);
  background:var(--white);
  cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  display:block;
  width:20px; height:2px;
  background:var(--ink);
  position:relative;
  transition:transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }
.nav-toggle.open span{ background:transparent; }
.nav-toggle.open span::before{ top:0; transform:rotate(45deg); background:var(--ink); }
.nav-toggle.open span::after{ top:0; transform:rotate(-45deg); background:var(--ink); }

.mobile-nav{
  max-height:0;
  overflow:hidden;
  background:var(--white);
  border-bottom:1px solid var(--line);
  transition:max-height .32s ease;
}
.mobile-nav.open{ max-height:420px; }
.mobile-nav ul{ padding:8px 24px 18px; display:flex; flex-direction:column; }
.mobile-nav a{
  display:block;
  font-family:var(--font-display);
  font-weight:600;
  font-size:15.5px;
  color:var(--ink);
  padding:13px 4px;
  border-bottom:1px solid var(--line);
}
.mobile-nav li:last-child a{ border-bottom:none; }
.mobile-nav .header-cta-mobile{
  margin-top:14px;
}

@media (min-width:900px){
  .brand img{ height:58px; }
  .main-nav{ display:block; }
  .header-cta{ display:inline-flex; }
  .nav-toggle{ display:none; }
  .mobile-nav{ display:none; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero{
  position:relative;
  background:var(--bg-soft);
}
.hero-media{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
}
.hero-media img{
  width:100%; height:100%; object-fit:contain; object-position:center 30%;
}
@media (min-width:700px){
  .hero-media{ aspect-ratio:16/8; }
}
@media (min-width:1100px){
  .hero-media{ aspect-ratio:16/6.4; }
}

.hero-strip{
  display:flex;
  flex-wrap:wrap;
  gap:0;
  background:var(--ink);
}
.hero-strip .strip-item{
  flex:1 1 50%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px 20px;
  border-right:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.hero-strip .strip-item svg{ width:22px; height:22px; color:var(--green); flex:0 0 auto; }
.hero-strip .strip-item span{
  font-family:var(--font-display);
  font-weight:600;
  font-size:13px;
  letter-spacing:0.03em;
  color:var(--white);
}
@media (min-width:760px){
  .hero-strip .strip-item{ flex:1 1 25%; border-bottom:none; }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header{
  position:relative;
  background:var(--ink);
  padding:64px 0 56px;
  overflow:hidden;
}
.page-header::before{
  content:"";
  position:absolute; top:-40%; right:-10%;
  width:60%; height:220%;
  background:rgba(140,198,63,0.10);
  transform:rotate(18deg);
}
.page-header .wrap{ position:relative; }
.page-header .eyebrow{ color:var(--green); }
.page-header .eyebrow::before{ background:var(--green); }
.page-header h1{ color:var(--white); font-size:clamp(30px,5vw,46px); max-width:640px; }
.page-header p{ color:rgba(255,255,255,0.72); max-width:520px; font-size:15.5px; }
.crumb{
  font-family:var(--font-display);
  font-size:12.5px;
  font-weight:600;
  color:rgba(255,255,255,0.5);
  letter-spacing:0.03em;
  margin-bottom:18px;
}
.crumb span{ color:var(--green); }

/* ============================================================
   SECTION helpers
   ============================================================ */
.section{ padding:64px 0; }
.section-soft{ background:var(--bg-soft); }
.section-dark{ background:var(--ink); }
.section-dark h2, .section-dark h3{ color:var(--white); }
.section-dark p{ color:rgba(255,255,255,0.68); }
.section-head{ max-width:620px; margin-bottom:40px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(26px,4vw,36px); }

/* diagonal divider — signature motif echoing the wedge/leaf in the banner */
.wedge-divider{
  position:relative;
  height:64px;
  background:var(--white);
}
.wedge-divider.to-soft{ background:linear-gradient(var(--white) 50%, var(--bg-soft) 50%); }
.wedge-divider svg{ position:absolute; inset:0; width:100%; height:100%; }

/* ============================================================
   BOLT DIVIDER — signature element
   ============================================================ */
.bolt-rule{
  display:flex; align-items:center; gap:10px;
  margin:0 0 30px;
}
.bolt-rule .line{ flex:1; height:1px; background:var(--line); }
.bolt-rule svg{ width:18px; height:18px; color:var(--green); }

/* ============================================================
   USP / feature grid
   ============================================================ */
.feature-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
@media (min-width:640px){ .feature-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:1000px){ .feature-grid.cols-4{ grid-template-columns:repeat(4,1fr); } }
@media (min-width:1000px){ .feature-grid.cols-3{ grid-template-columns:repeat(3,1fr); } }

.feature-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 24px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent; }
.feature-ico{
  width:46px; height:46px;
  border-radius:12px;
  background:rgba(140,198,63,0.14);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.feature-ico svg{ width:22px; height:22px; color:var(--green-deep); }
.feature-card h3{ font-size:17px; margin-bottom:8px; }
.feature-card p{ font-size:14.5px; margin:0; }

/* ============================================================
   STATS BAND (battery / charge inspired)
   ============================================================ */
.stat-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  overflow:hidden;
}
@media (min-width:760px){ .stat-band{ grid-template-columns:repeat(4,1fr); } }
.stat-cell{
  padding:26px 20px;
  border-right:1px solid rgba(255,255,255,0.12);
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.stat-cell:nth-child(2n){ border-right:none; }
@media (min-width:760px){
  .stat-cell{ border-bottom:none; }
  .stat-cell:nth-child(2n){ border-right:1px solid rgba(255,255,255,0.12); }
  .stat-cell:last-child{ border-right:none; }
}
.stat-num{
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(28px,4vw,38px);
  color:var(--green);
  display:flex; align-items:baseline; gap:2px;
}
.stat-label{
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.62);
  margin-top:6px;
}
.charge-track{
  margin-top:14px;
  height:6px;
  border-radius:4px;
  background:rgba(255,255,255,0.14);
  overflow:hidden;
}
.charge-fill{
  height:100%;
  background:linear-gradient(90deg,var(--green-dark),var(--green));
  border-radius:4px;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
@media (min-width:640px){ .product-grid{ grid-template-columns:repeat(3,1fr); gap:22px; } }
@media (min-width:980px){ .product-grid{ grid-template-columns:repeat(4,1fr); } }

.product-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease;
  display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.product-media{
  position:relative;
  aspect-ratio:1/1;
  background:linear-gradient(150deg,var(--ink) 0%, #343434 55%, var(--green-deep) 130%);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.product-media::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(140,198,63,0.30), transparent 45%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 22px);
}
.product-media svg{ position:relative; width:56%; height:56%; color:rgba(255,255,255,0.92); }
.product-grid .product-card:nth-child(2n) .product-media{ filter:hue-rotate(-8deg); }
.product-grid .product-card:nth-child(3n) .product-media{ filter:hue-rotate(10deg); }
.product-media .bolt-mark{
  position:absolute; top:12px; right:12px;
  width:26px; height:26px; color:var(--green);
  opacity:0.9;
}
.product-body{ padding:16px 16px 20px; flex:1; display:flex; flex-direction:column; }
.product-tag{
  font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--green-deep);
  margin-bottom:4px;
}
.product-name{
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px;
  margin-bottom:6px;
}
.product-body p{ font-size:13.5px; margin-bottom:14px; flex:1; }
.product-link{
  font-family:var(--font-display);
  font-weight:600;
  font-size:13px;
  display:inline-flex; align-items:center; gap:6px;
  color:var(--ink);
}
.product-link svg{ width:14px; height:14px; transition:transform .18s ease; }
.product-card:hover .product-link svg{ transform:translateX(3px); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band{
  background:var(--green);
  border-radius:22px;
  padding:44px 30px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background:repeating-linear-gradient(120deg, rgba(255,255,255,0.10) 0 2px, transparent 2px 26px);
  pointer-events:none;
}
.cta-band .wrap-inner{ position:relative; max-width:560px; margin:0 auto; }
.cta-band h2{ font-size:clamp(24px,4vw,32px); }
.cta-band p{ color:rgba(35,35,35,0.72); }
.cta-actions{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:20px; }

/* ============================================================
   ABOUT PAGE specifics
   ============================================================ */
.about-hero-grid{
  display:grid; grid-template-columns:1fr; gap:34px; align-items:center;
}
@media (min-width:900px){ .about-hero-grid{ grid-template-columns:1.1fr 0.9fr; } }
.about-visual{
  background:var(--ink);
  border-radius:20px;
  padding:34px;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.about-visual::after{
  content:"";
  position:absolute; right:-30px; bottom:-30px;
  width:180px; height:180px;
  border:2px solid rgba(140,198,63,0.3);
  border-radius:50%;
}
.about-visual .lockup{ display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.about-visual .lockup svg{ width:30px; height:30px; color:var(--green); }
.about-visual h3{ color:var(--white); font-size:20px; margin-bottom:10px; }
.about-visual ul{ display:flex; flex-direction:column; gap:14px; margin-top:18px; position:relative; }
.about-visual li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:rgba(255,255,255,0.82); }
.about-visual li svg{ width:18px; height:18px; color:var(--green); flex:0 0 auto; margin-top:2px; }

.value-list{ display:flex; flex-direction:column; gap:22px; }
.value-item{ display:flex; gap:16px; }
.value-num{
  font-family:var(--font-display);
  font-weight:800;
  font-size:14px;
  color:var(--green-deep);
  background:rgba(140,198,63,0.14);
  width:38px; height:38px; flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  border-radius:10px;
}
.value-item h3{ font-size:16.5px; margin-bottom:4px; }
.value-item p{ font-size:14px; margin:0; }

.timeline{
  display:grid; gap:16px;
  grid-template-columns:1fr;
}
@media (min-width:760px){ .timeline{ grid-template-columns:repeat(4,1fr); } }
.tl-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  padding:22px;
}
.tl-card .tl-ico{
  width:40px; height:40px;
  border-radius:10px;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.tl-card .tl-ico svg{ width:19px; height:19px; color:var(--green); }
.tl-card h3{ font-size:15.5px; margin-bottom:6px; }
.tl-card p{ font-size:13.5px; margin:0; }

/* ============================================================
   DEALERSHIP PAGE
   ============================================================ */
.dealer-layout{
  display:grid; grid-template-columns:1fr; gap:36px;
}
@media (min-width:960px){ .dealer-layout{ grid-template-columns:1fr 0.86fr; align-items:start; } }

.benefit-list{ display:flex; flex-direction:column; gap:18px; margin-top:26px; }
.benefit-item{
  display:flex; gap:14px; align-items:flex-start;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  padding:16px 18px;
}
.benefit-item .b-ico{
  width:36px; height:36px; flex:0 0 auto;
  border-radius:9px;
  background:rgba(140,198,63,0.14);
  display:flex; align-items:center; justify-content:center;
}
.benefit-item .b-ico svg{ width:18px; height:18px; color:var(--green-deep); }
.benefit-item h3{ font-size:15px; margin-bottom:3px; }
.benefit-item p{ font-size:13.5px; margin:0; }

.form-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:20px;
  padding:30px 26px;
  box-shadow:var(--shadow);
  position:sticky;
  top:100px;
}
.form-card h2{ font-size:22px; margin-bottom:6px; }
.form-card > p{ font-size:14px; margin-bottom:24px; }

.field{ margin-bottom:18px; }
.field label{
  display:block;
  font-family:var(--font-display);
  font-weight:600;
  font-size:12.5px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin-bottom:7px;
}
.field .req{ color:var(--green-deep); }
.field input, .field textarea, .field select{
  width:100%;
  border:1.5px solid var(--line);
  border-radius:10px;
  padding:13px 14px;
  font-family:var(--font-body);
  font-size:14.5px;
  color:var(--ink);
  background:var(--bg-soft);
  transition:border-color .18s ease, background .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none;
  border-color:var(--green);
  background:var(--white);
}
.field textarea{ resize:vertical; min-height:90px; }
.field-error{
  font-size:12px; color:#c0392b; margin-top:6px; display:none;
}
.field.invalid input, .field.invalid textarea{ border-color:#c0392b; }
.field.invalid .field-error{ display:block; }

.form-note{
  font-size:12.5px; color:var(--ink-mute); margin-top:16px; text-align:center;
}
.form-success{
  display:none;
  text-align:center;
  padding:30px 10px 10px;
}
.form-success.show{ display:block; }
.form-success svg{ width:54px; height:54px; color:var(--green-dark); margin:0 auto 16px; }
.form-success h3{ font-size:19px; margin-bottom:8px; }
.form-success p{ font-size:14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid{
  display:grid; grid-template-columns:1fr; gap:16px;
}
@media (min-width:700px){ .contact-grid{ grid-template-columns:repeat(3,1fr); } }
.contact-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  padding:24px;
}
.contact-card .c-ico{
  width:42px; height:42px; border-radius:11px;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.contact-card .c-ico svg{ width:20px; height:20px; color:var(--green); }
.contact-card h3{ font-size:15.5px; margin-bottom:8px; }
.contact-card p{ font-size:14px; margin:0; }
.contact-card a{ color:var(--ink); font-weight:600; }
.contact-card a:hover{ color:var(--green-deep); }

.map-frame{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  height:340px;
}
.map-frame iframe{ width:100%; height:100%; border:0; display:block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--ink);
  color:rgba(255,255,255,0.7);
  padding:56px 0 0;
}
.footer-grid{
  display:grid; grid-template-columns:1fr; gap:36px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
@media (min-width:760px){ .footer-grid{ grid-template-columns:1.3fr 0.8fr 0.8fr 1fr; } }
.footer-brand img{ height:50px; margin-bottom:16px; }
.footer-brand p{ color:rgba(255,255,255,0.6); font-size:14px; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  transition:background .18s ease;
}
.footer-social a:hover{ background:var(--green); }
.footer-social svg{ width:16px; height:16px; color:var(--white); }
.footer-col h4{
  font-family:var(--font-display);
  color:var(--white);
  font-size:14px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14.5px; color:rgba(255,255,255,0.68); }
.footer-col a:hover{ color:var(--green); }
.footer-col li{ display:flex; gap:10px; font-size:14.5px; color:rgba(255,255,255,0.68); }
.footer-col li svg{ width:16px; height:16px; color:var(--green); flex:0 0 auto; margin-top:3px; }
.footer-bottom{
  display:flex; flex-wrap:wrap; gap:10px;
  align-items:center; justify-content:space-between;
  padding:22px 0;
  font-size:13px;
  color:rgba(255,255,255,0.45);
}
.footer-bottom a{ color:rgba(255,255,255,0.6); }

/* Whatsapp float */
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:300;
  width:56px; height:56px; border-radius:50%;
  background:var(--green);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(140,198,63,0.5);
  transition:transform .2s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:26px; height:26px; color:var(--ink); }

/* utility */
.mt-0{ margin-top:0; }
.center{ text-align:center; }
