:root {
  --paper: #ffffff;
  --paper-deep: #ffffff;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --surface-soft: #ffffff;
  --surface-accent: #ffffff;
  --panel: #2f211b;
  --ink: #231e1a;
  --muted: #6b6059;
  --line: #ead8cd;
  --line-strong: #dcb9a5;
  --blue: #c6380c;
  --blue-dark: #a92e0b;
  --teal: #8f2c0f;
  --orange: #ff4b12;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(92, 45, 21, 0.07);
  --shadow: 0 16px 40px rgba(92, 45, 21, 0.1);
  --shadow-hover: 0 18px 38px rgba(92, 45, 21, 0.14);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius: 18px;
  --content-wide: 1180px;
  --content-reading: 980px;
  --content-copy: 800px;
  --max: var(--content-wide);
  --ease: 160ms ease;
  --title-page: clamp(1.85rem, 3.5vw, 2.85rem);
  --title-section: clamp(1.45rem, 2.45vw, 2.05rem);
  --title-section-feature: clamp(1.6rem, 2.7vw, 2.28rem);
  --title-section-panel: clamp(1.4rem, 2.15vw, 1.88rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 12px max(16px, calc((100vw - var(--max)) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand > span:last-child {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.brand-mark i {
  height: 62%;
  border-right: 1px solid #8f2c0f;
  background: #ef8a35;
}

.brand-mark i:first-child {
  height: 38%;
  background: #ffd49f;
}

.brand-mark i:last-child {
  height: 82%;
  border-right: 0;
  background: var(--blue);
}

.header-nav {
  display: flex;
  gap: 5px;
  padding: 4px;
  align-items: center;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.header-nav::-webkit-scrollbar {
  display: none;
}

.header-nav a {
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  color: #fff9f5;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a[aria-current] {
  background: var(--blue);
  color: #fff;
}

main {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
}

h2 {
  margin-bottom: 16px;
  font-size: var(--title-section);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

p {
  margin: 0 0 1em;
}

.eyebrow,
.card-index,
.caption,
.breadcrumbs,
.example-row span,
.decision-list article > span {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-stage {
  position: relative;
  width: 100vw;
  min-height: 580px;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 32px 0 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 184, 61, 0.34), transparent 25rem),
    linear-gradient(112deg, #211b17 0%, #3a291f 36%, #915116 70%, #ed9918 100%);
  color: #fffaf1;
  isolation: isolate;
}

.search-stage::before {
  position: absolute;
  top: -360px;
  left: -240px;
  width: 840px;
  height: 840px;
  border: 3px solid rgba(255, 230, 187, 0.08);
  border-radius: 50%;
  content: "";
}

.search-stage::after {
  position: absolute;
  right: -180px;
  bottom: -335px;
  width: 920px;
  height: 620px;
  border: 3px solid rgba(255, 238, 201, 0.11);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
}

.search-stage-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  text-align: center;
}

.stage-eyebrow {
  margin: 0 0 16px;
  color: #f8d79e;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.search-stage h1 {
  max-width: 940px;
  margin: 0 auto 16px;
  color: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.45rem, 5vw, 3.9rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.01;
  text-wrap: balance;
}

.stage-intro {
  max-width: 820px;
  margin: 0 auto 24px;
  color: rgba(255, 249, 238, 0.85);
  font-size: clamp(0.98rem, 1.8vw, 1.18rem);
  line-height: 1.55;
}

.stage-search {
  position: relative;
  display: flex;
  width: min(100%, 1040px);
  min-height: 86px;
  margin: 0 auto;
  padding: 5px 5px 5px 68px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 64px rgba(19, 10, 3, 0.28);
}

.stage-search input {
  min-width: 0;
  padding: 0 20px;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.04rem;
}

.stage-search input::placeholder {
  color: #8a908e;
}

.stage-search:focus-within {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.search-handoff-note {
  max-width: 760px;
  margin: 9px auto 12px;
  color: rgba(255, 249, 238, 0.72);
  font-size: 0.7rem;
  line-height: 1.45;
}

.stage-search button {
  min-width: 238px;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 850;
  transition: background var(--ease), transform var(--ease);
}

.stage-search button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 27px;
  width: 22px;
  height: 22px;
  border: 3px solid #7e817f;
  border-radius: 50%;
  transform: translateY(-58%);
}

.search-icon::after {
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 10px;
  height: 3px;
  border-radius: 99px;
  background: #7e817f;
  content: "";
  transform: rotate(47deg);
}

.popular-searches {
  display: flex;
  margin: 11px auto 20px;
  gap: 7px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.73rem;
}

.popular-searches > span {
  margin-right: 2px;
  color: rgba(255, 249, 238, 0.72);
  font-weight: 800;
}

.popular-searches a {
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(35, 24, 16, 0.3);
  color: #fffaf1;
  font-weight: 800;
  text-decoration: none;
}

.popular-searches a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.stage-steps {
  position: relative;
  display: grid;
  max-width: 920px;
  margin: 0 auto 16px;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.stage-steps::before {
  position: absolute;
  top: 14px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.stage-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  justify-items: center;
}

.stage-steps li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.stage-steps div {
  display: grid;
  gap: 1px;
}

.stage-steps strong {
  font-size: 0.82rem;
}

.stage-steps small {
  color: rgba(255, 249, 238, 0.66);
  font-size: 0.67rem;
}

.stage-trust {
  max-width: 960px;
  margin: 0 auto 6px;
  color: rgba(255, 249, 238, 0.66);
  font-size: 0.67rem;
  line-height: 1.5;
}

.stage-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stage-links a {
  color: #fffaf1;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
}

.stage-links a:hover {
  color: #ffe0a7;
}

.stage-external {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.parcel-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.parcel {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #9d4b0f 0 54%, #7b3509 54%);
  box-shadow: 0 24px 28px rgba(36, 18, 5, 0.22);
  transform: skewY(4deg);
}

.parcel::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 30%;
  background: linear-gradient(90deg, #d68b28 0 43%, #e7ad52 43% 57%, #c8791c 57%);
  clip-path: polygon(12% 0, 100% 45%, 88% 100%, 0 50%);
  content: "";
}

.parcel::after {
  position: absolute;
  top: -20%;
  bottom: 0;
  left: 48%;
  width: 12%;
  background: rgba(242, 189, 94, 0.4);
  content: "";
}

.parcel-large {
  top: 190px;
  right: 5%;
  width: 250px;
  height: 225px;
}

.parcel-medium {
  right: 25%;
  bottom: 46px;
  width: 170px;
  height: 150px;
}

.parcel-small {
  right: 1%;
  bottom: 18px;
  width: 130px;
  height: 108px;
}

.route-dot {
  position: absolute;
  bottom: 52px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 240, 214, 0.65);
}

.dot-one { left: 44%; bottom: 76px; }
.dot-two { left: 49%; bottom: 58px; }
.dot-three { left: 54%; bottom: 50px; }
.dot-four { left: 59%; bottom: 55px; }
.dot-five { left: 64%; bottom: 74px; }

.hero-actions,
.inline-actions {
  display: flex;
  margin-top: 20px;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(198, 56, 12, 0.16);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease), transform var(--ease);
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 26px rgba(169, 46, 11, 0.2);
  color: #fff;
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: none;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue);
}

.text-link {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--ease);
}

.text-link:hover {
  text-decoration: underline;
}

.external-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.75rem;
}

.search-form label {
  display: block;
  margin-bottom: 8px;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 800;
}

.search-form > div {
  display: flex;
  padding: 5px;
  gap: 6px;
  border-radius: var(--radius-md);
  background: var(--white);
}

.search-form > div:focus-within {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.search-form input {
  min-width: 0;
  min-height: 48px;
  padding: 10px 13px;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.search-form input::placeholder {
  color: #788188;
}

.search-form button {
  padding: 10px 16px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 850;
}

.search-form button:hover {
  background: var(--blue-dark);
}

.search-form.compact {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: var(--panel);
  color: #fff;
}

.search-form-note {
  margin: 9px 2px 0;
  color: rgba(255, 249, 238, 0.72);
  font-size: 0.7rem;
  line-height: 1.45;
}

.quick-answer {
  display: grid;
  width: 100%;
  margin: 0 auto 42px;
  padding: 22px 24px;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-accent);
  align-items: start;
}

.quick-answer .eyebrow {
  margin: 5px 0 0;
}

.quick-answer p:last-child {
  margin: 0;
  color: #4d3529;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 2.1vw, 1.36rem);
  line-height: 1.55;
}

.content-section {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.content-section > h2,
.content-section > .section-intro,
.content-section > p:not(.caption) {
  max-width: var(--content-copy);
}

.section-intro {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.02rem;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 36px;
  align-items: start;
}

.note-card,
.article-card,
.category-card,
.number-grid article,
.tag-notes article,
.query-guide-card,
.agent-name-card,
.compare-card,
.score-grid article,
.red-flag-grid article {
  border-color: var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.note-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.note-card p:last-child {
  margin: 0;
}

.note-card.accent {
  border-color: var(--line-strong);
  background: var(--surface-accent);
}

.note-card.accent .eyebrow {
  color: var(--blue-dark);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.article-card {
  position: relative;
  display: flex;
  min-height: 260px;
  padding: 22px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.article-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #e6a33c);
  content: "";
}

.article-card:hover,
.article-card:focus-within {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.article-card > span {
  margin-bottom: 24px;
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 1.2rem;
}

.article-card p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.article-card .text-link {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.steps.second-row {
  margin-top: 14px;
}

.decision-triad {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-section {
  scroll-margin-top: 88px;
  padding: 48px 0 52px;
  border-top: 0;
  text-align: center;
}

.directory-section .eyebrow {
  margin-right: auto;
  margin-left: auto;
  color: var(--blue);
}

.directory-section h2 {
  margin: 0 auto 12px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--title-section-feature);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.directory-section .section-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.directory-tile {
  --tile-accent: var(--blue);
  position: relative;
  display: grid;
  min-height: 198px;
  padding: 18px 10px 16px;
  gap: 10px;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  text-decoration: none;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.directory-tile:hover {
  border-color: var(--tile-accent);
  background: var(--surface-solid);
  box-shadow: var(--shadow-hover);
  color: var(--ink);
  transform: translateY(-3px);
}

.directory-icon {
  display: grid;
  width: 90px;
  height: 90px;
  margin-bottom: 4px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}

.directory-icon::before {
  width: 52px;
  height: 52px;
  background: var(--tile-accent);
  content: "";
  -webkit-mask: var(--directory-icon) center / contain no-repeat;
  mask: var(--directory-icon) center / contain no-repeat;
}

.directory-tile:hover .directory-icon {
  border-color: var(--tile-accent);
  background: var(--tile-accent);
  transform: translateY(-2px);
}

.directory-tile:hover .directory-icon::before {
  background: #fff;
}

.directory-tile strong {
  font-size: 1rem;
  line-height: 1.25;
}

.directory-tile small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 280px;
  padding: 22px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.category-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.category-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 7px;
  background: var(--teal);
  content: "";
}

.category-card:nth-child(3n + 2)::after {
  background: var(--blue);
}

.category-card:nth-child(3n + 3)::after {
  background: var(--orange);
}

.card-index {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.category-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.58;
}

.category-card strong {
  color: var(--ink);
}

.category-actions {
  display: flex;
  margin-top: auto;
  padding-top: 14px;
  align-items: center;
  gap: 8px 14px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.category-actions .text-link {
  font-size: 0.79rem;
}

.category-search-link {
  color: var(--muted);
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
}

.steps li {
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.steps li > span,
.number-grid article > span,
.red-flag-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.71rem;
  font-weight: 850;
}

.steps p,
.number-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.check-panel {
  display: grid;
  padding: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
}

.tick-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding: 8px 8px 8px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
}

.tick-list li::before {
  position: absolute;
  top: 10px;
  left: 4px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #d9eee9;
  color: var(--teal);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.related {
  margin-top: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.related-links a {
  display: grid;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.related-links a:hover {
  border-color: var(--line-strong);
  background: var(--white);
  transform: translateY(-1px);
}

.related .eyebrow {
  color: var(--blue-dark);
}

.related-links span {
  font-size: 0.82rem;
  font-weight: 800;
}

.related-links small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.closing-panel {
  margin: 42px 0;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.closing-panel .eyebrow {
  color: var(--blue);
}

.closing-panel h2 {
  max-width: 720px;
}

.closing-panel > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
}

.closing-panel .button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.closing-panel .button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.breadcrumbs {
  display: flex;
  width: min(100%, var(--content-reading));
  margin: 0 auto;
  padding-top: 16px;
  gap: 9px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero {
  width: min(100%, var(--content-reading));
  max-width: none;
  margin: 0 auto;
  padding: 46px 0 38px;
}

.page-hero h1,
.not-found h1 {
  font-size: var(--title-page);
}

.page-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.editorial-meta {
  display: flex;
  margin-top: 20px;
  padding-top: 12px;
  align-items: center;
  gap: 8px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  flex-wrap: wrap;
  font-size: 0.74rem;
  line-height: 1.45;
}

.editorial-meta span:not(:last-child)::after {
  margin-left: 16px;
  color: var(--line-strong);
  content: "·";
}

.editorial-meta a {
  color: var(--blue);
  font-weight: 750;
}

.editorial-meta > a {
  margin-left: auto;
}

.article-body {
  width: min(100%, var(--content-reading));
  max-width: none;
  margin: 0 auto;
}

.article-body .quick-answer {
  margin: 0 0 24px;
}

.article-body .content-section {
  padding: 36px 0;
}

.article-body .related {
  margin: 34px 0 44px;
}

.number-grid,
.tag-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.number-grid article,
.tag-notes article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.number-grid article > span {
  margin-bottom: 22px;
}

.query-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.query-guide-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.query-number {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.query-guide-card h3 {
  margin-bottom: 8px;
}

.query-guide-card > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.query-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.query-links a {
  display: inline-flex;
  padding: 7px 10px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.query-links a span {
  color: var(--blue);
}

.query-links a:hover {
  border-color: var(--line-strong);
  background: var(--surface-accent);
  color: var(--blue-dark);
}

.query-guide-grid + .note-card {
  margin-top: 18px;
}

.agent-name-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.agent-name-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.agent-name-card:last-child {
  grid-column: 1 / -1;
}

.agent-name-card > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.agent-name-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-name-cloud span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.25;
}

.source-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.source-row {
  display: grid;
  padding: 14px 16px;
  grid-template-columns: 0.5fr 1.25fr 1.25fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  line-height: 1.5;
}

.source-row:last-child {
  border-bottom: 0;
}

.source-head {
  background: var(--panel);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.source-row span:last-child {
  color: var(--muted);
}

.source-head span:last-child {
  color: #fff;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.compare-card.positive {
  border-top: 6px solid var(--teal);
}

.compare-card.negative {
  border-top: 6px solid var(--orange);
}

.compare-card.negative .eyebrow {
  color: var(--blue-dark);
}

.compare-card ul,
.editorial-list {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.compare-card li,
.editorial-list li {
  position: relative;
  padding: 8px 8px 8px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.compare-card li::before,
.editorial-list li::before {
  position: absolute;
  left: 4px;
  color: var(--teal);
  content: "—";
  font-weight: 900;
}

.decision-list {
  display: grid;
  gap: 12px;
}

.decision-list article {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 0.75fr 1fr 1.5fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  align-items: start;
}

.decision-list article > span {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.decision-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.checklist-card {
  display: grid;
  padding: 8px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, transparent 0 50px, rgba(233, 92, 54, 0.13) 50px 51px, transparent 51px),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.checklist-card label {
  display: grid;
  padding: 14px 0 14px 46px;
  grid-template-columns: 22px 1fr;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  font-size: 0.87rem;
}

.checklist-card label:last-child {
  border-bottom: 0;
}

.checklist-card input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--blue);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.score-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.score-grid strong {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
}

.score-grid h3 {
  font-size: 1.04rem;
}

.score-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.example-row {
  display: grid;
  padding: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid #9ebcb5;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.example-row.weak {
  border-color: var(--line-strong);
  background: var(--surface-accent);
}

.example-row div {
  display: grid;
  align-content: start;
}

.example-row span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.example-row strong {
  font-size: 0.8rem;
  line-height: 1.4;
}

.example-row > p {
  margin: 6px 0 0;
  padding-top: 14px;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(23, 33, 41, 0.16);
  font-size: 0.83rem;
}

.weight-bars {
  display: grid;
  gap: 12px;
}

.weight-bars article {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(260px, 1.15fr);
  gap: 22px;
  align-items: center;
}

.weight-bars article > div {
  display: grid;
}

.weight-bars span {
  color: var(--muted);
  font-size: 0.73rem;
}

.weight-bars i {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.weight-bars i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  content: "";
}

.caption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.65rem;
}

.red-flag-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.red-flag-grid article {
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-accent);
  box-shadow: var(--shadow-sm);
}

.red-flag-grid article > span {
  margin-bottom: 18px;
}

.red-flag-grid p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  margin: 0 0 44px;
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 17px 48px 17px 0;
  cursor: pointer;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 15px;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 780px;
  padding: 0 48px 18px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.manifesto {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.manifesto p {
  margin: 0;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 750;
}

#whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2147483000;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(9, 46, 28, 0.3);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

#whatsapp-float:hover,
#whatsapp-float:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  box-shadow: 0 16px 36px rgba(9, 46, 28, 0.38);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

#whatsapp-float img {
  display: block;
  width: 32px;
  height: 32px;
}

.whatsapp-float-label {
  position: absolute;
  top: 50%;
  right: 68px;
  width: max-content;
  max-width: 210px;
  padding: 0.55rem 0.7rem;
  visibility: hidden;
  border-radius: 9px;
  background: #17231d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  font: 600 13px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease, visibility 180ms ease;
}

#whatsapp-float:hover .whatsapp-float-label,
#whatsapp-float:focus-visible .whatsapp-float-label {
  visibility: visible;
  opacity: 1;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 18px;
  border-top: 2px solid var(--ink);
}

.footer-lead {
  display: grid;
  padding-bottom: 20px;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 44px;
  align-items: start;
}

.footer-lead > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  padding: 14px 0;
  gap: 9px 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer nav a {
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-base {
  display: flex;
  padding-top: 14px;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.67rem;
}

.footer-base p {
  margin: 0;
}

.footer-base p:first-child {
  max-width: 740px;
}

.not-found {
  width: min(100%, var(--content-reading));
  min-height: 65vh;
  margin: 0 auto;
  padding: 80px 0;
}

.not-found > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .site-header {
    display: grid;
    gap: 12px;
  }

  .header-nav {
    width: calc(100vw - 32px);
    margin-left: 0;
  }

  .parcel-scene {
    opacity: 0.34;
  }

  .parcel-large {
    right: -3%;
  }

  .directory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-links,
  .score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .red-flag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --title-page: clamp(1.72rem, 8vw, 2.35rem);
    --title-section: clamp(1.38rem, 6.2vw, 1.75rem);
    --title-section-feature: clamp(1.5rem, 6.8vw, 1.95rem);
    --title-section-panel: clamp(1.32rem, 5.8vw, 1.68rem);
  }

  body {
    font-size: 16px;
  }

  main,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    width: 100%;
    padding: 10px 12px 12px;
  }

  .header-nav {
    width: calc(100vw - 24px);
    margin-right: -12px;
    padding-right: 12px;
  }

  .header-nav a {
    padding: 6px 8px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: var(--title-section);
  }

  .search-stage {
    min-height: 0;
    margin-bottom: 0;
    padding: 26px 0 20px;
  }

  .search-stage h1 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .stage-eyebrow {
    margin-bottom: 12px;
    font-size: 0.64rem;
  }

  .stage-intro {
    margin-bottom: 18px;
    font-size: 0.94rem;
  }

  .stage-search {
    display: grid;
    min-height: 0;
    padding: 5px;
    border-radius: var(--radius-md);
  }

  .stage-search input {
    min-height: 58px;
    padding: 0 14px 0 46px;
    font-size: 0.9rem;
  }

  .stage-search button {
    min-width: 0;
    min-height: 50px;
    border-radius: var(--radius-sm);
  }

  .search-icon {
    top: 34px;
    left: 20px;
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .popular-searches {
    margin-bottom: 16px;
  }

  .stage-steps {
    width: min(100%, 420px);
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .stage-steps::before {
    display: none;
  }

  .stage-steps li {
    padding: 8px 10px;
    grid-template-columns: 34px 1fr;
    background: rgba(27, 18, 12, 0.24);
    text-align: left;
    justify-items: start;
  }

  .stage-links {
    gap: 8px 13px;
  }

  .parcel-scene {
    opacity: 0.18;
  }

  .search-form > div {
    display: grid;
  }

  .search-form button {
    min-height: 46px;
  }

  .quick-answer {
    margin-bottom: 28px;
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quick-answer .eyebrow {
    margin-top: 0;
  }

  .content-section {
    padding: 30px 0;
  }

  .directory-section {
    scroll-margin-top: 122px;
    padding: 32px 0 34px;
  }

  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: 0;
  }

  .directory-tile {
    min-height: 164px;
    padding: 14px 8px 12px;
  }

  .directory-icon {
    width: 76px;
    height: 76px;
  }

  .directory-icon::before {
    width: 43px;
    height: 43px;
  }

  .split-copy,
  .check-panel,
  .footer-lead {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-grid,
  .steps,
  .number-grid,
  .tag-notes,
  .query-guide-grid,
  .agent-name-groups,
  .compare-grid,
  .red-flag-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 0;
  }

  .agent-name-card:last-child {
    grid-column: auto;
  }

  .card-index,
  .steps li > span,
  .number-grid article > span,
  .red-flag-grid article > span {
    margin-bottom: 18px;
  }

  .related {
    padding: 17px;
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .closing-panel {
    margin: 30px 0;
    padding: 22px 16px;
  }

  .page-hero {
    padding: 32px 0 26px;
  }

  .editorial-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .editorial-meta span:not(:last-child)::after {
    content: none;
  }

  .editorial-meta > a {
    margin-left: 0;
  }

  .article-body .content-section {
    padding: 28px 0;
  }

  .article-body .related {
    margin: 28px 0 34px;
  }

  .source-table {
    overflow-x: auto;
  }

  .source-row {
    min-width: 690px;
  }

  .decision-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .checklist-card {
    padding: 8px 14px;
    background: var(--white);
  }

  .checklist-card label {
    padding-left: 0;
  }

  .score-grid {
    grid-template-columns: 1fr 1fr;
  }

  .example-row {
    grid-template-columns: 1fr 1fr;
  }

  .weight-bars article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-lead {
    padding-bottom: 20px;
  }

  .footer-base {
    display: grid;
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .score-grid,
  .example-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-bottom: 84px;
  }

  #whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .whatsapp-float-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .search-stage,
  .closing-panel,
  .hero-actions,
  #whatsapp-float {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  main {
    width: 100%;
  }
}
