/* ===========================================================
   Khadiwale — static stylesheet
   Industrial Swiss high-contrast (white / charcoal / orange)
   =========================================================== */

:root {
  --kw-orange: #F97316;
  --kw-orange-hover: #EA580C;
  --kw-charcoal: #18181B;
  --kw-muted: #52525B;
  --kw-border: #E4E4E7;
  --kw-surface: #F8F9FA;
  --kw-wa: #25D366;
  --kw-wa-hover: #1EB858;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--kw-charcoal);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ----- Container ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ----- Type ----- */
h1, h2, h3, h4, .display, .brand strong {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h2 { font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3rem); margin: 0 0 .25em; line-height: 1.05; }
h3 { font-size: 1.25rem; margin: 0 0 .25em; }
.display {
  font-size: clamp(3rem, 2rem + 5vw, 6rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 0;
}
.lead { font-size: 1.0625rem; color: var(--kw-charcoal); }
.muted { color: var(--kw-muted); }
.muted-w { color: rgba(255,255,255,.7); }
.small { font-size: .85rem; }
.accent { color: var(--kw-orange); }
.overline {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--kw-muted);
  margin: 0 0 8px;
}
.overline.accent { color: var(--kw-orange); }
.mt-md { margin-top: 16px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  white-space: nowrap;
}
.btn .ico { width: 16px; height: 16px; }
.btn-lg { height: 56px; padding: 0 24px; font-size: 1rem; }
.btn-md { height: 48px; padding: 0 20px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--kw-orange); color: #fff; }
.btn-primary:hover { background: var(--kw-orange-hover); }
.btn-dark { background: var(--kw-charcoal); color: #fff; }
.btn-dark:hover { background: var(--kw-orange); }
.btn-wa { background: var(--kw-wa); color: #fff; }
.btn-wa:hover { background: var(--kw-wa-hover); }
.btn-outline-w { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.85); }
.btn-outline-w:hover { background: #fff; color: var(--kw-charcoal); }

/* ----- Icons ----- */
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico { width: 16px; height: 16px; flex-shrink: 0; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--kw-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .nav { height: 80px; } }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--kw-charcoal);
  color: #fff;
  font-family: "Outfit"; font-weight: 800; font-size: 1.1rem;
}
.brand-img {
  width: 40px; height: 40px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .brand-img { width: 44px; height: 44px; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.1rem; font-weight: 800; }
.brand-text small {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kw-muted);
  font-weight: 700;
  margin-top: 4px;
}

.nav-links { display: none; gap: 32px; }
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  transition: color .15s;
}
.nav-links a:hover { color: var(--kw-orange); }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-cta { display: flex; align-items: center; gap: 8px; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline-flex; } }

.menu-toggle {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--kw-border);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle svg { color: var(--kw-charcoal); width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--kw-border);
  padding: 16px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 0;
  border-bottom: 1px solid var(--kw-border);
  font-weight: 600;
}
.mobile-menu .btn { margin-top: 16px; border: 0; }

/* ----- Hero ----- */
.hero { position: relative; background: var(--kw-charcoal); color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(24,24,27,.92), rgba(24,24,27,.55)),
    url('https://images.pexels.com/photos/12519386/pexels-photo-12519386.jpeg') center/cover;
  opacity: 1;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 64px 16px;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    align-items: end;
    gap: 32px;
    padding: 120px 32px;
  }
}
.hero-copy {}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge .dot {
  width: 8px; height: 8px;
  background: var(--kw-orange);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-copy .lead { color: rgba(255,255,255,.8); font-size: 1.125rem; max-width: 600px; margin: 24px 0 0; }
.hero-copy .lead strong { color: #fff; font-weight: 800; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 28px;
}
@media (min-width: 600px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact { display: flex; gap: 12px; align-items: flex-start; }
.fact-ico {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--kw-orange);
}
.fact-ico svg { width: 16px; height: 16px; }
.fact strong {
  font-family: "Outfit"; font-weight: 800; font-size: 1.0625rem;
  display: block;
}
.fact small {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* Hero info card */
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  padding: 28px;
  position: relative;
  backdrop-filter: blur(6px);
}
.hero-card h3 { margin: 12px 0 12px; font-size: 1.6rem; line-height: 1.15; }
.hero-card p { color: rgba(255,255,255,.7); font-size: .95rem; }
.hero-card .btn { margin-top: 20px; }
.edge-badge { position: relative; }
.edge-badge::before {
  content: ""; position: absolute;
  top: 0; left: 0;
  width: 14px; height: 14px;
  background: var(--kw-orange);
}

/* ----- Sections ----- */
.benefits, .services, .how, .about, .contact { padding: 64px 0; }
@media (min-width: 768px) { .benefits, .services, .how, .about, .contact { padding: 96px 0; } }

.benefits { border-bottom: 1px solid var(--kw-border); }
.services { background: var(--kw-surface); }
.about { background: var(--kw-charcoal); color: #fff; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.section-head.stack > * { max-width: 760px; }
@media (min-width: 768px) {
  .section-head:not(.stack) {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
  .section-head:not(.stack) .lead { max-width: 400px; text-align: right; }
}

/* ----- Benefits grid ----- */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--kw-border);
}
@media (min-width: 600px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .benefit-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit {
  position: relative;
  padding: 32px;
  border-right: 1px solid var(--kw-border);
  border-bottom: 1px solid var(--kw-border);
  transition: background .2s;
}
.benefit:hover { background: var(--kw-surface); }
.benefit:last-child { border-right: 0; border-bottom: 0; }
@media (min-width: 600px) {
  .benefit:nth-child(2n) { border-right: 0; }
  .benefit:nth-child(n+3) { border-bottom: 0; }
}
@media (min-width: 1000px) {
  .benefit { border-bottom: 0 !important; border-right: 1px solid var(--kw-border) !important; }
  .benefit:last-child { border-right: 0 !important; }
}
.benefit-ico {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--kw-charcoal);
  color: var(--kw-orange);
  transition: background .2s, color .2s;
}
.benefit:hover .benefit-ico { background: var(--kw-orange); color: #fff; }
.benefit-ico svg { width: 22px; height: 22px; }
.benefit h3 { margin-top: 24px; font-size: 1.25rem; }
.benefit p { color: var(--kw-muted); font-size: .9rem; margin: 8px 0 0; }
.num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: "Outfit"; font-weight: 800;
  color: var(--kw-border);
  font-size: .9rem;
}

/* ----- Services ----- */
.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .service-rmc { grid-column: span 7; }
  .service-agg { grid-column: span 5; }
  .service-gsb { grid-column: span 12; }
}
.service-card { background: #fff; border: 1px solid var(--kw-border); }
.service-img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
}
@media (min-width: 768px) { .service-img { height: 280px; } }
.service-tag {
  position: absolute;
  top: 0; left: 0;
  background: var(--kw-orange);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .14em;
  font-weight: 700;
  padding: 8px 14px;
}
.service-body { padding: 24px; }
@media (min-width: 768px) { .service-body { padding: 32px; } }
.service-body h3 { font-size: 1.5rem; }
@media (min-width: 768px) { .service-body h3 { font-size: 1.75rem; } }

