/* MaplePath Consultants — core stylesheet */

:root {
  --ink:        #0a0a0c;
  --ink-2:      #101015;
  --ink-3:      #16161c;
  --line:       rgba(201, 169, 97, 0.18);
  --line-soft:  rgba(255, 255, 255, 0.08);

  --gold:       #c9a961;
  --gold-lift:  #e3caa0;
  --gold-deep:  #8a6d2f;

  --paper:      #f4f1e9;
  --muted:      #9a948a;
  --muted-2:    #6f6a62;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  max-width: 20ch;
}
.lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 62ch;
  margin: 20px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #14100a;
}
.btn-gold:hover { background: var(--gold-lift); transform: translateY(-1px); }

.btn-ghost {
  border-color: var(--line);
  color: var(--paper);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lift); }

.utility {
  background: #06060a;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--muted-2);
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 40px;
}
.utility a:hover { color: var(--gold); }
.utility-right { display: flex; gap: 26px; }
.reg-badge { color: var(--muted); }
.reg-badge strong { color: var(--gold); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 30px;
}

.brand { display: flex; align-items: center; gap: 15px; }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.01em;
}
.brand-name em { font-style: normal; color: var(--gold); }
.brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 14.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}
.nav a:hover { color: var(--paper); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--paper);
  width: 42px; height: 38px;
  cursor: pointer;
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.96) 0%, rgba(10,10,12,0.86) 42%, rgba(10,10,12,0.42) 100%),
    linear-gradient(0deg, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0) 55%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 92px; padding-bottom: 76px; }
.hero-inner { max-width: 660px; }

.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.08;
  margin: 0 0 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p.lede { font-size: 18px; max-width: 54ch; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 40px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-trust b {
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  color: var(--gold);
  font-weight: 500;
}
.hero-trust span {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section { padding: 104px 0; }
.sec-alt { background: var(--ink-2); }

.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 58px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.svc {
  background: var(--ink);
  padding: 42px 38px 46px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.sec-alt .svc { background: var(--ink-2); }
.svc:hover { background: var(--ink-3); }
.svc::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.svc:hover::before { width: 100%; }

.svc-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 26px;
}
.svc-icon svg { width: 100%; height: 100%; stroke-width: 1.1; }

.svc h3 { font-size: 22px; margin-bottom: 14px; }
.svc p { color: var(--muted); font-size: 14.8px; margin: 0 0 22px; }

.svc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  border-top: 1px solid var(--line-soft);
}
.svc li {
  font-size: 13.5px;
  color: var(--muted-2);
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.svc li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 5px; height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.svc-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-link:hover { color: var(--gold-lift); gap: 13px; transition: gap 0.3s; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 58px;
}
.why-card {
  background: var(--ink);
  padding: 38px 32px 40px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.why-card:hover { background: var(--ink-3); }
.why-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.why-card:hover::before { width: 100%; }
.why-ico { width: 34px; height: 34px; color: var(--gold); margin-bottom: 22px; }
.why-ico svg { width: 100%; height: 100%; stroke-width: 1.1; }
.why-card h3 { font-size: 19px; margin-bottom: 11px; }
.why-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* about-page bits */
.page-hero {
  position: relative;
  padding: 118px 0 74px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(201,169,97,0.14), transparent 68%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); max-width: 16ch; margin: 0 0 22px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .lede { font-size: 18px; max-width: 60ch; }
.page-hero .crumb { font-size: 12.5px; color: var(--muted-2); margin: 0 0 26px; letter-spacing: 0.04em; }
.page-hero .crumb a { color: var(--gold); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.about-stats div { background: var(--ink); padding: 40px 26px; text-align: center; }
.about-stats b {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stats span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }

.lead-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  line-height: 1.4;
  color: var(--paper);
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  margin: 0;
  max-width: 40ch;
}

.consultant-ph {
  width: 100%;
  height: 480px;
  border: 1px dashed rgba(255,120,120,0.5);
  background: rgba(255,92,92,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffb3b3;
  font-size: 13.5px;
  padding: 30px;
  line-height: 1.6;
}

.cta-band { background: var(--ink-2); border-top: 1px solid var(--line-soft); }
.cta-band .wrap { text-align: center; }
.cta-band h2 { font-size: clamp(28px, 3.6vw, 42px); max-width: 20ch; margin: 0 auto 20px; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { color: var(--muted); max-width: 54ch; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 760px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .consultant-ph { height: 320px; }
}

@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.06) brightness(0.82);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  transform: translate(16px, 16px);
  pointer-events: none;
  z-index: -1;
}
.about-copy p { color: var(--muted); margin: 0 0 18px; }

.about-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.about-points li {
  padding: 16px 0 16px 30px;
  border-top: 1px solid var(--line-soft);
  position: relative;
  font-size: 14.8px;
  color: var(--paper);
}
.about-points li:last-child { border-bottom: 1px solid var(--line-soft); }
.about-points li span { display: block; color: var(--muted-2); font-size: 13.5px; margin-top: 3px; }
.about-points li::before {
  content: "";
  position: absolute;
  left: 2px; top: 23px;
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.step {
  padding: 40px 30px 10px 0;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.step:last-child { border-right: none; }
.step::before {
  content: "";
  position: absolute;
  top: -4px; left: 0;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.step-n {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 14.2px; margin: 0; }

.strip {
  position: relative;
  padding: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.strip-bg { position: absolute; inset: 0; z-index: 0; }
.strip-bg img { width: 100%; height: 100%; object-fit: cover; }
.strip-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(8, 8, 11, 0.86);
}
.strip .wrap {
  position: relative; z-index: 2;
  padding-top: 92px; padding-bottom: 92px;
  text-align: center;
}
.strip h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-style: italic;
  max-width: 22ch;
  margin: 0 auto;
}
.strip p { color: var(--muted); margin: 24px auto 0; max-width: 58ch; }

.faq-list { border-top: 1px solid var(--line-soft); margin-top: 50px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 19px;
  text-align: left;
  padding: 26px 44px 26px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold-lift); }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 300;
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 26px;
  max-width: 78ch;
  padding-right: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.cd-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cd-item:first-of-type { border-top: 1px solid var(--line-soft); }
.cd-item b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 7px;
}
.cd-item span, .cd-item a { color: var(--muted); font-size: 15px; }
.cd-item a:hover { color: var(--paper); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 9px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-soft);
  color: var(--paper);
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 14.5px;
  transition: border-color 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 118px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(201, 169, 97, 0.04);
  margin: 6px 0 22px;
}
.consent input { margin-top: 4px; flex: none; width: 15px; height: 15px; accent-color: var(--gold); }
.consent label { font-size: 13.2px; color: var(--muted); line-height: 1.6; }
.consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: 12.2px; color: var(--muted-2); margin: 16px 0 0; }

.site-footer {
  background: #06060a;
  border-top: 1px solid var(--line-soft);
  padding: 72px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 56px;
}
.foot-brand p {
  color: var(--muted-2);
  font-size: 14px;
  margin: 22px 0 0;
  max-width: 34ch;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 11px; }
.foot-col a, .foot-col span { color: var(--muted-2); font-size: 14px; }
.foot-col a:hover { color: var(--gold-lift); }

.disclaimer {
  border-top: 1px solid var(--line-soft);
  padding: 30px 0;
  font-size: 12.4px;
  color: var(--muted-2);
  line-height: 1.75;
}
.disclaimer strong { color: var(--muted); font-weight: 600; }

.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.6px;
  color: var(--muted-2);
}
.foot-bottom nav { display: flex; gap: 24px; }
.foot-bottom a:hover { color: var(--gold); }

