/* ============================================================
   No More Leaks — Plumbing (London)
   ============================================================ */

:root {
  --navy:        #0e2a47;
  --navy-2:      #143a63;
  --blue:        #1d74d0;
  --blue-dark:   #155aa6;
  --teal:        #14b8a6;
  --accent:      #ff7a1a;      /* warm CTA */
  --accent-dark: #e8630a;
  --green:       #25d366;      /* whatsapp */
  --green-dark:  #1da851;
  --ink:         #16222f;
  --body:        #435362;
  --muted:       #6c7b89;
  --line:        #e4e9ef;
  --bg:          #ffffff;
  --bg-soft:     #f5f8fc;
  --bg-navy:     #0e2a47;
  --star:        #ffb400;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 10px rgba(14,42,71,.06);
  --shadow:      0 12px 34px rgba(14,42,71,.12);
  --shadow-lg:   0 26px 60px rgba(14,42,71,.20);
  --maxw:        1160px;
  --font:        'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #cfe0f2; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block; font-weight: 700; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(29,116,208,.10); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section--navy .eyebrow { color: #7fc4ff; background: rgba(127,196,255,.14); }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1.02rem; font-family: inherit;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn--call    { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(255,122,26,.34); }
.btn--call:hover { background: var(--accent-dark); box-shadow: 0 14px 30px rgba(255,122,26,.42); }
.btn--wa      { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn--wa:hover { background: var(--green-dark); }
.btn--ghost   { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--dark    { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-2); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14,42,71,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: #fff; font-size: 1.16rem; letter-spacing: -.02em; }
.header .brand__ph { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); color: #cfe0f2; }
.header .brand__name b { color: #fff; }
.brand__logo {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
}
.brand__logo svg { width: 24px; height: 24px; }
.brand__logo-img { height: 46px; width: auto; flex: none; display: block; }
.footer .brand__logo-img { height: 44px; }
.brand small { display: block; font-size: .68rem; font-weight: 600; color: #9fb6d0; letter-spacing: .08em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: #e8f0fa; font-weight: 600; font-size: .98rem; position: relative; }
.nav a:hover, .nav a.active { color: #7fc4ff; }
.nav a.active::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:#7fc4ff; border-radius:2px; }

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone { display: flex; align-items: center; gap: 8px; font-weight: 800; color: #fff; font-size: 1.04rem; }
.header__phone svg { width: 18px; height: 18px; color: #7fc4ff; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: #fff; }
.burger svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #d7e6f7;
  background: var(--bg-navy) url("../images/hero-bg.jpg") center / cover no-repeat;
}
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(29,116,208,.30), transparent 60%),
    linear-gradient(100deg, rgba(7,20,37,.95) 0%, rgba(7,20,37,.86) 46%, rgba(7,20,37,.58) 100%);
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center; padding-top: 88px; padding-bottom: 96px;
}
.hero__copy { max-width: 620px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: #7fc4ff; }
.hero__sub { font-size: 1.18rem; color: #b9cee4; max-width: 520px; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; }
.hero__trust .stars { color: var(--star); letter-spacing: 2px; }
.hero__trust b { color: #fff; }
.hero__note { font-size: .95rem; color: #9fb6d0; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: 22px; box-shadow: var(--shadow-lg);
  aspect-ratio: 16/11; object-fit: cover;
}
.hero__badge {
  position: absolute; background: #fff; color: var(--ink); border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero__badge--tr { top: -22px; right: -14px; }
.hero__badge--bl { bottom: -22px; left: -18px; }
.hero__badge .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero__badge .ico svg { width: 22px; height: 22px; }
.hero__badge .g  { background: #eafaf2; color: var(--green-dark); }
.hero__badge .b  { background: #eaf3fd; color: var(--blue); }
.hero__badge strong { display: block; font-size: 1.16rem; color: var(--ink); line-height: 1; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.strip { background: #fff; border-bottom: 1px solid var(--line); }
.strip__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 26px; padding-bottom: 26px; }
.strip__item { text-align: center; }
.strip__item b { display: block; font-size: 1.7rem; color: var(--ink); font-weight: 800; letter-spacing: -.02em; }
.strip__item span { font-size: .9rem; color: var(--muted); }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(145deg, #eaf3fd, #dcecfb); color: var(--blue);
}
.card__ico svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--body); font-size: .98rem; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: 20px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 5/6; object-fit: cover; object-position: top; }
.about__sig { position: absolute; right: -14px; bottom: -18px; background:#fff; padding:14px 20px; border-radius:14px; box-shadow:var(--shadow); }
.about__sig b { font-size: 1.2rem; color: var(--ink); }
.about__sig span { font-size:.8rem; color: var(--muted); display:block; }
.checklist { display: grid; gap: 12px; margin: 22px 0 26px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 600; }
.checklist svg { width: 22px; height: 22px; color: var(--green-dark); flex: none; margin-top: 1px; }

/* ---------- Services list (services page) ---------- */
.svc { display: flex; gap: 18px; align-items: flex-start; padding: 22px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.svc__ico { width: 50px; height: 50px; border-radius: 13px; display:grid; place-items:center; flex:none; background: linear-gradient(145deg,#eaf3fd,#dcecfb); color: var(--blue); }
.svc__ico svg { width: 25px; height:25px; }
.svc h3 { margin-bottom: 5px; }
.svc p { margin: 0; font-size: .97rem; }

/* ---------- Pricing / guarantee band ---------- */
.price-card {
  background: linear-gradient(160deg, var(--navy), var(--navy-2)); color:#dbe8f6;
  border-radius: 22px; padding: 44px; box-shadow: var(--shadow); text-align:center;
}
.price-card .amount { font-size: 3.4rem; font-weight: 800; color:#fff; letter-spacing:-.03em; line-height:1; }
.price-card .amount span { font-size: 1.1rem; font-weight:600; color:#9fb6d0; }
.price-card h3 { color:#fff; }
.price-card ul { display:inline-grid; gap:10px; text-align:left; margin: 22px 0 28px; }
.price-card li { display:flex; gap:10px; align-items:center; }
.price-card li svg { width:20px; height:20px; color: var(--teal); flex:none; }

.guarantee { display:grid; grid-template-columns: auto 1fr; gap: 26px; align-items:center;
  background:#fff; border:1px solid var(--line); border-left: 5px solid var(--green);
  border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow-sm); }
.guarantee__seal { width: 92px; height:92px; border-radius:50%; flex:none; display:grid; place-items:center;
  background: radial-gradient(circle at 40% 30%, #eafaf2, #d6f5e4); color: var(--green-dark); border: 3px solid #bff0d4; }
.guarantee__seal svg { width: 46px; height:46px; }
.guarantee h3 { margin-bottom: 6px; }
.guarantee p { margin:0; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column;
}
.review .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 12px; font-size:1.05rem; }
.review p { font-style: italic; color: var(--ink); }
.review__by { display:flex; align-items:center; gap:12px; margin-top: auto; padding-top: 14px; }
.review__av { width:42px; height:42px; border-radius:50%; background: linear-gradient(145deg,var(--blue),var(--navy)); color:#fff; display:grid; place-items:center; font-weight:700; flex:none; }
.review__by b { color: var(--ink); font-size:.96rem; display:block; }
.review__by span { font-size:.8rem; color: var(--muted); }

.review-cta { display:flex; flex-wrap:wrap; gap: 16px; justify-content:center; margin-top: 40px; }
.badge-link { display:flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--line); border-radius: 14px; padding: 14px 22px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease; }
.badge-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.badge-link .stars { color: var(--star); font-size:.85rem; letter-spacing:1px; }
.badge-link b { color: var(--ink); display:block; }
.badge-link span { color: var(--muted); font-size:.82rem; }

/* ---------- Service area ---------- */
.areas { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 22px; }
.areas span { background:#fff; border:1px solid var(--line); color: var(--ink); font-weight:600; font-size:.92rem;
  padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.section--navy .areas span { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color:#dce9f7; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(150deg, var(--blue-dark), var(--navy)); color:#fff; overflow:hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 90% 10%, rgba(20,184,166,.35), transparent 60%); }
.cta-band .wrap { position: relative; text-align:center; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#cfe0f2; max-width: 560px; margin: 0 auto 26px; font-size:1.12rem; }
.cta-band .hero__cta { justify-content:center; }

/* ---------- Contact ---------- */
.contact__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items:start; }
.contact-item { display:flex; gap:16px; align-items:flex-start; padding: 20px 0; border-bottom:1px solid var(--line); }
.contact-item:last-child { border-bottom:0; }
.contact-item .ico { width:52px; height:52px; border-radius:13px; flex:none; display:grid; place-items:center; background: linear-gradient(145deg,#eaf3fd,#dcecfb); color: var(--blue); }
.contact-item .ico svg { width:25px; height:25px; }
.contact-item h4 { margin:0 0 3px; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); font-weight:700; }
.contact-item a, .contact-item p { font-size:1.22rem; font-weight:700; color: var(--ink); margin:0; }
.contact-item small { color: var(--muted); font-weight:500; font-size:.9rem; }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form label { display:block; font-weight:700; color: var(--ink); font-size:.9rem; margin: 14px 0 6px; }
.form input, .form select, .form textarea {
  width:100%; font-family:inherit; font-size:1rem; color: var(--ink);
  padding: 13px 15px; border:1.5px solid var(--line); border-radius: 11px; background:#fbfdff; transition: border .15s ease, box-shadow .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus { outline:0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29,116,208,.12); }
.form textarea { min-height: 120px; resize: vertical; }
.form .btn { margin-top: 20px; }
.form__note { font-size:.85rem; color: var(--muted); margin-top: 12px; text-align:center; }

/* ---------- Footer ---------- */
.footer { background: #0a2038; color: #9fb6d0; padding: 60px 0 30px; }
.footer__grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand { color:#fff; margin-bottom: 16px; display: flex; align-items: center; gap: 11px; }
.footer .brand small { color:#7f9ab5; }
.footer p { color:#9fb6d0; font-size:.96rem; }
.footer h4 { color:#fff; font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; }
.footer a { color:#b9cee4; display:block; padding: 5px 0; font-size:.96rem; }
.footer a:hover { color:#fff; }
.footer__bar { border-top:1px solid rgba(255,255,255,.10); margin-top: 40px; padding-top: 22px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px 20px; font-size:.86rem; color:#7f9ab5; }
.footer__bar span { white-space: nowrap; }
.footer__bar a { display: inline; padding: 0; }
.footer__contact a { display:flex; align-items:center; gap:10px; }
.footer__contact svg { width:17px; height:17px; color:#7fb0e6; flex:none; }

/* ---------- Floating WhatsApp button (mobile only) ---------- */
.wa-fab { display: none; }
.wa-fab svg { width: 32px; height: 32px; }

/* ---------- Page hero (services/contact) ---------- */
.pagehero { background: var(--bg-navy) url("../images/hero-bg.jpg") center / cover no-repeat; color:#cfe0f2; position:relative; overflow:hidden; padding: 70px 0 60px; }
.pagehero::before { content:""; position:absolute; inset:0;
  background:
    radial-gradient(700px 400px at 85% -20%, rgba(29,116,208,.26), transparent 60%),
    linear-gradient(100deg, rgba(7,20,37,.94) 0%, rgba(7,20,37,.86) 50%, rgba(7,20,37,.70) 100%); }
.pagehero .wrap { position:relative; }
.pagehero h1 { color:#fff; margin-bottom: 14px; }
.pagehero p { color:#b9cee4; font-size:1.15rem; max-width: 560px; margin:0; }
.crumbs { font-size:.86rem; color:#8fabc9; margin-bottom: 18px; }
.crumbs a { color:#8fabc9; }

/* ---------- Brand logo (SVG lockup) ---------- */
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; display: block; }
/* Logo placeholder — swap for the real logo when ready */
.brand__ph {
  width: 46px; height: 46px; flex: none; border: 2px dashed #b8c4d0; border-radius: 12px;
  display: grid; place-items: center; font-size: .58rem; font-weight: 800; letter-spacing: .08em;
  color: #8a99a8; background: #f2f6fa; text-transform: uppercase;
}
.footer .brand__ph { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); color: #9fb6d0; }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-size: 1.18rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.footer .brand__name b { color: #fff; }

/* ---------- Google Reviews widget ---------- */
.gwidget { max-width: 1000px; margin: 44px auto 0; }
.gwidget__top {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 30px; box-shadow: var(--shadow-sm);
}
.gwidget__brand { display: flex; align-items: center; gap: 16px; }
.gwidget__g { width: 46px; height: 46px; flex: none; }
.gwidget__brand h3 { margin: 0; font-size: 1.15rem; }
.gwidget__brand .stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }
.gwidget__score { display: flex; align-items: center; gap: 14px; }
.gwidget__score .num { font-size: 2.6rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.gwidget__score small { color: var(--muted); font-size: .9rem; }
.gwidget__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.greview {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column;
}
.greview__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.greview__av { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #fff; }
.greview__head b { color: var(--ink); font-size: .96rem; display: block; line-height: 1.2; }
.greview__head span { font-size: .8rem; color: var(--muted); }
.greview__g { position: absolute; top: 20px; right: 20px; width: 20px; height: 20px; opacity: .9; }
.greview .stars { color: var(--star); letter-spacing: 1px; font-size: .95rem; margin-bottom: 8px; }
.greview p { margin: 0; color: var(--ink); font-size: .95rem; }
.gwidget__foot { text-align: center; margin-top: 26px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; padding-bottom: 56px; }
  .hero__form .form { max-width: 480px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 420px; }
  .contact__grid { grid-template-columns: 1fr; gap: 34px; }
  .grid--3, .reviews { grid-template-columns: repeat(2,1fr); }
  .gwidget__grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav, .header__phone { display: none; }
  .burger { display: block; }
  /* Redundant with the sticky bottom Call/WhatsApp bar — hide so the brand lockup isn't cramped */
  .header__cta .btn { display: none; }

  .nav--open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 74px; left:0; right:0; background: var(--navy);
    border-bottom:1px solid rgba(255,255,255,.10); padding: 8px 22px 18px; box-shadow: var(--shadow);
  }
  .nav--open a { padding: 14px 0; border-bottom:1px solid rgba(255,255,255,.12); font-size:1.05rem; color:#e8f0fa; }

  .strip__row { grid-template-columns: repeat(2,1fr); gap: 22px 12px; }
  .grid--3, .grid--2, .reviews { grid-template-columns: 1fr; }
  .gwidget__grid { grid-template-columns: 1fr; }
  .gwidget__top { justify-content: center; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .price-card { padding: 32px 22px; }
  .guarantee { grid-template-columns: 1fr; text-align:center; justify-items:center; }
  .hero__badge--tr { top: -16px; right: 0; }
  .hero__badge--bl { bottom: -16px; left: 0; }

  .wa-fab {
    display: grid; place-items: center; position: fixed; right: 16px; bottom: 16px; z-index: 70;
    width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: #fff;
    box-shadow: 0 10px 26px rgba(37,211,102,.5);
  }
  .footer { padding-bottom: 96px; }  /* clear the floating WhatsApp button */
}
@media (max-width: 420px) {
  .hero__cta .btn { width: 100%; }
  .strip__item b { font-size: 1.4rem; }
}
