/* ─────────────────────────────────────────────────────────────────────
   css/seo.css — styles for the SEO components: breadcrumbs, FAQ blocks,
   comparison tables and the content layout used on the new pages.

   Scoped under .seo-* so nothing here can collide with custom.css or
   home.css. Uses the site's existing orange (#f14902 / orange) accent.
   ───────────────────────────────────────────────────────────────────── */

:root {
  --seo-accent:      #f14902;
  --seo-accent-soft: #fff4ef;
  --seo-ink:         #1c2430;
  --seo-muted:       #5b6675;
  --seo-line:        #e3e7ec;
  --seo-bg-soft:     #f7f9fb;
  --seo-good:        #1a7f4b;
  --seo-bad:         #b4232a;
}

.seo-wrap { max-width: 940px; margin: 0 auto; padding: 0 15px; }

/* ── Breadcrumbs ───────────────────────────────────────────────────── */
.seo-crumbs { background: var(--seo-bg-soft); border-bottom: 1px solid var(--seo-line); padding: 10px 0; }
.seo-crumbs ol { list-style: none; margin: 0; padding: 0; font-size: 13px; }
.seo-crumbs li { display: inline; color: var(--seo-muted); }
.seo-crumbs li + li::before { content: "›"; margin: 0 8px; color: #aab3bd; }
.seo-crumbs a { color: var(--seo-muted); text-decoration: none; }
.seo-crumbs a:hover { color: var(--seo-accent); text-decoration: underline; }
.seo-crumbs [aria-current="page"] span { color: var(--seo-ink); font-weight: 600; }

/* ── Section + typography ──────────────────────────────────────────── */
.seo-section { padding: 48px 0; }
.seo-section--soft { background: var(--seo-bg-soft); }
.seo-section h2 { font-size: 28px; line-height: 1.25; color: var(--seo-ink); margin: 0 0 14px; font-weight: 700; }
.seo-section h3 { font-size: 20px; line-height: 1.3; color: var(--seo-ink); margin: 28px 0 10px; font-weight: 700; }
.seo-section p, .seo-section li { font-size: 16px; line-height: 1.7; color: #35404e; }
.seo-lead { font-size: 18px; line-height: 1.65; color: var(--seo-muted); margin-bottom: 22px; }

.seo-hero { background: linear-gradient(180deg, #fff 0%, var(--seo-bg-soft) 100%); padding: 46px 0 34px; border-bottom: 1px solid var(--seo-line); }
.seo-hero h1 { font-size: 34px; line-height: 1.22; font-weight: 700; color: var(--seo-ink); margin: 0 0 14px; }
.seo-hero .seo-lead { max-width: 760px; }
@media (max-width: 600px) { .seo-hero h1 { font-size: 26px; } .seo-section h2 { font-size: 23px; } }

/* ── Buttons ───────────────────────────────────────────────────────── */
.seo-btn {
  display: inline-block; padding: 12px 22px; border-radius: 8px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  margin: 6px 8px 6px 0; transition: .15s ease; border: 2px solid transparent;
}
.seo-btn--primary { background: var(--seo-accent); color: #fff; }
.seo-btn--primary:hover { background: #d13d00; color: #fff; text-decoration: none; }
.seo-btn--ghost { border-color: var(--seo-accent); color: var(--seo-accent); background: #fff; }
.seo-btn--ghost:hover { background: var(--seo-accent-soft); color: var(--seo-accent); text-decoration: none; }

/* ── Key-fact callout ──────────────────────────────────────────────── */
.seo-callout {
  border-left: 4px solid var(--seo-accent); background: var(--seo-accent-soft);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 22px 0;
}
.seo-callout p:last-child { margin-bottom: 0; }
.seo-callout strong { color: var(--seo-ink); }

/* ── Comparison tables ─────────────────────────────────────────────── */
.seo-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 22px 0; }
.seo-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 15px; background: #fff; }
.seo-table th, .seo-table td { padding: 12px 14px; border: 1px solid var(--seo-line); text-align: left; vertical-align: top; line-height: 1.5; }
.seo-table thead th { background: var(--seo-ink); color: #fff; font-weight: 600; font-size: 14px; }
.seo-table tbody tr:nth-child(even) { background: #fafbfc; }
.seo-table th[scope="row"] { font-weight: 600; color: var(--seo-ink); background: var(--seo-bg-soft); }
.seo-table .is-us { background: var(--seo-accent-soft) !important; }
.seo-table thead .is-us { background: var(--seo-accent); }
.seo-yes { color: var(--seo-good); font-weight: 600; }
.seo-no  { color: var(--seo-bad);  font-weight: 600; }
.seo-table caption { caption-side: bottom; padding-top: 10px; font-size: 13px; color: var(--seo-muted); text-align: left; }

/* ── Card grid ─────────────────────────────────────────────────────── */
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 24px 0; }
.seo-card { border: 1px solid var(--seo-line); border-radius: 10px; padding: 20px; background: #fff; }
.seo-card h3 { margin-top: 0; font-size: 18px; }
.seo-card p { font-size: 15px; color: var(--seo-muted); margin-bottom: 10px; }
.seo-card a { color: var(--seo-accent); font-weight: 600; text-decoration: none; }
.seo-card a:hover { text-decoration: underline; }

/* ── Pros / cons ───────────────────────────────────────────────────── */
.seo-proscons { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin: 22px 0; }
.seo-proscons > div { border-radius: 10px; padding: 18px 20px; border: 1px solid var(--seo-line); }
.seo-pros { background: #f2fbf6; border-color: #cfe9db !important; }
.seo-cons { background: #fdf4f4; border-color: #f0d6d7 !important; }
.seo-proscons h4 { margin: 0 0 10px; font-size: 16px; font-weight: 700; color: var(--seo-ink); }
.seo-proscons ul { margin: 0; padding-left: 18px; }
.seo-proscons li { font-size: 15px; margin-bottom: 7px; }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.seo-faq { padding: 48px 0; background: var(--seo-bg-soft); border-top: 1px solid var(--seo-line); }
.seo-faq__title { font-size: 28px; font-weight: 700; color: var(--seo-ink); margin: 0 0 8px; }
.seo-faq__lead { color: var(--seo-muted); margin-bottom: 24px; font-size: 16px; }
.seo-faq__lead a { color: var(--seo-accent); font-weight: 600; }
.seo-faq__group { font-size: 19px; font-weight: 700; color: var(--seo-ink); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--seo-accent); }
.seo-faq__group:first-child { margin-top: 0; }

.seo-faq__item { background: #fff; border: 1px solid var(--seo-line); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.seo-faq__q {
  cursor: pointer; padding: 16px 46px 16px 18px; font-weight: 600;
  font-size: 16px; color: var(--seo-ink); list-style: none; position: relative;
  line-height: 1.45;
}
.seo-faq__q::-webkit-details-marker { display: none; }
.seo-faq__q::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--seo-accent); line-height: 1;
}
.seo-faq__item[open] .seo-faq__q::after { content: "−"; }
.seo-faq__item[open] .seo-faq__q { background: var(--seo-accent-soft); }
.seo-faq__q:hover { background: var(--seo-accent-soft); }
.seo-faq__a { padding: 4px 18px 18px; }
.seo-faq__a p { margin: 0; font-size: 15.5px; line-height: 1.7; color: #35404e; }
.seo-faq__a a { color: var(--seo-accent); font-weight: 600; }

.seo-faq__more { margin-top: 18px; }
.seo-faq__more a { color: var(--seo-accent); font-weight: 600; font-size: 16px; text-decoration: none; }
.seo-faq__more a:hover { text-decoration: underline; }
.seo-faq__cta { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--seo-line); }

/* ── Table of contents ─────────────────────────────────────────────── */
.seo-toc { border: 1px solid var(--seo-line); border-radius: 10px; padding: 18px 22px; background: #fff; margin: 26px 0; }
.seo-toc h2 { font-size: 15px !important; text-transform: uppercase; letter-spacing: .06em; color: var(--seo-muted); margin: 0 0 12px !important; }
.seo-toc ol { margin: 0; padding-left: 20px; }
.seo-toc li { margin-bottom: 7px; font-size: 15px; }
.seo-toc a { color: var(--seo-accent); text-decoration: none; }
.seo-toc a:hover { text-decoration: underline; }

/* ── Verdict box ───────────────────────────────────────────────────── */
.seo-verdict { border: 2px solid var(--seo-accent); border-radius: 10px; padding: 22px 24px; background: #fff; margin: 28px 0; }
.seo-verdict h3 { margin-top: 0; }
.seo-verdict p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────────────────────────
   WhatsApp dock — replaces the third-party getbutton.io widget.
   Now bottom-RIGHT: Tawk.to has been removed, so the conventional (and
   most-clicked) corner is free. Larger, always labelled, and it pulses
   again periodically rather than once.
   ───────────────────────────────────────────────────────────────────── */
.wa-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  align-items: flex-end;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-family: "Open Sans", -apple-system, system-ui, sans-serif;
}

/* ── The button ──────────────────────────────────────────────────────── */
.wa-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  padding: 16px 24px 16px 19px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5), 0 3px 10px rgba(0, 0, 0, .2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.wa-fab:hover, .wa-fab:focus-visible {
  background: #1EBE5A;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, .46), 0 3px 8px rgba(0, 0, 0, .2);
  text-decoration: none !important;
}
.wa-fab:focus-visible { outline: 3px solid #0b5c2e; outline-offset: 3px; }
.wa-fab svg { flex: 0 0 auto; }

/* Gentle pulse to draw the eye once, then stop. Not a permanent animation:
   a button that never stops moving reads as an advert and gets ignored. */
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.wa-fab { position: relative; }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── The prompt bubble ───────────────────────────────────────────────── */
.wa-nudge {
  position: relative;
  max-width: 300px;
  background: #fff;
  border: 1px solid #e3e7ec;
  border-radius: 14px 14px 4px 14px;
  padding: 16px 18px 16px 16px;
  box-shadow: 0 10px 30px -8px rgba(21, 30, 41, .28);
  opacity: 0;
  transform: translateY(10px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .22s ease, transform .22s ease;
}
.wa-dock.is-open .wa-nudge { opacity: 1; transform: translateY(0) scale(1); }

.wa-nudge__text {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #1c2430;
  padding-right: 14px;
}
.wa-nudge__cta {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: #128C4A !important;
  text-decoration: none !important;
  border-bottom: 2px solid #25D366;
  padding-bottom: 1px;
}
.wa-nudge__cta:hover { color: #0e6e3a !important; }
.wa-nudge__close {
  position: absolute;
  top: 6px; right: 8px;
  background: none; border: 0;
  font-size: 22px; line-height: 1;
  color: #98a2ae; cursor: pointer;
  padding: 4px 7px; border-radius: 6px;
}
.wa-nudge__close:hover { color: #1c2430; background: #f2f4f6; }
.wa-nudge__close:focus-visible { outline: 2px solid #25D366; outline-offset: 1px; }

/* ── Inline WhatsApp CTA, used inside the FAQ block ───────────────────── */
.wa-inline {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: #f0fbf4;
  border: 1px solid #cdeddb;
  border-left: 4px solid #25D366;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 26px 0 0;
}
.wa-inline__text { flex: 1 1 260px; margin: 0; font-size: 15.5px; line-height: 1.6; color: #1c2430; }
.wa-inline__text strong { display: block; margin-bottom: 3px; }
.wa-inline__btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff !important;
  padding: 11px 20px; border-radius: 8px;
  font-weight: 700; font-size: 15px; text-decoration: none !important;
  white-space: nowrap;
}
.wa-inline__btn:hover { background: #1EBE5A; color: #fff !important; }
.wa-inline__btn:focus-visible { outline: 3px solid #0b5c2e; outline-offset: 2px; }

/* ── Small screens: keep the button, drop the label ───────────────────── */
@media (max-width: 600px) {
  .wa-dock { right: 14px; bottom: 78px; gap: 10px; }
  .wa-fab { padding: 14px; }
  .wa-fab__label { display: none; }
  .wa-nudge { max-width: calc(100vw - 90px); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab, .wa-nudge { transition: none; }
  .wa-fab::before { animation: none; }
  .wa-fab:hover { transform: none; }
}

/* ─────────────────────────────────────────────────────────────────────
   Funnel — get-started.php
   ───────────────────────────────────────────────────────────────────── */
.fn { max-width: 720px; margin: 0 auto; }

/* Progress: shows how short it is, which is the point. */
.fn-progress {
  display: flex; list-style: none; margin: 0 0 32px; padding: 0;
  counter-reset: fnstep; gap: 6px;
}
.fn-progress li {
  flex: 1; position: relative; padding-top: 26px; text-align: center;
  font-size: 12px; color: var(--seo-muted); line-height: 1.3;
}
.fn-progress li::before {
  counter-increment: fnstep; content: counter(fnstep);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 2px solid var(--seo-line); color: var(--seo-muted);
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
}
.fn-progress li::after {
  content: ""; position: absolute; top: 9px; left: 0; right: 0;
  height: 2px; background: var(--seo-line); z-index: -1;
}
.fn-progress li.is-current::before { border-color: var(--seo-accent); color: var(--seo-accent); }
.fn-progress li.is-current { color: var(--seo-ink); font-weight: 600; }
.fn-progress li.is-done::before { background: var(--seo-accent); border-color: var(--seo-accent); color: #fff; content: "\2713"; }
@media (max-width: 560px) { .fn-progress li span { display: none; } .fn-progress li { padding-top: 22px; } }

/* Steps */
.fn-step { display: none; border: 0; padding: 0; margin: 0; min-width: 0; }
.fn-step.is-active { display: block; animation: fnIn .28s ease; }
@keyframes fnIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fn-q {
  font-size: 25px; font-weight: 700; color: var(--seo-ink);
  line-height: 1.25; margin: 0 0 8px; padding: 0; float: none; width: auto;
}
.fn-help { font-size: 15.5px; color: var(--seo-muted); margin: 0 0 22px; line-height: 1.6; }
.fn-label { display: block; font-size: 14px; font-weight: 600; color: var(--seo-ink); margin: 20px 0 7px; }
.fn-opt { font-weight: 400; color: var(--seo-muted); }
.fn-note { font-size: 13px; color: var(--seo-muted); }

.fn-input {
  width: 100%; padding: 13px 15px; font-size: 16px;   /* 16px stops iOS zooming on focus */
  border: 2px solid var(--seo-line); border-radius: 8px;
  font-family: inherit; color: var(--seo-ink); background: #fff;
}
.fn-input:focus { outline: none; border-color: var(--seo-accent); }
.fn-prefix { display: flex; align-items: center; gap: 8px; }
.fn-prefix span { font-size: 19px; font-weight: 700; color: var(--seo-muted); }
.fn-prefix .fn-input { max-width: 170px; }

/* Chips */
.fn-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.fn-chips.is-error { outline: 2px dashed var(--seo-bad); outline-offset: 8px; border-radius: 8px; }
.fn-chip { position: relative; margin: 0; cursor: pointer; }
.fn-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.fn-chip span {
  display: inline-block; padding: 12px 18px; border-radius: 999px;
  border: 2px solid var(--seo-line); background: #fff;
  font-size: 15px; font-weight: 600; color: var(--seo-ink);
  transition: .15s ease;
}
.fn-chip:hover span { border-color: var(--seo-accent); background: var(--seo-accent-soft); }
.fn-chip input:checked + span { border-color: var(--seo-accent); background: var(--seo-accent); color: #fff; }
.fn-chip input:focus-visible + span { outline: 3px solid var(--seo-accent); outline-offset: 3px; }

/* Driver counter */
.fn-counter { display: flex; align-items: center; gap: 12px; margin: 8px 0 18px; }
.fn-cbtn {
  width: 52px; height: 52px; border-radius: 12px; font-size: 26px; line-height: 1;
  border: 2px solid var(--seo-line); background: #fff; color: var(--seo-accent);
  cursor: pointer; font-weight: 700;
}
.fn-cbtn:hover { border-color: var(--seo-accent); background: var(--seo-accent-soft); }
.fn-cbtn:focus-visible { outline: 3px solid var(--seo-accent); outline-offset: 2px; }
.fn-cval {
  width: 116px; height: 52px; text-align: center;
  font-size: 26px; font-weight: 700; color: var(--seo-ink);
  border: 2px solid var(--seo-line); border-radius: 12px;
  font-variant-numeric: tabular-nums; -moz-appearance: textfield;
}
.fn-cval::-webkit-outer-spin-button, .fn-cval::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.fn-cval:focus { outline: none; border-color: var(--seo-accent); }
.fn-live {
  display: block; font-size: 16px; color: var(--seo-ink);
  background: var(--seo-accent-soft); border-radius: 8px; padding: 14px 18px;
}

/* Result */
.fn-figure {
  background: var(--seo-ink); color: #fff; border-radius: 12px;
  padding: 26px 28px; text-align: center;
}
.fn-figure__n {
  display: block; font-size: 46px; font-weight: 800; line-height: 1;
  letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.fn-figure__l { display: block; margin-top: 9px; font-size: 14px; color: #b8c2ce; }
.fn-save {
  background: #ecf7f1; border: 1px solid #cbe6d8; border-left: 4px solid var(--seo-good);
  border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 18px 0; font-size: 16px; line-height: 1.6;
}
.fn-save--neutral { background: var(--seo-bg-soft); border-color: var(--seo-line); border-left-color: var(--seo-muted); }
.fn-honest {
  background: var(--seo-accent-soft); border-left: 4px solid var(--seo-accent);
  border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 18px 0; font-size: 15.5px; line-height: 1.6;
}
.fn-rh { font-size: 18px; font-weight: 700; color: var(--seo-ink); margin: 26px 0 8px; }
.fn-rp { font-size: 16px; line-height: 1.7; color: #35404e; margin: 0; }
.fn-rp a, .fn-honest a { color: var(--seo-accent); font-weight: 600; }

.fn-ask { margin-top: 34px; padding-top: 28px; border-top: 2px solid var(--seo-line); }
.fn-ask h3 { font-size: 21px; font-weight: 700; color: var(--seo-ink); margin: 0 0 6px; }
.fn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
@media (max-width: 560px) { .fn-grid { grid-template-columns: 1fr; } .fn-q { font-size: 21px; } }

.fn-nav { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.fn-nav .seo-btn { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .fn-step.is-active { animation: none; }
  .fn-chip span { transition: none; }
}

.fn-error {
  max-width: 720px; margin: 0 auto 26px;
  background: #fdf1f1; border: 1px solid #f0d6d7; border-left: 4px solid var(--seo-bad);
  border-radius: 0 8px 8px 0; padding: 16px 20px;
}
.fn-error strong { color: var(--seo-bad); display: block; margin-bottom: 4px; }
.fn-error p { margin: 0; font-size: 15.5px; line-height: 1.6; color: #35404e; }
.fn-error a { color: var(--seo-accent); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────
   Image sizing safety net.

   width/height attributes are now present on every image so the browser
   can reserve space and avoid layout shift. Those attributes must stay
   aspect-ratio HINTS, not hard sizes — otherwise an image declared at its
   natural 1799px renders at 1799px. This is what broke the logo on the
   29 pages using nav.php, which (unlike header.php) had no constraint.
   ───────────────────────────────────────────────────────────────────── */
img { max-width: 100%; height: auto; }

/* The logo is a fixed-size brand element, so it opts out. */
.navbar-brand img { width: 180px; height: 60px; object-fit: contain; }
@media (max-width: 400px) { .navbar-brand img { width: 110px; height: 60px; } }

/* ─────────────────────────────────────────────────────────────────────
   Sticky mobile action bar.

   Most of this site's traffic is on a phone, and on a phone the single
   floating button competes with the page. A fixed bar puts WhatsApp and
   the phone number permanently in the thumb zone. Tawk.to used to occupy
   this space; it has been removed.
   ───────────────────────────────────────────────────────────────────── */
.wa-bar { display: none; }

@media (max-width: 760px) {
  .wa-bar {
    display: grid; grid-template-columns: 1.35fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9997;
    background: #fff; border-top: 1px solid var(--seo-line);
    box-shadow: 0 -6px 24px -10px rgba(21,30,41,.3);
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom)); gap: 9px;
  }
  .wa-bar a {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 10px; border-radius: 10px;
    font-weight: 700; font-size: 15.5px; text-decoration: none !important;
  }
  .wa-bar__wa { background: #25D366; color: #fff !important; }
  .wa-bar__wa:active { background: #1EBE5A; }
  .wa-bar__call { background: #F3F5F8; color: #1c2430 !important; border: 1px solid var(--seo-line); }
  .wa-bar a:focus-visible { outline: 3px solid #0b5c2e; outline-offset: 2px; }

  /* Stop the bar covering the end of the page. */
  body { padding-bottom: 74px; }

  /* The floating button sits above the bar rather than on top of it. */
  .wa-dock { bottom: 84px; }
  .wa-fab__label { display: none; }
}

/* Inline WhatsApp button used in hero / CTA rows */
.wa-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 10px;
  background: #25D366; color: #fff !important;
  font-size: 16.5px; font-weight: 700; text-decoration: none !important;
  border: 2px solid transparent; transition: .16s;
  box-shadow: 0 8px 26px -8px rgba(37,211,102,.75);
}
.wa-hero-btn:hover { background: #1EBE5A; transform: translateY(-2px); color: #fff !important; }
.wa-hero-btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* Green WhatsApp button in the header */
.mh-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 15px; border-radius: 9px; margin-left: 6px;
  background: #25D366; color: #fff !important;
  font-weight: 700; font-size: 14.5px; text-decoration: none !important;
  white-space: nowrap; transition: background .15s;
}
.mh-wa:hover { background: #1EBE5A; color: #fff !important; }
.mh-wa:focus-visible { outline: 3px solid #0b5c2e; outline-offset: 2px; }
@media (max-width: 1080px) { .mh-wa { display: flex; justify-content: center; margin: 10px 0 0; padding: 15px; font-size: 16px; } }
