/* ===========================================================================
   eco-contributions.com  ·  Malta Environmental Contribution Portal
   Powered by NEXRA  ·  Brand palette + fiscal-ledger design language
   =========================================================================== */

body.eco-site-body {
  /* MTA brand palette (sourced from the Malta Tourism Authority mark) */
  --purple:   #C8203C; /* MTA red */
  --violet:   #A81A33; /* MTA red, deeper accent */
  --blue:     #1E6FB3; /* MTA blue */
  --cyan:     #5FA855; /* MTA green */
  --gold:     #E8B53A; /* MTA gold */

  /* Institutional neutrals */
  --ink:      #11203B;
  --ink-soft: #34405C;
  --muted:    #6B7591;
  --line:     #E4E6F0;
  --line-soft:#EEF0F8;
  --paper:    #FFFFFF;
  --tint:     #F6F7FB;
  --tint-2:   #FBEFF1;

  --grad: linear-gradient(100deg, var(--purple) 0%, var(--violet) 36%, var(--blue) 78%, var(--cyan) 100%);

  --radius:   14px;
  --radius-sm:10px;
  --shadow:   0 1px 2px rgba(17,32,59,.04), 0 12px 36px rgba(17,32,59,.06);
  --shadow-lg:0 24px 64px rgba(17,32,59,.12);

  --maxw: 1280px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --cta: #0F203B;
}


/* All global element rules scoped to body.eco-site-body so they do not
   bleed into the authenticated portal when the stylesheet stays loaded. */
body.eco-site-body * { box-sizing: border-box; }

body.eco-site-body { scroll-behavior: smooth; }

body.eco-site-body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.eco-site-body a { color: var(--violet); text-decoration: none; }
body.eco-site-body a:hover { text-decoration: none; }


body.eco-site-body img { max-width: 100%; display: block; }

body.eco-site-body .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

body.eco-site-body h1,
body.eco-site-body h2,
body.eco-site-body h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; font-weight: 800; }
body.eco-site-body h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); }
body.eco-site-body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
body.eco-site-body h3 { font-size: 1.18rem; letter-spacing: -0.01em; font-weight: 700; }

/* Smooth fade between site routes — kills the white flash on nav. */
body.eco-site-body .eco-site-root main { animation: ecoFadeIn 220ms ease-out both; }
@keyframes ecoFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.eco-site-body .eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 500;
  margin: 0 0 14px;
}