.grade-list { display: flex; flex-wrap: wrap; gap: 8px; }
.grade-list span {
  display: inline-flex;
  align-items: center; justify-content: center;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--kw-border);
  background: #fff;
  font-family: "Outfit"; font-weight: 700;
  font-size: .85rem;
  cursor: default;
  transition: background .15s, color .15s, border-color .15s;
}
.grade-list span:hover {
  background: var(--kw-orange); color: #fff; border-color: var(--kw-orange);
}

.agg-list {
  border-top: 1px solid var(--kw-border);
  border-bottom: 1px solid var(--kw-border);
  margin-top: 20px;
}
.agg-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--kw-border);
}
.agg-list li:last-child { border-bottom: 0; }
.agg-list strong { font-family: "Outfit"; font-weight: 700; display: block; }
.agg-list small { color: var(--kw-muted); font-size: .8rem; }
.agg-list span:last-child {
  font-family: "Outfit"; font-weight: 700;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--kw-orange);
}

/* GSB tile - dark */
.service-gsb { background: var(--kw-charcoal); color: #fff; border-color: var(--kw-charcoal); }
.gsb-grid {
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .gsb-grid { grid-template-columns: 2fr 3fr; } }
.gsb-intro { padding: 32px; }
.gsb-intro h3 { font-size: 1.75rem; }
.gsb-intro p { color: rgba(255,255,255,.7); font-size: .95rem; }
.gsb-items {
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 600px) { .gsb-items { grid-template-columns: 1fr 1fr; } }
.gsb-items > div {
  padding: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
@media (min-width: 600px) {
  .gsb-items > div:nth-child(2) { border-left: 1px solid rgba(255,255,255,.1); }
}
.gsb-items > div:hover { background: rgba(255,255,255,.05); }
.gsb-items h4 { font-family: "Outfit"; font-weight: 700; font-size: 1.1rem; margin: 0 0 8px; }
.gsb-items p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

/* ----- How It Works ----- */
.how { background: #fff; position: relative; }
.how::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(24,24,27,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,24,27,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .4;
  pointer-events: none;
}
.how .container { position: relative; }
.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .step-grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: #fff;
  border-left: 2px solid var(--kw-orange);
  padding: 24px;
}
@media (min-width: 768px) {
  .step { border-left: 0; border-top: 2px solid var(--kw-orange); padding: 32px; }
}
.step-num {
  font-family: "Outfit"; font-weight: 900;
  font-size: 3rem;
  color: var(--kw-border);
  line-height: 1;
}
.step-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--kw-charcoal); color: var(--kw-orange);
  float: right;
}
.step-ico svg { width: 22px; height: 22px; }
.step h3 { margin: 24px 0 12px; font-size: 1.25rem; clear: right; }
.step p { color: var(--kw-muted); font-size: .9rem; margin: 0; }

