/* Pathway Consultants — core stylesheet (light / editorial theme) */

:root {
  --bg:         #ffffff;
  --bg-soft:    #faf4ec;
  --surface:    #ffffff;

  --ink:        #241715;
  --muted:      #6f5a53;
  --muted-2:    #a3928a;

  --line:       rgba(125, 36, 56, 0.16);
  --line-soft:  rgba(36, 23, 21, 0.09);

  --wine:       #7d2438;
  --wine-lift:  #9c3350;
  --wine-deep:  #591526;
  --wine-tint:  #faeaee;

  --cream:      #f4e9da;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow:    0 26px 60px -24px rgba(36, 18, 16, 0.22);
  --shadow-sm: 0 14px 32px -16px rgba(36, 18, 16, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  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; }

/* ---------- shared type ---------- */

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

.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;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn.btn-gold {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(125, 36, 56, 0.55);
}
.btn.btn-gold:hover { background: var(--wine-lift); color: #fff; transform: translateY(-2px); }

.btn.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn.btn-ghost:hover { border-color: var(--wine); color: var(--wine); background: var(--wine-tint); }

/* ---------- utility bar ---------- */

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

/* ---------- header ---------- */

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

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

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--wine);
  border-radius: 2px;
  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(--ink);
  width: 42px; height: 38px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
}

/* ---------- hero (split layout) ---------- */

.hero {
  background: var(--bg-soft);
  overflow: hidden;
}
.hero .wrap.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 88px;
}
.hero-inner { max-width: 600px; }

.hero h1 {
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--wine);
}
.hero p.lede { font-size: 17.5px; max-width: 50ch; }

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

.hero-trust {
  display: flex;
  gap: 34px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-trust div { max-width: 180px; }
.hero-trust b {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--wine);
  font-weight: 600;
  line-height: 1.25;
}
.hero-trust span {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
  display: block;
  margin-top: 4px;
}

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: var(--wine);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.9;
}
.hero-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.hero-flag svg { display: block; }

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: -26px;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge svg { width: 26px; height: 26px; flex: none; color: var(--wine); }
.hero-badge b { display: block; font-family: var(--serif); font-size: 14.5px; color: var(--ink); }
.hero-badge span { display: block; font-size: 11.5px; color: var(--muted-2); margin-top: 2px; }

/* ---------- sections ---------- */

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

/* ---------- services ---------- */

.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: 22px;
}
.svc {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 36px 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line); }

.svc-icon {
  width: 52px; height: 52px;
  color: var(--wine);
  background: var(--wine-tint);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 24px;
}
.svc-icon svg { width: 100%; height: 100%; stroke-width: 1.3; }

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

.svc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line-soft);
}
.svc li {
  font-size: 13.5px;
  color: var(--muted);
  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;
  background: var(--wine);
  border-radius: 50%;
}
.svc-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-link:hover { color: var(--wine-lift); gap: 13px; transition: gap 0.3s; }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.about-media::after {
  content: "";
  position: absolute;
  inset: -18px -18px 18px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 0;
}
.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(--ink);
}
.about-points li:last-child { border-bottom: 1px solid var(--line-soft); }
.about-points li span { display: block; color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.about-points li::before {
  content: "";
  position: absolute;
  left: 2px; top: 24px;
  width: 8px; height: 8px;
  background: var(--wine);
  border-radius: 50%;
}

/* ---------- process (connected timeline) ---------- */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  box-shadow: var(--shadow-sm);
}
.step-n {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 { font-size: 19px; margin-bottom: 12px; color: var(--ink); }
.step p { color: var(--muted); font-size: 14.2px; margin: 0; }

/* ---------- quote strip (banner + card) ---------- */

.strip {
  padding: 0;
  background: var(--bg-soft);
}
.strip .wrap {
  padding-top: 96px;
  padding-bottom: 96px;
}
.strip-media {
  margin-bottom: 48px;
}
.strip-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.strip-quote { max-width: 760px; margin: 0 auto; text-align: center; }
.strip h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-style: italic;
  color: var(--ink);
  margin: 0 auto;
}
.strip h2::before { content: "“"; color: var(--wine); }
.strip h2::after { content: "”"; color: var(--wine); }
.strip p { color: var(--muted); margin: 24px auto 0; max-width: 58ch; }

