/* ClearWaste — sleek modern treatment (Fixsova-genre): oversized display type,
   stats band, arrow pill buttons, dark watermark
   footer. Emerald identity + recycling-loop signature retained. */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-var.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #00A651;
  --green-deep: #007A3D;
  --green-ink: #0A3B22;
  --ink: #171B18;
  --ink-soft: #4A534D;
  --paper: #FCFDFC;
  --mist: #F1F6F2;
  --tint: #E4F5EB;
  --line: #E0E8E2;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 18px 44px rgba(12, 40, 24, .09);
  --shadow-soft: 0 8px 24px rgba(12, 40, 24, .06);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--green-deep); }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--green); outline-offset: 2px; border-radius: 6px;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.5rem, 6.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); font-weight: 800;
     display: flex; align-items: center; gap: .4em; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
h1 em { font-style: normal; color: var(--green); }

.loop { width: .8em; height: .8em; color: var(--green); flex: none; }
h2 .loop { width: .62em; height: .62em; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 780px; }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 58ch; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--green-ink); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 14px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Nav ---------- */
.nav-wrap { position: sticky; top: 14px; z-index: 60; padding: 0 14px; }
.nav {
  max-width: 1160px; margin: 0 auto;
  background: rgba(252, 253, 252, .88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 6px;
  padding: 9px 10px 9px 20px;
}
.brand {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
}
.brand .loop { width: 1.15em; height: 1.15em; }
.brand b { color: var(--green); font-weight: 800; }
.nav-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link {
  border: 0; background: none; cursor: pointer; font: inherit; font-weight: 600;
  font-size: .97rem; color: var(--ink); padding: 9px 13px; border-radius: 999px;
  text-decoration: none;
}
.nav-link:hover { background: var(--tint); }
.drop-btn { display: inline-flex; align-items: center; gap: 7px; }
.chev {
  width: 8px; height: 8px; flex: none;
  border-right: 2.2px solid currentColor; border-bottom: 2.2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}
.nav-group.open .chev { transform: rotate(225deg) translateY(-2px); }
.nav-toggle { display: none; }

.nav-group { position: relative; }
.drop {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 250px; margin: 0; padding: 10px; list-style: none;
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow); display: none;
}
.nav-group.open .drop { display: block; }
.drop a { display: block; padding: 9px 13px; border-radius: 12px; text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem; }
.drop a:hover { background: var(--tint); color: var(--green-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 700; text-decoration: none; border: 2px solid transparent;
  font-family: var(--font-body); font-size: 1rem; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn::after {
  content: "→"; display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  font-size: .95rem; font-weight: 800;
  background: rgba(255, 255, 255, .22); color: currentColor;
  transition: transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(3px); }
.btn-solid { background: var(--green); color: #fff; box-shadow: 0 10px 26px rgba(0, 166, 81, .35); }
.btn-solid:hover { background: var(--green-deep); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline::after { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--green-ink); }
.btn-light::after { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: #101512; box-shadow: 0 10px 26px rgba(12, 40, 24, .25); }
.btn-white::after { background: #101512; color: #fff; }
.btn-white:hover { background: var(--mist); }
.btn-call::after, .btn-mail::after { display: none; }
.btn-mail .ml-ic { width: 20px; height: 20px; flex: none; }
.btn-mail:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn-call .ph-ic { width: 20px; height: 20px; flex: none; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.nav-quote { padding: 11px 20px; }
.nav-quote::after { display: none; }

.btn-wa { background: #25D366; color: #0B3D24; box-shadow: 0 10px 26px rgba(37, 211, 102, .4); }
.btn-wa::after { display: none; }
.btn-wa .wa-ic { width: 22px; height: 22px; }
.btn-wa:hover { background: #1DA851; }

/* Hero badge pills */

/* Hero credentials line */
.hero-creds {
  display: flex; flex-wrap: nowrap; align-items: center;
  margin: 26px 0 0; font-size: .8rem; font-weight: 600;
  letter-spacing: .01em; color: rgba(255, 255, 255, .78);
  white-space: nowrap;
}
.hero-creds span + span::before { content: "|"; margin: 0 9px; opacity: .45; }
.hero-creds-sm { display: none; }

.btn-email {
  display: inline-block; margin-top: 14px; padding: 9px 20px;
  border: 1.5px solid rgba(255, 255, 255, .35); border-radius: 999px;
  color: #fff !important; font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: border-color .15s, background .15s;
}
.btn-email:hover { border-color: var(--green); background: rgba(0, 166, 81, .15); }

/* Hero trust pill — glass, pulse dot */
.hero-pill {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 10px 20px 10px 16px; border-radius: 999px;
  border: 1px solid rgba(0, 166, 81, .3);
  box-shadow: 0 6px 20px rgba(12, 40, 24, .08);
  font-weight: 600; font-size: .78rem;
  letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-pill b { font-weight: 800; color: var(--green-ink); }
.pulse {
  position: relative; width: 9px; height: 9px; flex: none;
  border-radius: 50%; background: var(--green);
}
.pulse::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.55); opacity: .8; }
  100% { transform: scale(2); opacity: 0; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 15px; border-radius: 999px;
  background: var(--tint); color: var(--green-deep);
  font-weight: 700; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.chips {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}
.chip {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 12px 10px; border-radius: 999px; background: #fff;
  border: 1.5px solid var(--line); color: var(--ink); font-weight: 600;
  font-size: .92rem; line-height: 1.3; text-decoration: none;
  transition: border-color .15s, color .15s, transform .15s;
}
.chip:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-1px); }

/* ---------- Sections ---------- */
.panel { padding: 88px 0; }
.panel-tint { background: var(--mist); }
.crumbs { font-size: .88rem; color: var(--ink-soft); margin-bottom: 20px; }
.crumbs a { color: var(--ink-soft); }

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

.card, .svc-card, .review, .step {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
}
.panel-tint .card, .panel-tint .svc-card, .panel-tint .review, .panel-tint .step { border-color: transparent; box-shadow: var(--shadow-soft); }
.svc-card { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 6px; transition: transform .18s ease, box-shadow .18s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card p { color: var(--ink-soft); margin: 0; font-size: .95rem; flex: 1; }
.svc-more { color: var(--green-deep); font-weight: 700; font-size: .93rem; margin-top: 12px; }
.card-ic {
  width: 56px; height: 56px; border-radius: 18px; background: var(--tint);
  color: var(--green-deep); display: grid; place-items: center; margin-bottom: 14px;
}
.card-ic svg { width: 30px; height: 30px; }
.card p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* At-a-glance strip */
.glance { padding: 34px 0 0; }
.glance .answer-first { margin: 0; }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 42px; }
.stat { border-left: 3px solid var(--green); padding-left: 20px; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.stat span { color: var(--ink-soft); font-size: .93rem; }

.svc-grid .svc-card { padding: 24px; }
.svc-grid .svc-card p { font-size: .9rem; }
.svc-grid .card-ic { width: 48px; height: 48px; }
.svc-grid .card-ic svg { width: 26px; height: 26px; }

/* Steps */
.step { position: relative; padding-top: 38px; }
.step-n {
  position: absolute; top: -20px; left: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: 1.1rem; box-shadow: 0 8px 18px rgba(0, 166, 81, .4);
}
.steps { margin-top: 34px; }

/* Reviews */
.review blockquote { margin: 0 0 18px; font-size: 1rem; }
.stars { color: #F5B301; letter-spacing: 2px; font-size: .95rem; margin-bottom: 10px; }
.review figcaption { display: flex; gap: 12px; align-items: center; font-size: .9rem; color: var(--ink-soft); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  color: #fff; font-weight: 800; display: grid; place-items: center;
  font-family: var(--font-display);
}
.placeholder-note { font-size: .85rem; opacity: .7; }

/* FAQ */
.faq { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 17px 0; font-size: 1.02rem;
  list-style: none; position: relative; padding-right: 40px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--tint); color: var(--green-deep);
  font-size: 1.15rem; font-weight: 700;
}
.faq[open] summary::after { content: "–"; }
.faq p { margin: 0 0 18px; color: var(--ink-soft); }

/* ---------- Guides / articles ---------- */
.article p { color: var(--ink-soft); }
.art-h2 { display: block; margin-top: 1.7em; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.article .art-h2:first-child { margin-top: 0; }
.article-more { margin-top: 44px; padding-top: 10px; border-top: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero, .page-head {
  background:
    linear-gradient(115deg, rgba(8, 10, 9, .93), rgba(14, 17, 15, .78) 55%, rgba(14, 17, 15, .5)),
    url("/hero.webp") center / cover no-repeat;
  color: #fff;
}
.hero { padding: 68px 0 84px; }
.hero h1, .page-head h1 { color: #fff; }
.hero .lede, .page-head .lede { color: rgba(255, 255, 255, .87); }
.page-head { padding: 64px 0 60px; }
.page-head .cta-btns { margin-top: 24px; }
.page-head .crumbs, .page-head .crumbs a { color: rgba(255, 255, 255, .7); }
.page-head .eyebrow { background: rgba(255, 255, 255, .12); color: #7CE0AA; }
.hero-pill {
  background: rgba(16, 21, 18, .38); border-color: rgba(255, 255, 255, .28);
  color: #fff; backdrop-filter: blur(10px);
}
.hero-pill b { color: #7CE0AA; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: start; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.answer-first {
  position: relative; overflow: hidden;
  margin: 22px 0 0; padding: 26px 28px;
  background: var(--green-ink); color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(10, 61, 34, .28);
}
.answer-first::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(520px 300px at 92% -30%, rgba(0, 166, 81, .5), transparent 62%);
}
.af-label {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #7CE0AA; font-weight: 700; font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.af-label .loop { color: #7CE0AA; width: 1.1em; height: 1.1em; }
.answer-first p {
  position: relative; margin: 14px 0 0;
  font-size: 1.05rem; line-height: 1.65; color: rgba(255, 255, 255, .92);
}
.split-main .answer-first { margin: 0 0 28px; }

/* ---------- Quote form ---------- */
.quote-form {
  color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
}
.quote-form h3 { margin-bottom: 2px; font-size: 1.35rem; }
.qf-sub { margin: 0 0 18px; color: var(--ink-soft); font-size: .92rem; }
.quote-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 15px; }
.qf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.quote-form h3 { margin-bottom: 16px; }
.quote-form input, .quote-form textarea, .quote-form select {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 14px;
  font: inherit; background: var(--mist);
}
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--green); background: #fff; }
.quote-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.qf-note { font-size: .82rem; color: var(--ink-soft); margin: 13px 0 0; text-align: center; }
.file-label input { padding: 10px; background: #fff; }
.hp { position: absolute; left: -9999px; }

.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 52px; align-items: start; }
.ticks { list-style: none; padding: 0; margin: 0 0 30px; }
.ticks li { padding: 7px 0 7px 32px; position: relative; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 7px; color: var(--green); font-weight: 800; }
.split-main h2 { margin-top: 30px; }
.split-main h2:first-child { margin-top: 0; }

/* ---------- CTA ---------- */
.cta-panel {
  background: var(--green-ink); position: relative; overflow: hidden;
}
.cta-panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 420px at 85% 120%, rgba(0, 166, 81, .45), transparent 65%);
}
.cta-inner { text-align: center; color: #fff; position: relative; }
.cta-inner h2 { color: #fff; justify-content: center; font-size: clamp(2rem, 4.6vw, 3.3rem); }
.cta-inner h2 .loop { color: #7CE0AA; }
.cta-inner p { color: rgba(255, 255, 255, .82); font-size: 1.1rem; }
.cta-inner .cta-btns { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: #101512; color: #B9C4BC; position: relative; overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 64px 22px 32px; position: relative; }
.footer h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 9px 0; font-size: .95rem; }
.footer a { color: #B9C4BC; text-decoration: none; }
.footer a:hover { color: #fff; }
.brand-foot { color: #fff; margin-bottom: 12px; }
.foot-contact { font-weight: 600; }
.compliance {
  border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0;
  font-size: .82rem; position: relative; text-align: center;
}
.compliance p { margin: 5px 0; }
.compliance strong { color: #fff; }
.foot-mark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4.5rem, 14vw, 12rem); line-height: .8;
  letter-spacing: -0.04em; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.10);
  user-select: none; pointer-events: none;
  margin: 6px 0 0; transform: translateY(30%);
}

/* ---------- Sticky mobile bar ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: none; grid-template-columns: 1fr 1fr 1.3fr;
}
.sticky-bar a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 6px; color: #fff; font-weight: 700;
  text-decoration: none; font-size: .93rem;
}
.sticky-bar a svg { width: 18px; height: 18px; flex: none; }
.sticky-bar a .wa-ic { width: 19px; height: 19px; }
.sticky-bar a:first-child { background: #101512; }
.sticky-bar a:nth-child(2) { background: #25D366; color: #0B3D24; }
.sticky-bar .sb-quote { background: var(--green); }

/* Scroll dots — mobile scroller indicator, hidden on desktop */
.scroll-dots { display: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
.grid-2 > .reveal:nth-child(2), .grid-3 > .reveal:nth-child(2), .grid-4 > .reveal:nth-child(2), .grid-3 > .reveal:nth-child(3), .grid-4 > .reveal:nth-child(3) { transition-delay: .14s; }
.grid-4 > .reveal:nth-child(4) { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .svc-card, .chip { transition: none; }
  .pulse::after { animation: none; opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (min-width: 961px) {
  .split .quote-form { grid-column: 2; grid-row: 1; }
  .split .split-main { grid-column: 1; grid-row: 1; }
}
@media (max-width: 960px) {
  .grid-4, .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  /* Horizontal snap scroller for review cards */
  .scroll-row {
    display: flex; grid-template-columns: none;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    gap: 14px; padding: 4px 22px 18px;
    margin: 0 -22px;
    scrollbar-width: none;
  }
  .scroll-row::-webkit-scrollbar { display: none; }
  .scroll-row > * {
    flex: 0 0 78%; scroll-snap-align: center;
  }
  .scroll-dots { display: flex; justify-content: center; gap: 7px; margin-top: 4px; }
  .scroll-dots span {
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--line); transition: width .25s ease, background .25s ease;
  }
  .scroll-dots span.on { width: 24px; background: var(--green); }
  .qf-grid { grid-template-columns: 1fr; }
  .chips { grid-template-columns: 1fr 1fr; }
  .chip { font-size: .88rem; padding: 12px 8px; }
  /* CTA rows: all buttons share one row, equal widths */
  .cta-btns { flex-wrap: nowrap; gap: 8px; }
  .cta-btns .btn {
    flex: 1 1 0; justify-content: center; min-width: 0;
    padding: 13px 6px; font-size: .85rem; gap: 6px; white-space: nowrap;
  }
  .btn-call .ph-ic, .btn-mail .ml-ic { width: 16px; height: 16px; }
  .btn-wa .wa-ic { width: 17px; height: 17px; }
  .hero-creds { display: none; }
  .hero-creds-sm { display: flex; font-size: .78rem; }
  .hero-creds-sm span + span::before { margin: 0 8px; }
  .nav-wrap { top: 8px; }
  .nav { border-radius: 24px; flex-wrap: wrap; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    margin-left: auto; background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .nav-toggle span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; }
  .nav-menu { display: none; width: 100%; flex-direction: column; align-items: stretch; padding: 8px 4px 10px; }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; text-align: left; padding: 12px 14px; }
  .drop { position: static; display: none; box-shadow: none; border: 0; background: var(--mist); border-radius: 14px; margin: 2px 0 6px; }
  .nav-group.open .drop { display: block; }
  .nav-quote { justify-content: center; margin-top: 4px; }
  .sticky-bar { display: grid; }
  .foot-mark { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 0; padding-top: 48px; }
  .foot-grid > div { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); }
  .foot-grid > div:first-child { border-top: 0; padding-top: 0; }
  .compliance { padding-bottom: 88px; }
  .panel { padding: 58px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 26px; }
  h2 { align-items: flex-start; }
  h2 .loop { margin-top: .2em; }
}