.wa-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #1f2b23;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #e8f6ed;
  padding: 12px 19px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
  transition: all 0.3s var(--ease);
}
.wa-fab:hover { border-color: #25d366; transform: translateY(-2px); }
.wa-fab svg { width: 19px; height: 19px; fill: #25d366; flex: none; }

.legal-hero {
  padding: 78px 0 48px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.legal-hero h1 { font-size: clamp(32px, 4.4vw, 48px); }
.legal-hero p { color: var(--muted-2); font-size: 13.5px; margin: 18px 0 0; }

.legal-body { padding: 64px 0 96px; }
.legal-body .wrap { max-width: 860px; }
.legal-body h2 {
  font-size: 24px;
  margin: 52px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.legal-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body h3 { font-size: 17.5px; margin: 30px 0 10px; color: var(--gold-lift); }
.legal-body p, .legal-body li { color: var(--muted); font-size: 15.2px; }
.legal-body ul, .legal-body ol { padding-left: 20px; }
.legal-body li { margin-bottom: 9px; }
.legal-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal-body strong { color: var(--paper); font-weight: 600; }

.callout {
  border: 1px solid var(--line);
  background: rgba(201, 169, 97, 0.05);
  padding: 24px 26px;
  margin: 28px 0;
}
.callout p { margin: 0; font-size: 14.5px; }

.toc {
  border: 1px solid var(--line-soft);
  padding: 26px 30px;
  margin-bottom: 46px;
}
.toc h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 600;
}
.toc ol { margin: 0; padding-left: 18px; columns: 2; column-gap: 34px; }
.toc li { margin-bottom: 7px; font-size: 14px; }
.toc a { color: var(--muted); text-decoration: none; }
.toc a:hover { color: var(--gold-lift); }

.ph {
  background: rgba(255, 92, 92, 0.14);
  border-bottom: 1px dashed #ff7b7b;
  color: #ffb3b3;
  padding: 0 4px;
  font-family: var(--sans);
  font-size: 0.92em;
  font-style: normal;
}

.reveal { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { padding-bottom: 34px; }
  .step:nth-child(2) { border-right: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .about-media img { height: 380px; }
}

@media (max-width: 760px) {
  section { padding: 72px 0; }
  .utility .wrap { height: auto; padding-top: 9px; padding-bottom: 9px; flex-direction: column; align-items: flex-start; gap: 5px; }
  .reg-badge { width: 100%; line-height: 1.5; }
  .utility-right { gap: 18px; width: 100%; flex-wrap: wrap; }
  .nav {
    position: fixed;
    inset: 96px 0 auto;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 28px 24px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 15px 0; width: 100%; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
  .nav .btn { margin-top: 18px; width: 100%; }
  .nav-toggle { display: block; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .step:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .hero-trust { gap: 26px 34px; }
  .hero { min-height: auto; }
  .wa-fab span { display: none; }
  .wa-fab { padding: 14px; right: 16px; bottom: 16px; }
}