/* ----- About ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1000px) { .about-grid { grid-template-columns: 7fr 5fr; gap: 48px; } }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 24px 0;
  margin-top: 36px;
}
.about-stats strong { display: block; font-family: "Outfit"; font-weight: 800; font-size: 1.5rem; }
@media (min-width: 768px) { .about-stats strong { font-size: 2rem; } }
.about-stats small { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 4px; }

.app-banner {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  padding: 24px;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .app-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 32px; }
}
.ab-icon {
  width: 48px; height: 48px;
  background: var(--kw-orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ab-icon svg { width: 22px; height: 22px; }
.ab-text { flex: 1; }
.ab-text h3 { font-size: 1.25rem; margin: 4px 0; }
.ab-text p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

.about-img {
  height: 320px;
  background-size: cover; background-position: center;
  border: 1px solid rgba(255,255,255,.15);
  position: relative;
}
@media (min-width: 1000px) { .about-img { min-height: 100%; height: auto; } }
.about-img-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(to top, var(--kw-charcoal), transparent);
  display: grid; gap: 16px;
}
.about-img-overlay > div { display: flex; flex-direction: column; }
.about-img-overlay strong {
  font-family: "Outfit"; font-weight: 800; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff;
}
.about-img-overlay small { color: rgba(255,255,255,.7); font-size: .8rem; }

/* ----- Contact ----- */
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 32px; } }

.contact-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--kw-border);
  background: #fff;
  transition: background .15s, border-color .15s, color .15s;
  gap: 12px;
}
.contact-item:not(.static):hover { background: var(--kw-charcoal); color: #fff; border-color: var(--kw-orange); }
.contact-item.static { background: var(--kw-surface); cursor: default; }
.ci-ico {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.bg-primary { background: var(--kw-orange); }
.bg-wa { background: var(--kw-wa); }
.bg-dark { background: var(--kw-charcoal); }
.bg-dark { color: var(--kw-orange); }
.ci-ico svg { width: 18px; height: 18px; }
.ci-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.ci-body small { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--kw-muted); }
.contact-item:hover .ci-body small { color: rgba(255,255,255,.7); }
.ci-body strong { font-family: "Outfit"; font-weight: 700; font-size: 1.05rem; margin-top: 2px; }
.ci-tag {
  font-family: "Outfit"; font-weight: 700;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  flex-shrink: 0;
}

.form-card {
  background: var(--kw-surface);
  border: 1px solid var(--kw-border);
  padding: 24px;
}
@media (min-width: 768px) { .form-card { padding: 40px; } }
.form-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.form-head h3 { font-size: 1.5rem; margin-top: 8px; }
@media (min-width: 768px) { .form-head h3 { font-size: 1.75rem; } }
.form-ico {
  display: none;
  width: 48px; height: 48px;
  background: var(--kw-charcoal); color: var(--kw-orange);
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) { .form-ico { display: inline-flex; } }
.form-ico svg { width: 22px; height: 22px; }

.form-row { display: block; margin-bottom: 20px; }
.form-row span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--kw-muted);
}
.form-row input, .form-row textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--kw-border);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--kw-charcoal);
  outline: none;
  border-radius: 0;
  transition: border-color .15s;
}
.form-row input { height: 48px; }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--kw-orange); }
.form-row.two { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.form-foot {
  display: flex; flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 600px) {
  .form-foot { flex-direction: row; align-items: center; justify-content: space-between; }
}
.form-foot p { margin: 0; }
.form-msg { margin-top: 16px; font-size: .9rem; min-height: 1.2em; }
.form-msg.error { color: #b91c1c; }
.form-msg.success { color: #15803d; }

/* ----- Footer ----- */
.site-footer {
  border-top: 1px solid var(--kw-border);
  background: #fff;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-list a { color: var(--kw-charcoal); font-size: .9rem; transition: color .15s; }
.footer-list a:hover { color: var(--kw-orange); }
.footer-list li { font-size: .9rem; color: var(--kw-charcoal); }
.footer-bottom {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 8px;
  border-top: 1px solid var(--kw-border);
  padding-top: 24px;
  font-size: .8rem; color: var(--kw-muted);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom .domain { font-family: "Outfit"; font-weight: 800; letter-spacing: .14em; color: var(--kw-charcoal); }

/* ----- Sticky CTAs ----- */
.sticky-mobile {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  z-index: 50;
}
@media (min-width: 768px) { .sticky-mobile { display: none; } }
.sticky-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 56px;
  font-family: "Outfit"; font-weight: 700;
  font-size: .9rem;
  color: #fff;
}

.float-call, .float-wa {
  position: fixed;
  right: 32px;
  width: 64px; height: 64px;
  display: none;
  align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  z-index: 50;
  transition: background .15s;
}
@media (min-width: 768px) {
  .float-call, .float-wa { display: inline-flex; }
}
.float-call { bottom: 112px; background: var(--kw-orange); }
.float-call:hover { background: var(--kw-orange-hover); }
.float-call svg { width: 24px; height: 24px; }
.float-wa { bottom: 32px; background: var(--kw-wa); }
.float-wa:hover { background: var(--kw-wa-hover); }
.float-wa svg { width: 26px; height: 26px; }

/* spacer so mobile sticky bar doesn't cover content */
body { padding-bottom: 56px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ----- Animations ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease-out both; }
