/* =========================================================
   MrTrashLondon — Design System v2
   Soft green · Roboto · real photography · mobile-first
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400&display=swap');

:root {
  --green-900: #18402a;
  --green-800: #245539;
  --green-700: #2f6b48;
  --green-600: #3d8159;
  --green-500: #4ea374;   /* primary */
  --green-400: #74c096;
  --green-300: #a3d8bd;
  --green-200: #cdeddc;
  --green-100: #e7f6ee;
  --green-50:  #f3fbf7;

  --accent: #2f9e5f;
  --accent-dark: #237a49;

  --ink: #15241c;
  --body: #3f4d46;
  --muted: #76857d;
  --line: #e4ece8;
  --bg: #ffffff;
  --bg-soft: #f3fbf7;

  --warn: #e08a2b;
  --gold: #f5b301;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(24,64,42,.06), 0 2px 6px rgba(24,64,42,.06);
  --shadow: 0 8px 24px rgba(24,64,42,.10);
  --shadow-lg: 0 24px 60px rgba(24,64,42,.18);

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 132px;

  --font: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
/* CRITICAL: every inline icon gets a sane default size so SVGs never balloon */
svg { display: block; width: 20px; height: 20px; flex: none; }
a { color: var(--accent-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-800); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.14; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.28rem; }
p { margin: 0; }
strong { color: var(--ink); font-weight: 700; }
:focus-visible { outline: 3px solid var(--green-400); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--green-200); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(54px, 7vw, 96px) 0; }
.section--soft { background: var(--bg-soft); }
.section--green { background: linear-gradient(155deg, var(--green-700), var(--green-900)); color: #e6f4ec; }
.section--green h2, .section--green h3 { color: #fff; }
.center { text-align: center; }
.sec-head { max-width: 680px; margin: 0 auto clamp(34px, 5vw, 52px); }
.sec-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--green-100);
  padding: 7px 15px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.eyebrow svg { width: 16px; height: 16px; }
.section--green .eyebrow { color: #d3f0e0; background: rgba(255,255,255,.12); }
.lead { font-size: 1.13rem; color: var(--body); }
.section--green .lead, .section--green p { color: #cfe7d8; }
.tagline-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-size: 1rem; font-weight: 700; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px rgba(47,158,95,.32); }
.btn-primary:hover { background: var(--green-600); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47,158,95,.42); }
.btn-ghost { background: #fff; color: var(--green-800); border-color: var(--green-300); }
.btn-ghost:hover { background: var(--green-50); color: var(--green-900); border-color: var(--green-400); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--green-800); }
.btn-white:hover { background: var(--green-50); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 22px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1fbe5b; color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.14); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: saturate(150%) blur(10px); border-bottom: 1px solid var(--line); }
.topbar { background: var(--green-800); color: #d7efe0; font-size: .84rem; }
.topbar .container { display: flex; gap: 18px; align-items: center; justify-content: space-between; padding-block: 7px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 500; }
.topbar-left { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; }
.topbar-badge { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: #b6eccd; }
.topbar-badge svg { width: 15px; height: 15px; }

.navbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 13px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; font-size: 1.3rem; color: var(--green-900); letter-spacing: -.02em; }
.brand:hover { color: var(--green-900); }
.brand-mark { width: 44px; height: 44px; }
.brand b { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li > a { display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px; border-radius: var(--radius-pill); color: var(--ink); font-weight: 500; font-size: .98rem; }
.nav-links > li > a:hover, .nav-links > li > a[aria-current="page"] { background: var(--green-100); color: var(--green-800); }
.nav-links .chev { width: 15px; height: 15px; transition: transform .2s var(--ease); }

.has-menu { position: relative; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s var(--ease); }
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-menu:hover .chev { transform: rotate(180deg); }
.dropdown a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--ink); font-size: .95rem; font-weight: 500; }
.dropdown a:hover { background: var(--green-50); color: var(--green-800); }
.dropdown a svg { width: 20px; height: 20px; color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--green-900); font-size: 1.04rem; }
.nav-cta-phone svg { width: 20px; height: 20px; color: var(--accent); }
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--green-50); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 12px; cursor: pointer; font-family: inherit; font-weight: 600; font-size: .9rem; color: var(--green-900); }
.lang-btn:hover { background: var(--green-100); border-color: var(--green-300); }
.lang-btn svg { width: 17px; height: 17px; }
.lang-btn svg:first-child { color: var(--accent-dark); }
.lang .dropdown.lang-menu { left: auto; right: 0; min-width: 160px; }
.lang-menu a { font-weight: 600; }
.lang-menu a[aria-current="true"] { background: var(--green-50); color: var(--green-800); }
.nav-toggle { display: none; background: var(--green-100); border: none; border-radius: 12px; width: 48px; height: 48px; cursor: pointer; align-items: center; justify-content: center; color: var(--green-800); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero (image) ---------- */
.hero { position: relative; background: radial-gradient(1100px 500px at 88% -10%, var(--green-100), transparent 60%), #fff; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; padding-block: clamp(42px, 6vw, 84px); }
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { color: var(--accent); }
.hero-sub { font-size: 1.16rem; color: var(--body); max-width: 52ch; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 8px 14px; font-size: .85rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }
.hero-badge svg { width: 17px; height: 17px; color: var(--accent); }

.hero-media { position: relative; }
.hero-media .img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero-float.price { left: -18px; bottom: 26px; }
.hero-float.rating { right: -14px; top: 26px; }
.hero-float .big { font-size: 1.7rem; font-weight: 900; color: var(--green-800); line-height: 1; }
.hero-float .lbl { font-size: .76rem; color: var(--muted); font-weight: 600; }
.hero-float .stars { display: flex; gap: 2px; color: var(--gold); }
.hero-float .stars svg { width: 16px; height: 16px; }
.hero-float .badge-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--green-100); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; }
.hero-float .badge-ico svg { width: 24px; height: 24px; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 14px 38px; justify-content: center; padding-block: 18px; }
.trust-pill { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink); font-size: .92rem; }
.trust-pill svg { width: 22px; height: 22px; color: var(--accent); }

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

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-200); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .98rem; }

