/* ==========================================================================
   MobileSpot — Washing Machine & Refrigerator Repair, Bangalore
   Global stylesheet
   ========================================================================== */

:root {
  --brand:        #0b5cd6;
  --brand-dark:   #063e93;
  --brand-light:  #e8f1ff;
  --accent:       #ff7a18;
  --accent-dark:  #e56505;
  --ink:          #16202e;
  --body:         #43505f;
  --muted:        #7a8798;
  --line:         #e3e8ef;
  --bg:           #ffffff;
  --bg-soft:      #f5f8fc;
  --bg-dark:      #0d1b2e;
  --ok:           #1f9d55;
  --radius:       14px;
  --radius-sm:    9px;
  --shadow:       0 10px 30px rgba(17, 40, 80, .08);
  --shadow-lg:    0 20px 55px rgba(17, 40, 80, .14);
  --wrap:         1140px;
  --font:         "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading:      "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; font-family: var(--heading); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section__head p { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { background: var(--brand-light); color: var(--brand-dark); }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1eb457; color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--bg-dark);
  color: #cdd8e8;
  font-size: .88rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar__left span { margin-right: 18px; white-space: nowrap; }
.topbar__left i, .topbar__right i { color: var(--accent); font-style: normal; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.3rem; color: var(--ink); font-family: var(--heading); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.brand__mark span { transform: translateY(-1px); }
.brand b { color: var(--accent); }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  color: var(--body);
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .97rem;
}
.nav__links a:hover, .nav__links a.active { color: var(--brand); background: var(--brand-light); }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 8px;
  color: var(--ink);
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: currentColor;
  margin: 5px auto; border-radius: 2px; transition: .25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, #f5f9ff 0%, #eaf1ff 55%, #fff 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,92,214,.12), transparent 70%);
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
.hero__content { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero__lead { font-size: 1.15rem; color: var(--body); margin-bottom: 28px; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-size: 1.6rem; color: var(--ink); line-height: 1; }
.hero__trust small { color: var(--muted); font-size: .85rem; }

.hero__card {
  position: relative; z-index: 2;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border: 1px solid var(--line);
}
.hero__card h3 { margin-bottom: 6px; }
.hero__card p.small { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.hero__card ul { list-style: none; margin: 0 0 22px; padding: 0; }
.hero__card li { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-weight: 500; color: var(--ink); }
.hero__card li:last-child { border-bottom: none; }
.hero__card li i { color: var(--ok); font-style: normal; font-weight: 800; }

/* ---------- Feature strip ---------- */
.strip { background: var(--brand); color: #fff; }
.strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 30px 20px; }
.strip__item { display: flex; align-items: center; gap: 14px; }
.strip__ic { font-size: 1.8rem; }
.strip__item b { display: block; font-size: 1rem; }
.strip__item small { opacity: .85; font-size: .85rem; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__ic {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-light); color: var(--brand);
  display: grid; place-items: center; font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--body); margin-bottom: 14px; font-size: .97rem; }
.card ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .92rem; }
.card ul li { margin-bottom: 5px; }
.card__link { font-weight: 600; font-size: .95rem; }

/* ---------- Brand logos / appliances ---------- */
.brands { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brands span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 22px; font-weight: 600; color: var(--body); box-shadow: var(--shadow);
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.steps .grid { gap: 30px; }
.step { position: relative; padding-top: 12px; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 1.15rem;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: .95rem; color: var(--body); }

/* ---------- Why / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.checklist { list-style: none; margin: 22px 0 0; padding: 0; }
.checklist li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.checklist li i {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-light); color: var(--brand); font-style: normal; font-weight: 800;
  display: grid; place-items: center; font-size: .85rem; margin-top: 2px;
}
.checklist li b { color: var(--ink); display: block; }
.checklist li span { color: var(--body); font-size: .95rem; }

.media-box {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: var(--radius); color: #fff; padding: 40px;
  box-shadow: var(--shadow-lg);
}
.media-box h3 { color: #fff; font-size: 1.5rem; }
.media-box .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 26px; }
.media-box .stat-row b { font-size: 2rem; display: block; }
.media-box .stat-row small { opacity: .85; }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.quote__stars { color: #ffb400; margin-bottom: 12px; letter-spacing: 2px; }
.quote p { font-style: italic; color: var(--ink); }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote__av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-light); color: var(--brand);
  display: grid; place-items: center; font-weight: 700;
}
.quote__who b { display: block; color: var(--ink); font-size: .95rem; }
.quote__who small { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--bg-dark), #14304f);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c7d3e4; max-width: 620px; margin: 0 auto 26px; }
.cta-band .btn { margin: 6px; }

/* ---------- Page banner ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff; padding: 60px 0; text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner p { color: #d9e6ff; margin: 0; }
.crumbs { font-size: .9rem; color: #cfe0ff; margin-top: 14px; }
.crumbs a { color: #fff; }
.crumbs span { opacity: .6; margin: 0 6px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; margin-bottom: 18px; box-shadow: var(--shadow);
}
.info-card__ic {
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 12px;
  background: var(--brand-light); color: var(--brand);
  display: grid; place-items: center; font-size: 1.3rem;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p { margin: 0; color: var(--body); font-size: .96rem; }
.info-card a { font-weight: 600; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: .93rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--bg-soft);
  transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.form-success {
  display: none; background: #e7f7ee; color: #1f7a44; border: 1px solid #b9e6cc;
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600;
}
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); margin-top: 30px; }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 36px; font-size: 1.5rem; }
.prose h3 { margin-top: 26px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 30px; }
.prose .callout {
  background: var(--bg-soft); border-left: 4px solid var(--brand);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0;
}

/* ---------- FAQ ---------- */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 20px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink); padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brand); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--body); padding-bottom: 16px; margin: 0; font-size: .96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #aebccf; padding-top: 60px; }
.site-footer a { color: #cdd8e8; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: .93rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; font-size: .93rem; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: .93rem; }
.footer-contact i { color: var(--accent); font-style: normal; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; font-size: .95rem; font-weight: 700; color: #fff;
}
.footer-social a:hover { background: var(--brand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .87rem;
}
.footer-bottom nav a { margin-left: 18px; }

/* ---------- Floating call button ---------- */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: var(--ok); color: #fff; border-radius: 999px;
  padding: 14px 20px; font-weight: 700; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 9px;
}
.call-fab:hover { color: #fff; background: #178a49; transform: translateY(-2px); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px; box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 10px; border-radius: 8px; }
  .nav__cta { margin: 8px 0 0; }
  .nav { position: relative; flex-wrap: wrap; }
  .topbar__right { display: none; }
}
@media (max-width: 560px) {
  .grid--3, .grid--4, .form-row { grid-template-columns: 1fr; }
  .strip .wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}

/* ==========================================================================
   Conversion-focused components (lead-gen landing)
   ========================================================================== */

/* ---------- Offer / urgency bar ---------- */
.offer-bar {
  background: var(--accent); color: #fff; text-align: center;
  font-weight: 600; font-size: .93rem; padding: 9px 16px;
}
.offer-bar i { margin-right: 6px; }
.offer-bar strong { font-weight: 800; }
.offer-bar a { color: #fff; text-decoration: underline; }

/* ---------- Benefit chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chips span {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-weight: 600; font-size: .88rem; color: var(--ink);
  box-shadow: var(--shadow);
}
.chips i { color: var(--ok); }

/* ---------- Hero lead form ---------- */
.lead-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 28px 26px; position: relative; z-index: 2;
}
.lead-card__head { text-align: center; margin-bottom: 18px; }
.lead-card__head h3 { margin-bottom: 4px; font-size: 1.4rem; }
.lead-card__head p { color: var(--muted); font-size: .92rem; margin: 0; }
.lead-card .field { margin-bottom: 14px; }
.lead-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ok); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 5px 15px; border-radius: 999px; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .05em;
}
.lead-card .privacy-line { font-size: .8rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.lead-card .privacy-line i { color: var(--ok); }

/* ---------- Promise list (inside dark media boxes) ---------- */
.promise-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 15px; }
.promise-list li { display: flex; gap: 13px; align-items: flex-start; }
.promise-list i {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center; font-size: .95rem;
}
.promise-list b { color: #fff; display: block; line-height: 1.3; }
.promise-list span { opacity: .85; font-size: .9rem; }

/* ---------- Trust badge row ---------- */
.trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.trust-badges .tb {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; box-shadow: var(--shadow);
}
.trust-badges .tb i {
  font-size: 1.7rem; color: var(--brand); margin-bottom: 12px;
  background: var(--brand-light); width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center; margin-left: auto; margin-right: auto;
}
.trust-badges .tb b { display: block; color: var(--ink); margin-bottom: 3px; }
.trust-badges .tb small { color: var(--muted); font-size: .87rem; }

/* ---------- Appliance types ---------- */
.type-group { margin-bottom: 26px; }
.type-group > b { display: block; color: var(--ink); font-family: var(--heading); font-size: 1.1rem; margin-bottom: 12px; }
.type-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.type-chips span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-weight: 600; color: var(--body); font-size: .92rem;
}
.type-chips span i { color: var(--brand); }

/* ---------- Service areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas span {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 9px 16px; font-weight: 600; color: var(--body); font-size: .9rem;
}
.areas span i { color: var(--brand); margin-right: 6px; }

/* ---------- WhatsApp float ---------- */
.wa-fab {
  position: fixed; right: 18px; bottom: 80px; z-index: 60;
  background: #25d366; color: #fff; border-radius: 999px;
  padding: 14px 20px; font-weight: 700; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 9px;
}
.wa-fab:hover { color: #fff; background: #1eb457; transform: translateY(-2px); }

/* ---------- Sticky mobile call/WhatsApp bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    display: grid; grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 18px rgba(0,0,0,.14);
  }
  .mobile-bar a {
    padding: 14px; text-align: center; font-weight: 700; color: #fff;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .mobile-bar .m-call { background: var(--ok); }
  .mobile-bar .m-wa { background: #25d366; }
  .call-fab, .wa-fab { display: none; }
  body { padding-bottom: 52px; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}