/* ---------- faq ---------- */

.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0 26px;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  text-align: left;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--wine); }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--wine);
  font-family: var(--sans);
  font-size: 22px;
  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 24px;
  max-width: 78ch;
  padding-right: 30px;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.contact-details { }
.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.16em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
  margin-bottom: 7px;
}
.cd-item span, .cd-item a { color: var(--muted); font-size: 15px; }
.cd-item a:hover { color: var(--wine); }

/* form */
.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.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--ink);
  padding: 13px 16px;
  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(--wine); }
.field textarea { resize: vertical; min-height: 118px; }

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

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

/* ---------- footer ---------- */

.site-footer {
  background: var(--bg-soft);
  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);
  font-size: 14px;
  margin: 22px 0 0;
  max-width: 34ch;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 20px;
  font-weight: 700;
}
.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); font-size: 14px; }
.foot-col a:hover { color: var(--wine); }

.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: 700; }

.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(--wine); }

/* ---------- cta band ---------- */

.cta-band {
  background: var(--wine);
}
.cta-band-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band .eyebrow { color: rgba(255, 255, 255, 0.78); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: rgba(255, 255, 255, 0.5); opacity: 1; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); }
.cta-band p.lede { color: rgba(255, 255, 255, 0.82); margin: 18px auto 0; }
.cta-band .hero-actions { justify-content: center; margin-top: 34px; }
.cta-band .btn.btn-gold { background: #fff; color: var(--wine-deep); box-shadow: none; }
.cta-band .btn.btn-gold:hover { background: var(--cream); color: var(--wine-deep); }
.cta-band .btn.btn-ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.cta-band .btn.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ---------- whatsapp fab ---------- */

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

/* ---------- legal pages ---------- */

.legal-hero {
  padding: 78px 0 48px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.legal-hero h1 { font-size: clamp(32px, 4.4vw, 48px); color: var(--ink); }
.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);
  color: var(--ink);
}
.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(--wine); }
.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(--wine); text-decoration: underline; text-underline-offset: 2px; }
.legal-body strong { color: var(--ink); font-weight: 700; }

.callout {
  border: 1px solid var(--line);
  background: var(--wine-tint);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  margin: 28px 0;
}
.callout p { margin: 0; font-size: 14.5px; color: var(--ink); }

.toc {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 26px 30px;
  margin-bottom: 46px;
}
.toc h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 16px;
  font-weight: 700;
}
.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(--wine); }

/* ---------- placeholder marker ---------- */

.ph {
  background: rgba(220, 38, 38, 0.09);
  border-bottom: 1px dashed #dc2626;
  color: #b91c1c;
  border-radius: 4px;
  padding: 0 4px;
  font-family: var(--sans);
  font-size: 0.92em;
  font-style: normal;
}

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero .wrap.hero-wrap { grid-template-columns: 1fr; gap: 56px; padding-top: 56px; }
  .hero-media { order: -1; }
  .hero-media img { height: 360px; }
  .hero-badge { position: static; margin-top: -30px; margin-left: 20px; width: fit-content; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .about-media img { height: 380px; }
}

@media (max-width: 760px) {
  html, body { overflow-x: hidden; }
  section { padding: 72px 0; }
  .utility .wrap { height: auto; padding-top: 9px; padding-bottom: 9px; flex-direction: column; align-items: flex-start; gap: 5px; }
  .utility-right { gap: 18px; }
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    background: var(--bg);
    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; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .hero-trust { gap: 26px 34px; }
  .wa-fab span { display: none; }
  .wa-fab { padding: 14px; right: 16px; bottom: 16px; }
  .reg-badge { width: 100%; line-height: 1.5; }
  .utility-right { width: 100%; flex-wrap: wrap; }
  .legal-body table { display: block; overflow-x: auto; }
  .hero-badge { margin-left: 8px; }
}