.icon-badge { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--green-100); color: var(--accent-dark); margin-bottom: 16px; }
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge--solid { background: var(--accent); color: #fff; }

/* service card with photo */
.service-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.service-card .sc-img { aspect-ratio: 16/10; overflow: hidden; background: var(--green-100); }
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.service-card:hover .sc-img img { transform: scale(1.05); }
.service-card .sc-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card .sc-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--green-100); color: var(--accent-dark); display: inline-flex; align-items: center; justify-content: center; margin: -46px 0 14px; position: relative; box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--line); }
.service-card .sc-ico svg { width: 24px; height: 24px; color: var(--accent-dark); }
.service-card h3 { margin-bottom: 8px; font-size: 1.18rem; }
.service-card p { font-size: .96rem; }
.service-card .card-link { margin-top: auto; padding-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--accent-dark); }
.service-card .card-link svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* feature */
.feature { display: flex; gap: 15px; align-items: flex-start; }
.feature .icon-badge { flex: none; width: 50px; height: 50px; margin: 0; }
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { font-size: .95rem; }

/* steps */
.step .num { width: 52px; height: 52px; border-radius: 15px; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.35rem; margin-bottom: 16px; }
.section--green .step .num { background: rgba(255,255,255,.16); }

/* ---------- Media / image blocks ---------- */
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-split img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--green-100); color: var(--accent-dark); font-weight: 700; font-size: .82rem; padding: 6px 13px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.media-tag svg { width: 16px; height: 16px; }