body.eco-site-body .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Top bar ---------------------------------------------------- */
body.eco-site-body .topbar {
  background: var(--ink);
  color: #C9CCE4;
  font-size: 0.78rem;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
body.eco-site-body .topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
body.eco-site-body .topbar a { color: #C9CCE4; }
body.eco-site-body .topbar a:hover { color: #fff; }
body.eco-site-body .topbar strong { color: #fff; font-weight: 600; }

/* ---------- Header ----------------------------------------------------- */
body.eco-site-body .site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
body.eco-site-body .site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }

body.eco-site-body .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
body.eco-site-body .brand:hover { text-decoration: none; }
body.eco-site-body .brand .crests {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 4px 16px 4px 4px; border-right: 1px solid var(--line);
}
body.eco-site-body .brand .crests img { height: 52px; width: auto; display: block; }
body.eco-site-body .brand .crests img.mta { height: 44px; }
body.eco-site-body .brand .name { display: flex; flex-direction: column; line-height: 1.35; gap: 2px; white-space: nowrap; cursor: default; }
body.eco-site-body .brand .name b { font-weight: 800; letter-spacing: -0.02em; font-size: 1rem; color: var(--ink); }
body.eco-site-body .brand .name span { font-family: var(--font); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--muted); }


body.eco-site-body .nav { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
body.eco-site-body .nav a { color: var(--ink-soft); font-weight: 500; font-size: 0.92rem; white-space: nowrap; }
body.eco-site-body .nav a:hover { color: var(--ink); text-decoration: none; }
body.eco-site-body .nav a.active { color: var(--violet); }
body.eco-site-body .nav .btn { white-space: nowrap; padding: 9px 18px; font-size: 0.9rem; }

body.eco-site-body .btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem;
  padding: 11px 20px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  font-family: var(--font);
  text-decoration: none;
}
body.eco-site-body .btn:hover { text-decoration: none; }
body.eco-site-body .btn-primary,
body.eco-site-body a.btn-primary { background: var(--cta); color: #fff; box-shadow: 0 2px 6px rgba(15,32,59,.22); }
body.eco-site-body .btn-primary:hover,
body.eco-site-body a.btn-primary:hover { background: var(--cta); color: #fff; box-shadow: 0 6px 16px rgba(15,32,59,.32); transform: translateY(-1px); }
body.eco-site-body .btn-ghost,
body.eco-site-body a.btn-ghost { background: var(--cta); color: #fff; border-color: var(--cta); }
body.eco-site-body .btn-ghost:hover,
body.eco-site-body a.btn-ghost:hover { background: var(--cta); border-color: var(--cta); color: #fff; box-shadow: 0 6px 16px rgba(15,32,59,.32); transform: translateY(-1px); }
body.eco-site-body .btn-lg { padding: 14px 26px; font-size: 1rem; }
body.eco-site-body .btn svg { width: 17px; height: 17px; transition: transform .2s ease; }
body.eco-site-body .btn:hover svg { transform: translate(3px, -3px); }

/* Nav-bar CTAs may stay red — text always white */
body.eco-site-body .nav .btn-primary,
body.eco-site-body .nav .btn-primary:hover { background: var(--purple); border-color: var(--purple); color: #fff; box-shadow: 0 2px 6px rgba(200,32,60,.22); }

/* Footer CTAs keep the solid CTA fill */
body.eco-site-body .site-footer .btn-primary,
body.eco-site-body .site-footer .btn-primary:hover,
body.eco-site-body .site-footer .btn-ghost,
body.eco-site-body .site-footer .btn-ghost:hover { background: var(--cta); color: #fff; border-color: rgba(255,255,255,.25); box-shadow: 0 2px 6px rgba(0,0,0,.28); }

/* Banner CTAs sit on a translucent white pill against the dark slab */
body.eco-site-body .banner .btn-primary,
body.eco-site-body .banner .btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 2px 8px rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.eco-site-body .banner .btn-primary:hover,
body.eco-site-body .banner .btn-ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}


body.eco-site-body .menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
body.eco-site-body .menu-toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* ---------- Hero ------------------------------------------------------- */
body.eco-site-body .hero { padding: 74px 0 56px; position: relative; overflow: hidden; }
body.eco-site-body .hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 92% -10%, rgba(30,111,179,.05), transparent 65%);
  pointer-events: none;
}
body.eco-site-body .hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

body.eco-site-body .notice {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--tint-2); border: 1px solid var(--line);
  color: var(--violet); font-weight: 600; font-size: 0.82rem;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
body.eco-site-body .notice .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(232,181,58,.22); animation: noticeDotPulse 1.8s ease-in-out infinite; }
@keyframes noticeDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,181,58,.55), 0 0 0 4px rgba(232,181,58,.22); transform: scale(1); }
  50%      { box-shadow: 0 0 0 8px rgba(232,181,58,0), 0 0 0 4px rgba(232,181,58,.22); transform: scale(1.15); }
}

body.eco-site-body .hero h1 .grad { background: linear-gradient(95deg, #2563eb 0%, #3b82f6 40%, #14b8a6 70%, #22c55e 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
body.eco-site-body .nav .btn-primary,
body.eco-site-body .nav .btn-primary:hover { color: #fff; }
body.eco-site-body .hero .lede { margin: 22px 0 30px; }
body.eco-site-body .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

body.eco-site-body .hero-foot { margin-top: 30px; display: flex; gap: 10px 26px; flex-wrap: wrap; font-size: 0.86rem; color: var(--muted); }
body.eco-site-body .hero-foot span { display: inline-flex; align-items: center; gap: 7px; }
body.eco-site-body .hero-foot svg { width: 16px; height: 16px; color: var(--blue); }

/* ---------- Fiscal receipt / calculator signature --------------------- */
body.eco-site-body .receipt {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
body.eco-site-body .receipt-head {
  background: var(--ink); color: #fff; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
body.eco-site-body .receipt-head .r-title { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: #B9BEE0; }
body.eco-site-body .receipt-head .r-amt { font-family: var(--mono); font-weight: 600; font-size: 1.05rem; }
body.eco-site-body .receipt-body { padding: 22px; }
body.eco-site-body .receipt-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
body.eco-site-body .receipt-row:last-of-type { border-bottom: 0; }
body.eco-site-body .receipt-row label { font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
body.eco-site-body .stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
body.eco-site-body .stepper button { width: 34px; height: 34px; border: 0; background: var(--tint); color: var(--ink); font-size: 1.1rem; cursor: pointer; font-family: var(--font); }
body.eco-site-body .stepper button:hover { background: var(--tint-2); color: var(--violet); }
body.eco-site-body .stepper input { width: 48px; height: 34px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font-family: var(--mono); font-size: 0.95rem; color: var(--ink); }
body.eco-site-body .stepper input:focus { outline: none; }
body.eco-site-body .calc-total {
  margin-top: 8px; background: var(--tint); border-radius: var(--radius-sm);
  padding: 16px 18px; display: flex; align-items: baseline; justify-content: space-between;
}
body.eco-site-body .calc-total .lab { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
body.eco-site-body .calc-total .val { font-family: var(--mono); font-weight: 600; font-size: 1.9rem; color: var(--ink); letter-spacing: -0.02em; }
body.eco-site-body .calc-note { font-size: 0.78rem; color: var(--muted); margin: 12px 2px 0; }
body.eco-site-body .calc-note.capped { color: var(--violet); font-weight: 600; }

/* ---------- Generic section ------------------------------------------- */
body.eco-site-body .section { padding: 70px 0; }
body.eco-site-body .section.tinted { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
body.eco-site-body .section-head { max-width: 64ch; margin-bottom: 40px; }
body.eco-site-body .section-head .lede { margin-top: 16px; }
body.eco-site-body .section-head.section-head-wide { max-width: 78ch; }
body.eco-site-body .section-head.section-head-wide .lede { margin-top: 18px; max-width: 78ch; }

/* ---------- Key facts grid -------------------------------------------- */
body.eco-site-body .facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
body.eco-site-body .fact {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
body.eco-site-body .fact .figure { font-family: var(--mono); font-weight: 700; font-size: 2rem; letter-spacing: -0.02em; color: var(--violet); }
body.eco-site-body .fact .figure small { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
body.eco-site-body .fact h3 { margin: 20px 0 14px; }
body.eco-site-body .fact p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }

/* ---------- Steps ------------------------------------------------------ */
body.eco-site-body .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
body.eco-site-body .steps-5 { grid-template-columns: repeat(6, 1fr); gap: 40px 32px; }
body.eco-site-body .steps-5 > .step:nth-child(-n+3) { grid-column: span 2; }
body.eco-site-body .steps-5 > .step:nth-child(n+4) { grid-column: span 3; }
@media (max-width: 1100px) { body.eco-site-body .steps-5 { grid-template-columns: repeat(2, 1fr); } body.eco-site-body .steps-5 > .step { grid-column: auto; } }
@media (max-width: 640px)  { body.eco-site-body .steps-5 { grid-template-columns: 1fr; } body.eco-site-body .steps-5 > .step { grid-column: auto; } }
body.eco-site-body .step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--violet);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  box-shadow: var(--shadow);
}
body.eco-site-body .step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--tint-2); color: var(--violet);
  font-family: var(--mono); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 16px;
}
body.eco-site-body .step h3 { margin-bottom: 16px; }
body.eco-site-body .step p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.7; }

body.eco-site-body .how-facts {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tint);
}
body.eco-site-body .how-fact { display: flex; flex-direction: column; gap: 6px; padding: 18px 24px; }
body.eco-site-body .how-fact + .how-fact { border-left: 1px solid var(--line); }
body.eco-site-body .how-fact strong {
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--violet);
}
body.eco-site-body .how-fact span { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 860px) {
  body.eco-site-body .how-facts { grid-template-columns: 1fr; }
  body.eco-site-body .how-fact + .how-fact { border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- Split callout (download / MTA) ---------------------------- */
body.eco-site-body .split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
body.eco-site-body .panel {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  background: var(--paper); box-shadow: var(--shadow); display: flex; flex-direction: column;
}
body.eco-site-body .panel .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--tint-2); display: grid; place-items: center; margin-bottom: 16px; }
body.eco-site-body .panel .ico svg { width: 22px; height: 22px; color: var(--violet); }
body.eco-site-body .panel h3 { margin-bottom: 8px; }
body.eco-site-body .panel p { color: var(--ink-soft); font-size: 0.96rem; margin: 0 0 20px; }
body.eco-site-body .panel .btn { margin-top: auto; }

/* ---------- Banner CTA ------------------------------------------------- */
body.eco-site-body .banner { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 44px; position: relative; overflow: hidden; }
body.eco-site-body .banner::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 300px at 100% 0%, rgba(225, 60, 80, .32), transparent 60%); }
body.eco-site-body .banner.banner-plain::after { background: radial-gradient(600px 300px at 100% 0%, rgba(225, 60, 80, .26), transparent 60%); }
body.eco-site-body .banner .inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
body.eco-site-body .banner .inner > div:first-child { flex: 1 1 520px; min-width: 0; }
body.eco-site-body .banner h2 { color: #fff; max-width: 28ch; }
body.eco-site-body .banner p { color: #C9CCE4; margin: 10px 0 0; max-width: none; }

/* Stacked banner: content + CTA below, left aligned */
body.eco-site-body .banner.banner-stack .inner { flex-direction: column; align-items: flex-start; gap: 22px; }
body.eco-site-body .banner.banner-stack .inner > div:first-child { flex: 0 1 auto; width: 100%; }
body.eco-site-body .banner.banner-stack .btn { align-self: flex-start; }

/* ---------- Guidelines article ---------------------------------------- */
body.eco-site-body .doc { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
body.eco-site-body .doc-toc { position: sticky; top: 96px; font-size: 0.9rem; }
body.eco-site-body .doc-toc .toc-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
body.eco-site-body .doc-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
body.eco-site-body .doc-toc li { margin: 0 0 4px; }
body.eco-site-body .doc-toc a { display: block; color: var(--ink-soft); padding: 6px 10px; border-radius: 8px; border-left: 2px solid transparent; }
body.eco-site-body .doc-toc a:hover { background: var(--tint); color: var(--violet); text-decoration: none; }

body.eco-site-body .doc-body { max-width: none; }
body.eco-site-body .doc-body .clause { scroll-margin-top: 96px; padding: 28px 0; border-bottom: 1px solid var(--line-soft); }
body.eco-site-body .doc-body .clause:first-child { padding-top: 0; }
body.eco-site-body .doc-body .clause h2 { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
body.eco-site-body .doc-body .clause h2 .num { font-family: var(--mono); font-size: 0.95rem; color: var(--violet); font-weight: 600; }
body.eco-site-body .doc-body p { color: var(--ink-soft); margin: 0 0 14px; }
body.eco-site-body .doc-body ul { color: var(--ink-soft); padding-left: 22px; margin: 0 0 14px; list-style: disc; }
body.eco-site-body .doc-body li { margin-bottom: 7px; }
body.eco-site-body .doc-body .highlight { background: var(--tint-2); border-left: 3px solid var(--violet); border-radius: 0 10px 10px 0; padding: 16px 18px; color: var(--ink); font-weight: 500; }

body.eco-site-body .doc-meta { background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; margin-bottom: 36px; }
body.eco-site-body .doc-meta .label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
body.eco-site-body .doc-meta p { margin: 8px 0 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Forms ------------------------------------------------------ */
body.eco-site-body .form-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
body.eco-site-body .form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
body.eco-site-body .field { margin-bottom: 18px; }
body.eco-site-body .field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; color: var(--ink); }
body.eco-site-body .field .req { color: var(--purple); }
body.eco-site-body .field input,
body.eco-site-body .field select,
body.eco-site-body .field textarea {
  width: 100%; font-family: var(--font); font-size: 0.97rem; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper);
  transition: border-color .15s ease, box-shadow .15s ease;
}
body.eco-site-body .field input:focus,
body.eco-site-body .field select:focus,
body.eco-site-body .field textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(127,0,255,.12);
}
body.eco-site-body .field textarea { resize: vertical; min-height: 130px; }
body.eco-site-body .field input, body.eco-site-body .field select { height: 48px; }
body.eco-site-body .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
body.eco-site-body .form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
body.eco-site-body .form-foot .hint { font-size: 0.8rem; color: var(--muted); }

body.eco-site-body .aside-card { background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
body.eco-site-body .aside-card h3 { margin-bottom: 12px; }
body.eco-site-body .aside-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 16px; }
body.eco-site-body .aside-card .channel { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
body.eco-site-body .aside-card .channel:first-of-type { border-top: 0; }
body.eco-site-body .aside-card .channel .ci { width: 36px; height: 36px; border-radius: 9px; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
body.eco-site-body .aside-card .channel .ci svg { width: 18px; height: 18px; color: var(--violet); }
body.eco-site-body .aside-card .channel b { display: block; font-size: 0.92rem; }
body.eco-site-body .aside-card .channel span { font-size: 0.86rem; color: var(--muted); }

body.eco-site-body .form-success {
  display: none; text-align: center; padding: 24px 8px;
}
body.eco-site-body .form-success.show { display: block; }
body.eco-site-body .form-success .check { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: 0 10px 26px rgba(127,0,255,.3); }
body.eco-site-body .form-success .check svg { width: 30px; height: 30px; color: #fff; }
body.eco-site-body .form-success .ref { font-family: var(--mono); font-size: 1.15rem; color: var(--ink); font-weight: 600; margin: 6px 0 16px; }
body.eco-site-body .form-success .ref b { color: var(--violet); }

body.eco-site-body .error-text { color: #C0265E; font-size: 0.8rem; margin-top: 5px; display: none; }
body.eco-site-body .field.invalid input,
body.eco-site-body .field.invalid textarea,
body.eco-site-body .field.invalid select { border-color: #C0265E; }
body.eco-site-body .field.invalid .error-text { display: block; }

/* ---------- Footer ----------------------------------------------------- */
body.eco-site-body .site-footer { background: var(--ink); color: #AeB2D2; padding: 56px 0 0; margin-top: 10px; }
body.eco-site-body .site-footer .wrap { padding-bottom: 0; }
body.eco-site-body .site-footer a,
body.eco-site-body .site-footer .footer-col a { color: #C9CCE4 !important; }
body.eco-site-body .site-footer a:hover { color: #fff !important; text-decoration: none; }
body.eco-site-body .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
body.eco-site-body .footer-brand .name b { color: #fff; }
body.eco-site-body .footer-brand p { color: #9398BC; font-size: 0.9rem; max-width: 38ch; margin: 14px 0 0; }
body.eco-site-body .footer-col h4 { color: #fff !important; font-size: 0.78rem; font-family: var(--font) !important; font-style: normal !important; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 16px; font-weight: 700; }
body.eco-site-body .footer-col a { display: block; font-size: 0.92rem; margin-bottom: 10px; }

/* Bottom strip — white background, dark text */
body.eco-site-body .footer-bottom {
  margin-top: 36px;
  background: #fff;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 28px; flex-wrap: wrap; font-size: 0.82rem;
  border-top: 1px solid var(--line);
}
body.eco-site-body .footer-bottom a { color: var(--ink); }
body.eco-site-body .footer-bottom a:hover { color: var(--ink); }

body.eco-site-body .powered { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-soft); }
body.eco-site-body .powered a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--ink); padding: 0; border: 0; background: transparent; border-radius: 0; transition: opacity .2s ease; }
body.eco-site-body .powered a:hover { text-decoration: none; opacity: 0.8; background: transparent; }
body.eco-site-body .powered img { height: 16px; width: auto; display: block; filter: none; }


/* ---------- Responsive ------------------------------------------------- */
@media (max-width: 920px) {
  body.eco-site-body .hero .wrap { grid-template-columns: 1fr; gap: 38px; }
  body.eco-site-body .facts,
body.eco-site-body .steps { grid-template-columns: 1fr; }
  body.eco-site-body .split,
body.eco-site-body .form-grid,
body.eco-site-body .doc { grid-template-columns: 1fr; }
  body.eco-site-body .doc-toc { position: static; display: none; }
  body.eco-site-body .footer-top { grid-template-columns: 1fr 1fr; }
  body.eco-site-body .nav { display: none; }
  body.eco-site-body .menu-toggle { display: block; }
  body.eco-site-body .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 14px 28px 20px;
  }
  body.eco-site-body .nav.open a { padding: 8px 0; width: 100%; }
  body.eco-site-body .nav.open .btn { margin-top: 8px; }
}
@media (max-width: 560px) {
  body.eco-site-body { font-size: 16px; }
  body.eco-site-body .field-row { grid-template-columns: 1fr; }
  body.eco-site-body .footer-top { grid-template-columns: 1fr; }
  body.eco-site-body .banner { padding: 30px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  body.eco-site-body * { scroll-behavior: auto !important; transition: none !important; }
}

/* ===== Connect your PMS page ===== */
body.eco-site-body .hero-compact { padding: 56px 0; background: var(--tint); }
body.eco-site-body .hero-compact .wrap { display: block; }
body.eco-site-body .hero-compact h1 { max-width: 920px; }
body.eco-site-body .hero-compact .lede { max-width: 820px; }

body.eco-site-body .pms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
body.eco-site-body .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 1fr;
}
@media (max-width: 900px) { body.eco-site-body .faq-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { body.eco-site-body .faq-grid { grid-template-columns: 1fr; } }
body.eco-site-body .pms-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
body.eco-site-body .pms-card:hover { border-color: #cbd5e1; box-shadow: 0 8px 24px -16px rgba(15,23,42,.18); }
body.eco-site-body .pms-card h3 { margin: 4px 0 0; font-size: 17px; font-weight: 700; color: #0f172a; }
body.eco-site-body .pms-card p { margin: 0; color: #475569; font-size: 13.5px; line-height: 1.5; }
body.eco-site-body .pms-card p.muted { color: #94a3b8; }
body.eco-site-body .pms-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
body.eco-site-body .pms-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  padding: 12px 18px;
  margin: 4px 0 2px;
  background: #fff;
  border: 0;
  border-radius: 12px;
}
body.eco-site-body .pms-card-logo img { max-width: 100%; max-height: 42px; object-fit: contain; }
body.eco-site-body .pms-logo-newhotel img { max-height: 46px; width: auto; }
body.eco-site-body .pms-logo-beds24 img { max-height: 50px; }
body.eco-site-body .pms-logo-little-hotelier img { max-height: 56px; }
body.eco-site-body .pms-logo-airbnb img { max-height: 50px; }
body.eco-site-body .pms-logo-nexra-stay img { max-height: 56px; }
body.eco-site-body .compliance-connectors { margin-top: 32px; padding-top: 30px; border-top: 1px solid var(--line); }
body.eco-site-body .section-head.compact { margin-bottom: 18px; }
body.eco-site-body .section-head.compact h2 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
body.eco-site-body .compliance-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 720px; }
body.eco-site-body .pms-tag { font-size: 11px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .04em; }
body.eco-site-body .pms-coming_soon { background: #f8fafc; }
body.eco-site-body .pms-coming_soon h3 { color: #475569; }

body.eco-site-body .pms-chip {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
body.eco-site-body .pms-chip-on { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
body.eco-site-body .pms-chip-av { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
body.eco-site-body .pms-chip-cs { background: #f1f5f9; color: #64748b; border: 1px solid #e2e8f0; }

body.eco-site-body .pms-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}
@media (max-width: 900px) { body.eco-site-body .pms-flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { body.eco-site-body .pms-flow { grid-template-columns: 1fr; } }
body.eco-site-body .pms-flow-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  position: relative;
}
body.eco-site-body .pms-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--purple));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
body.eco-site-body .pms-flow-step h3 { margin: 0 0 6px; font-size: 16px; color: #0f172a; }
body.eco-site-body .pms-flow-step p { margin: 0; color: #475569; font-size: 13.5px; line-height: 1.5; }
body.eco-site-body .pms-flow-arrow {
  position: absolute;
  left: calc(100% + 18px);
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #94a3b8;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 900px) { body.eco-site-body .pms-flow-arrow { display: none; } }

body.eco-site-body .pms-list { margin: 8px 0 0; padding-left: 20px; list-style: disc; color: #475569; font-size: 14.5px; line-height: 1.7; }
body.eco-site-body .pms-list li { margin: 2px 0; }
body.eco-site-body .small { font-size: 13px; }

body.eco-site-body .pms-band-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
body.eco-site-body .pms-band-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.2);
}

/* PMS logo band on public site */
body.eco-site-body .pms-band-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  max-width: 680px;
}
@media (min-width: 900px) {
  body.eco-site-body .pms-band-logos { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 760px; }
}
body.eco-site-body .pms-band-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform .15s ease, box-shadow .15s ease;
}
body.eco-site-body .pms-band-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
body.eco-site-body .pms-band-logo img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.95;
}
body.eco-site-body .pms-band-logo.pms-logo-newhotel img { max-height: 42px; width: auto; }
body.eco-site-body .pms-band-logo.pms-logo-beds24 img { max-height: 46px; }
body.eco-site-body .pms-band-logo.pms-logo-little-hotelier img { max-height: 52px; }
body.eco-site-body .pms-band-logo.pms-logo-airbnb img { max-height: 46px; }
body.eco-site-body .pms-band-logo.pms-logo-nexra-stay img { max-height: 62px; margin-inline: auto; }

/* ============================================================
   Home page redesign — match MTA reference
   ============================================================ */

body.eco-site-body .home-hero {
  padding: 56px 0 40px;
  background: #fff;
}
body.eco-site-body .home-hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
body.eco-site-body .home-hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f1b3d;
}
body.eco-site-body .home-hero-accent {
  color: #2f8a4a;
}
body.eco-site-body .home-hero-lede {
  margin: 22px 0 28px;
  font-size: 1rem;
  color: #475569;
  max-width: 46ch;
  line-height: 1.6;
}
body.eco-site-body .home-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
body.eco-site-body .home-cta-red,
body.eco-site-body .home-cta-red:hover {
  background: #c8203c !important;
  border-color: #c8203c !important;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(200,32,60,.25);
}
body.eco-site-body .home-cta-outline,
body.eco-site-body .home-cta-outline:hover {
  background: #fff !important;
  color: #0f1b3d !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: none;
}
body.eco-site-body .home-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
}
body.eco-site-body .home-hero-trust svg { color: #94a3b8; }

body.eco-site-body .home-hero-illus {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
body.eco-site-body .home-hero-illus svg { max-width: 100%; height: auto; display: block; }

/* Section spacing */
body.eco-site-body .home-section { padding: 28px 0 20px; }
body.eco-site-body .home-section-tight { padding: 18px 0; }
body.eco-site-body .home-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f1b3d;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
body.eco-site-body .home-section-sub {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 0.92rem;
}

/* Portal transition card */
body.eco-site-body .home-transition {
  background: #f1f5fb;
  border: 1px solid #dbe6f3;
  border-radius: 14px;
  padding: 22px 22px 18px;
}
body.eco-site-body .home-transition-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}
body.eco-site-body .home-transition-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #e0eaf6; color: #1e6fb3;
  display: grid; place-items: center;
}
body.eco-site-body .home-transition-text h2 {
  font-size: 1.05rem; font-weight: 700; color: #0f1b3d;
  letter-spacing: -0.01em; margin: 2px 0 4px;
}
body.eco-site-body .home-transition-text p {
  margin: 0; color: #475569; font-size: 0.88rem; line-height: 1.55;
}
body.eco-site-body .home-pill-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px;
  background: #fff; border: 1px solid #cbd5e1;
  color: #0f1b3d !important; font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
}
body.eco-site-body .home-pill-btn:hover { border-color: #94a3b8; }
body.eco-site-body .home-pill-btn-red {
  background: #fff; border-color: #fbcad2; color: #c8203c !important;
  margin-top: 10px;
}
body.eco-site-body .home-pill-btn-red:hover { border-color: #c8203c; }

body.eco-site-body .home-quarters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
body.eco-site-body .home-quarter {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
}
body.eco-site-body .home-quarter-active {
  border-color: #b9e2c5;
  background: #f3faf5;
}
body.eco-site-body .home-quarter-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 8px;
}
body.eco-site-body .home-quarter-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 700; color: #0f1b3d;
}
body.eco-site-body .home-quarter-label svg { color: #1e6fb3; width: 14px; height: 14px; }
body.eco-site-body .home-quarter-active .home-quarter-label { color: #1f6f3a; }
body.eco-site-body .home-quarter-active .home-quarter-label svg { color: #2f8a4a; }
body.eco-site-body .home-quarter-badge {
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
}
body.eco-site-body .home-quarter-badge-muted {
  background: #e8eef7; color: #1e6fb3;
}
body.eco-site-body .home-quarter-badge-active {
  background: #d9f1e0; color: #1f6f3a;
}
body.eco-site-body .home-quarter p {
  margin: 0; color: #475569; font-size: 0.82rem; line-height: 1.55;
}
@media (max-width: 860px) {
  body.eco-site-body .home-quarters { grid-template-columns: 1fr; }
  body.eco-site-body .home-transition-head { grid-template-columns: 44px 1fr; }
  body.eco-site-body .home-transition-head .home-pill-btn { grid-column: 1 / -1; justify-self: start; }
}

/* Key information cards */
body.eco-site-body .home-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
body.eco-site-body .home-key {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
}
body.eco-site-body .home-key-top {
  display: flex; align-items: center; gap: 16px; margin-bottom: 14px;
}
body.eco-site-body .home-key-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
body.eco-site-body .home-key-icon svg { width: 24px; height: 24px; }
body.eco-site-body .home-key-icon-green { background: #e7f5ec; color: #2f8a4a; }
body.eco-site-body .home-key-icon-blue { background: #e8f0fb; color: #1e6fb3; }
body.eco-site-body .home-key-icon-violet { background: #efebfa; color: #6d4dc7; }
body.eco-site-body .home-key-numbers { flex: 1; min-width: 0; }
body.eco-site-body .home-key-label {
  font-size: 0.82rem; color: #64748b; font-weight: 500;
}
body.eco-site-body .home-key-figure {
  font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; margin: 2px 0;
}
body.eco-site-body .home-key-figure-green { color: #2f8a4a; }
body.eco-site-body .home-key-figure-blue { color: #1e6fb3; }
body.eco-site-body .home-key-figure-violet { color: #6d4dc7; }
body.eco-site-body .home-key-unit {
  font-size: 0.82rem; color: #64748b;
}
body.eco-site-body .home-key-body {
  margin: 0; color: #475569; font-size: 0.86rem; line-height: 1.55;
}
body.eco-site-body .home-keys-foot {
  margin: 16px 0 0; text-align: center;
  color: #64748b; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
body.eco-site-body .home-keys-foot svg { color: #94a3b8; }
body.eco-site-body .home-link {
  color: #1e6fb3 !important; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
@media (max-width: 860px) {
  body.eco-site-body .home-keys { grid-template-columns: 1fr; }
}

/* How you can submit */
body.eco-site-body .home-submit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
body.eco-site-body .home-submit-card {
  border-radius: 14px;
  padding: 22px;
  border: 1px solid;
}
body.eco-site-body .home-submit-card-green {
  background: #f3faf5; border-color: #cdebd7;
}
body.eco-site-body .home-submit-card-blue {
  background: #f1f5fb; border-color: #d4e2f3;
}
body.eco-site-body .home-submit-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
body.eco-site-body .home-submit-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
}
body.eco-site-body .home-submit-icon-green { background: #d9f1e0; color: #2f8a4a; }
body.eco-site-body .home-submit-icon-blue { background: #dbe6f3; color: #1e6fb3; }
body.eco-site-body .home-submit-title {
  font-size: 1.05rem; font-weight: 700; margin: 0;
  letter-spacing: -0.01em;
}
body.eco-site-body .home-submit-title-green { color: #2f8a4a; }
body.eco-site-body .home-submit-title-blue { color: #1e6fb3; }
body.eco-site-body .home-submit-optional {
  color: #64748b; font-weight: 500; font-size: 0.85rem;
}
body.eco-site-body .home-submit-body {
  margin: 0 0 12px; color: #475569; font-size: 0.88rem; line-height: 1.55;
}
body.eco-site-body .home-submit-list {
  list-style: none; margin: 0 0 16px; padding: 0;
}
body.eco-site-body .home-submit-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: #334155; padding: 4px 0;
}
body.eco-site-body .home-submit-card-green .home-submit-list svg { color: #2f8a4a; }
body.eco-site-body .home-submit-card-blue .home-submit-list svg { color: #1e6fb3; }
body.eco-site-body .home-submit-cta {
  display: block; text-align: center; padding: 10px 14px;
  border-radius: 10px; font-size: 0.88rem; font-weight: 600;
  background: #fff;
}
body.eco-site-body .home-submit-cta-green { color: #2f8a4a !important; border: 1px solid #cdebd7; }
body.eco-site-body .home-submit-cta-blue { color: #1e6fb3 !important; border: 1px solid #d4e2f3; }
body.eco-site-body .home-submit-cta-green:hover { border-color: #2f8a4a; }
body.eco-site-body .home-submit-cta-blue:hover { border-color: #1e6fb3; }
@media (max-width: 860px) {
  body.eco-site-body .home-submit { grid-template-columns: 1fr; }
}

/* PMS row */
body.eco-site-body .home-pms-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  align-items: center;
}
body.eco-site-body .home-pms-tile {
  display: flex; align-items: center; justify-content: center;
  height: 56px; padding: 6px 10px;
  background: #fff; border: 1px solid #e9eef5; border-radius: 8px;
}
body.eco-site-body .home-pms-tile img {
  max-height: 32px; max-width: 100%; object-fit: contain;
  filter: grayscale(10%);
}
body.eco-site-body .home-pms-tile.pms-logo-little-hotelier img { max-height: 38px; }
body.eco-site-body .home-pms-tile.pms-logo-nexra-stay img { max-height: 44px; }
body.eco-site-body .home-pms-more { display: inline-block; margin-top: 12px; font-size: 0.88rem; }
@media (max-width: 1100px) { body.eco-site-body .home-pms-row { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { body.eco-site-body .home-pms-row { grid-template-columns: repeat(2, 1fr); } }

/* Footer info cards */
body.eco-site-body .home-foot-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
body.eco-site-body .home-foot-card {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 16px; align-items: start;
  border-radius: 12px; padding: 20px;
}
body.eco-site-body .home-foot-card-blue { background: #f1f5fb; border: 1px solid #dbe6f3; }
body.eco-site-body .home-foot-card-pink { background: #fdf2f3; border: 1px solid #f5cdd3; }
body.eco-site-body .home-foot-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
}
body.eco-site-body .home-foot-icon-blue { background: #e0eaf6; color: #1e6fb3; }
body.eco-site-body .home-foot-icon-pink { background: #f7d9dd; color: #c8203c; }
body.eco-site-body .home-foot-card h3 {
  font-size: 0.98rem; font-weight: 700; color: #0f1b3d;
  margin: 2px 0 6px; letter-spacing: -0.01em;
}
body.eco-site-body .home-foot-card p {
  margin: 0 0 10px; color: #475569; font-size: 0.86rem; line-height: 1.55;
}
body.eco-site-body .home-foot-links {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 0.82rem;
}
body.eco-site-body .home-foot-links a { color: #1e6fb3 !important; font-weight: 600; }
body.eco-site-body .home-foot-links span { color: #cbd5e1; }
@media (max-width: 860px) {
  body.eco-site-body .home-foot-cards { grid-template-columns: 1fr; }
  body.eco-site-body .home-hero-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* Hero illustration card — diagram + 3 mini steps */
body.eco-site-body .home-hero-illus {
  display: flex; flex-direction: column;
  padding: 28px 28px 26px;
  gap: 14px;
}
body.eco-site-body .home-hero-diagram {
  display: flex; align-items: center; justify-content: center;
  padding: 8px 16px 4px;
}
body.eco-site-body .home-hero-diagram img,
body.eco-site-body .home-hero-diagram svg {
  width: auto; max-width: 100%; max-height: 220px; height: auto; display: block;
}
body.eco-site-body .home-hero-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; padding-top: 6px;
}
body.eco-site-body .home-hero-step {
  text-align: left;
  padding: 4px 22px;
  border-left: 1px solid #eef2f7;
}
body.eco-site-body .home-hero-step:first-child {
  border-left: 0; padding-left: 4px;
}
body.eco-site-body .home-hero-step:last-child { padding-right: 4px; }
body.eco-site-body .home-hero-step-icon {
  color: #2f8a4a; margin-bottom: 10px;
}
body.eco-site-body .home-hero-step-icon svg { width: 24px; height: 24px; }
body.eco-site-body .home-hero-step h4 {
  margin: 0 0 6px; font-size: 0.98rem; font-weight: 700;
  color: #0f1b3d; letter-spacing: -0.01em;
}
body.eco-site-body .home-hero-step p {
  margin: 0; color: #64748b; font-size: 0.84rem; line-height: 1.5;
}

/* Tighter hero column widths so the headline fits */
body.eco-site-body .home-hero-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
}
body.eco-site-body .home-hero-copy h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  max-width: 18ch;
}
@media (max-width: 860px) {
  body.eco-site-body .home-hero-steps { grid-template-columns: 1fr; gap: 14px; }
  body.eco-site-body .home-hero-step { border-left: 0; padding: 4px; }
}

body.eco-site-body .hero-visual { padding: 28px; }
body.eco-site-body .hero-visual-heading {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 20px;
}
body.eco-site-body .hero-steps { display: flex; flex-direction: column; gap: 0; margin-top: 0; }
body.eco-site-body .hero-step strong { display: block; font-size: 0.88rem; color: var(--ink); }
body.eco-site-body .hero-step span { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }

body.eco-site-body .hero-steps-illustrated {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  text-align: left;
}
body.eco-site-body .hero-steps-illustrated::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 23px;
  width: 2px;
  border-left: 2px dotted #16a34a;
  z-index: 0;
}
body.eco-site-body .hero-steps-illustrated .hero-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 22px 0;
}
body.eco-site-body .hero-steps-illustrated .hero-step:last-child { padding-bottom: 0; }
body.eco-site-body .hero-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
body.eco-site-body .hero-step-icon svg { width: 22px; height: 22px; color: var(--ink); }
body.eco-site-body .hero-step-icon-green { background: #f0fdf4; }
body.eco-site-body .hero-step-icon-green svg { color: #16a34a; }
body.eco-site-body .hero-step-text { display: flex; flex-direction: column; gap: 4px; padding-top: 3px; }
body.eco-site-body .hero-steps-illustrated .hero-step strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
body.eco-site-body .hero-steps-illustrated .hero-step span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 760px) {
  body.eco-site-body .hero-steps-illustrated::before { display: none; }
  body.eco-site-body .hero-steps-illustrated .hero-step { gap: 12px; }
}
body.eco-site-body .section-foot { margin-top: 28px; font-size: 0.95rem; color: var(--ink-soft); }
body.eco-site-body .home-inline-link { display: inline-flex; align-items: center; gap: 6px; color: var(--violet); font-weight: 600; }
body.eco-site-body .home-inline-link svg { width: 14px; height: 14px; }
body.eco-site-body .fact .pms-chip { margin-bottom: 14px; }
body.eco-site-body .fact-active { border-top: 3px solid var(--purple); }
body.eco-site-body .muted-tag { color: var(--muted); font-weight: 500; font-size: 0.85rem; }
body.eco-site-body .panel-links { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 0.86rem; margin-top: 4px; }