/* before / after */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ba-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.ba-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.ba-item .ba-label { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.95); color: var(--green-800); font-weight: 800; font-size: .85rem; padding: 6px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.ba-item.after .ba-label { background: var(--accent); color: #fff; }

/* ---------- Load-size pricing ---------- */
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.load-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 14px 20px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.load-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-200); }
.load-img { background: var(--green-50); border-radius: var(--radius-sm); padding: 10px; margin-bottom: 14px; }
.load-img img { width: 100%; height: auto; }
.load-card h3 { font-size: 1.02rem; margin-bottom: 3px; }
.load-card p { font-size: .85rem; color: var(--muted); }

/* ---------- Coverage illustration ---------- */
.coverage-figure { max-width: 820px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; }
.coverage-figure img { width: 100%; height: auto; display: block; }

/* ---------- Reviews ---------- */
.reviews-rating { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 8px; }
.reviews-rating .rr-stars { display: flex; gap: 3px; color: var(--gold); }
.reviews-rating .rr-stars svg { width: 26px; height: 26px; }
.reviews-rating .rr-line { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.reviews-rating .rr-line b { color: var(--green-800); }
.reviews-rating .rr-link { font-size: .9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; display: flex; flex-direction: column; }
.review-card .stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--gold); }
.review-card .stars svg { width: 17px; height: 17px; }
.review-card blockquote { font-size: .97rem; color: var(--ink); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.review-card .who { display: flex; align-items: center; gap: 11px; }
.review-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green-100); color: var(--green-800); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; flex: none; }
.review-card .who b { color: var(--ink); display: block; line-height: 1.2; font-size: .92rem; }
.review-card .who span { font-size: .8rem; color: var(--muted); }
.review-src { margin-left: auto; }
.review-src svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Coverage board (zone visualisation) ---------- */
.coverage-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.coverage-board .zone-card:first-child { grid-column: span 1; }
.zone-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.zone-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-300); }
.zone-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.zone-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--green-100); color: var(--accent-dark); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.zone-ico svg { width: 22px; height: 22px; }
.zone-name { flex: 1; min-width: 0; }
.zone-name h3 { font-size: 1.1rem; line-height: 1.2; }
.zone-meta { font-size: .8rem; color: var(--muted); font-weight: 600; }
.zone-arrow { color: var(--green-300); transition: transform .2s var(--ease), color .2s; }
.zone-arrow svg { width: 20px; height: 20px; }
.zone-card:hover .zone-arrow { color: var(--accent); transform: translateX(3px); }
.zone-codes { display: flex; flex-wrap: wrap; gap: 6px; }
.zcode { font-size: .78rem; font-weight: 700; color: var(--green-800); background: var(--green-50); border: 1px solid var(--green-100); border-radius: 6px; padding: 3px 8px; line-height: 1.3; }
@media (max-width: 880px) { .coverage-board { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .coverage-board { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 900; color: #fff; line-height: 1; }
.stat span { color: var(--green-200); font-size: .94rem; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips.center { justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); color: var(--ink); padding: 8px 15px; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 600; transition: all .18s var(--ease); }
a.chip:hover { border-color: var(--green-400); background: var(--green-50); color: var(--green-800); transform: translateY(-2px); }
.chip svg { width: 14px; height: 14px; color: var(--accent); }
.section--green .chip { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #eaf6ef; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote-card .stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.quote-card .stars svg { width: 20px; height: 20px; }
.quote-card blockquote { font-size: 1.04rem; color: var(--ink); margin-bottom: 18px; line-height: 1.55; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-200); color: var(--green-800); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.quote-card .who b { color: var(--ink); display: block; line-height: 1.2; }
.quote-card .who span { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; padding: 19px 22px; font-size: 1.05rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q:hover { color: var(--accent-dark); }
.faq-q .ico { width: 26px; height: 26px; flex: none; color: var(--accent-dark); transition: transform .25s var(--ease); }
.faq-q[aria-expanded="true"] .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 22px 22px; color: var(--body); }
.faq-q[aria-expanded="true"] + .faq-a { max-height: 420px; }

/* ---------- Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: start; }
.info-list { display: grid; gap: 16px; }
.info-row { display: flex; gap: 15px; align-items: flex-start; }
.info-row .icon-badge { flex: none; width: 50px; height: 50px; margin: 0; }
.info-row b { color: var(--ink); display: block; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 17px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 7px; font-size: .94rem; }
.field label .req { color: var(--warn); }
.field input, .field select, .field textarea { width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink); padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--green-50); transition: border-color .2s, box-shadow .2s, background .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-400); background: #fff; box-shadow: 0 0 0 4px rgba(78,163,116,.15); }
.field textarea { resize: vertical; min-height: 118px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-alert { display: none; border-radius: var(--radius); padding: 16px 18px; font-weight: 600; margin-bottom: 18px; align-items: center; gap: 11px; }
.form-alert svg { width: 24px; height: 24px; flex: none; }
.form-alert.show { display: flex; }
.form-alert.ok { background: var(--green-100); border: 1px solid var(--green-300); color: var(--green-900); }
.form-alert.ok svg { color: var(--accent-dark); }
.form-alert.err { background: #fdecea; border: 1px solid #f5c6c0; color: #a3271b; }
.form-alert.err svg { color: #c0392b; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: linear-gradient(160deg, var(--green-50), #fff); border-bottom: 1px solid var(--line); }
.page-hero .container { padding-block: clamp(34px, 5vw, 58px); }
.page-hero h1 { margin-bottom: 14px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--accent-dark); font-weight: 500; }
.breadcrumb svg { width: 13px; height: 13px; }

/* service hero with image */
.svc-hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.svc-hero .img-frame { aspect-ratio: 4/3; }

/* ---------- Prose ---------- */
.prose { max-width: 720px; }
.prose h2 { margin: 34px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; }
.check-list { display: grid; gap: 11px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; }
.check-list li svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 1px; }
.included-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 30px; box-shadow: var(--shadow); }
.included-card h3 { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.included-card h3 svg { width: 24px; height: 24px; color: var(--accent); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-700), var(--green-900)); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 58px); text-align: center; color: #e6f4ec; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #cfe7d8; max-width: 54ch; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #bcd6c8; padding-top: 60px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 38px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #bcd6c8; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand b { color: var(--green-300); }
.footer-brand p { color: #9cbcab; max-width: 36ch; margin-bottom: 16px; }
.footer-licence { font-size: .82rem; color: #88a99a; margin-top: 4px; }
.footer-links { display: grid; gap: 10px; }
.footer-contact .info-row { gap: 11px; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 19px; height: 19px; color: var(--green-300); margin-top: 3px; }
.socials { display: flex; gap: 11px; margin-top: 6px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.socials svg { width: 21px; height: 21px; color: #fff; }
.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: .86rem; color: #9cbcab; }

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: flex; flex-direction: column; gap: 11px; }
.float-actions a { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform .2s var(--ease); }
.float-actions a:hover { transform: scale(1.08); }
.float-wa { background: #25d366; }
.float-call { background: var(--accent-dark); }
.float-actions svg { width: 28px; height: 28px; color: #fff; }

/* Mobile sticky bottom CTA bar (replaces floating round buttons on phones) */
.mobile-cta-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; gap: 10px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(24,64,42,.1); }
.mobile-cta-bar .btn { flex: 1 1 0; min-width: 0; padding: 13px 8px; font-size: .92rem; }
.mobile-cta-bar .btn svg { width: 19px; height: 19px; }

/* ---------- Misc ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent-dark); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0; z-index: 999; }
.skip-link:focus { left: 0; color: #fff; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav ---------- */
.mobile-nav { display: none; position: fixed; inset: 0 0 0 auto; width: min(88vw, 350px); background: #fff; box-shadow: var(--shadow-lg); z-index: 200; padding: 20px; overflow-y: auto; transform: translateX(100%); transition: transform .28s var(--ease); }
.mobile-nav.open { display: block; transform: translateX(0); }
.mobile-nav .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mobile-nav .m-close { background: var(--green-100); border: none; width: 46px; height: 46px; border-radius: 12px; color: var(--green-800); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-nav .m-close svg { width: 24px; height: 24px; }
.mobile-nav a { display: block; padding: 13px 14px; border-radius: 11px; color: var(--ink); font-weight: 600; }
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { background: var(--green-50); color: var(--green-800); }
.mobile-nav .m-acc { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: none; border: none; font-family: inherit; cursor: pointer; padding: 13px 14px; border-radius: 11px; color: var(--ink); font-weight: 600; font-size: 1rem; text-align: left; }
.mobile-nav .m-acc:hover { background: var(--green-50); color: var(--green-800); }
.mobile-nav .m-chev { color: var(--accent-dark); transition: transform .25s var(--ease); }
.mobile-nav .m-chev svg { width: 20px; height: 20px; }
.mobile-nav .m-acc[aria-expanded="true"] { color: var(--green-800); background: var(--green-50); }
.mobile-nav .m-acc[aria-expanded="true"] .m-chev { transform: rotate(180deg); }
.mobile-nav .m-sub { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.mobile-nav .m-acc[aria-expanded="true"] + .m-sub { max-height: 720px; }
.mobile-nav .m-sub a { padding-left: 28px; font-weight: 500; font-size: .96rem; }
.mobile-nav .m-lang { margin-top: 10px; padding: 16px 14px 6px; border-top: 1px solid var(--line); }
.mobile-nav .m-lang-head { display: flex; align-items: center; gap: 8px; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 800; margin-bottom: 12px; }
.mobile-nav .m-lang-head svg { width: 16px; height: 16px; color: var(--accent-dark); }
.mobile-nav .m-lang-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-nav .m-lang-pill { display: inline-flex; align-items: center; padding: 9px 15px; border-radius: var(--radius-pill); border: 1.5px solid var(--green-200); background: #fff; color: var(--green-800); font-weight: 600; font-size: .92rem; }
.mobile-nav .m-lang-pill:hover { border-color: var(--green-400); background: var(--green-50); color: var(--green-800); }
.mobile-nav .m-lang-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 6px 14px rgba(47,158,95,.3); }
.mobile-nav .m-lang-pill.active:hover { background: var(--accent-dark); color: #fff; }
.mobile-nav .m-cta { margin-top: 18px; display: grid; gap: 10px; }
.mobile-nav .m-cta a.btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 20px; color: #fff; font-weight: 700; }
.mobile-nav .m-cta a.btn:hover { background: var(--green-600); color: #fff; }
.mobile-nav .m-cta a.btn-wa { background: #25d366; }
.mobile-nav .m-cta a.btn-wa:hover { background: #1fbe5b; }
.mobile-nav .m-cta a.btn svg { width: 20px; height: 20px; }
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(16,32,24,.45); z-index: 150; }
.nav-backdrop.open { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero .container, .svc-hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { max-width: 560px; margin-inline: auto; width: 100%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 880px) {
  :root { --header-h: 116px; }
  .nav-links, .nav-cta-phone, .lang { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --header-h: 110px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .topbar-left { gap: 6px 14px; font-size: .8rem; }
  .topbar-badge { display: none; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .hero-float.price { left: 8px; }
  .hero-float.rating { right: 8px; }
  .ba-grid { gap: 14px; }
  .section { padding: 48px 0; }
  .float-actions { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 68px; }
  .btn { white-space: normal; }
  .mobile-cta-bar .btn { white-space: nowrap; }
}
@media (max-width: 400px) {
  .hero-float { padding: 10px 13px; }
  .hero-float .big { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .service-card:hover .sc-img img { transform: none; }
}
