:root {
  --ink: #10231d;
  --ink-soft: #42514c;
  --paper: #f6f5ef;
  --white: #fffefa;
  --lime: #c8ff4d;
  --lime-dark: #9fdf10;
  --coral: #ff7657;
  --blue: #78c9ff;
  --violet: #c5a8ff;
  --amber: #ffc95c;
  --mint: #73e0c1;
  --line: #dce1da;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 80px rgba(16, 35, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  flex: 0 0 auto;
}

.site-header {
  background: rgba(246, 245, 239, 0.92);
  border-bottom: 1px solid rgba(16, 35, 29, 0.1);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 28px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 20px;
  font-weight: 820;
  gap: 11px;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 11px 4px 11px 11px;
  color: var(--lime);
  display: inline-flex;
  font-size: 20px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0;
  transform: rotate(-2deg);
  width: 40px;
}

.brand-dot {
  color: #e9492a;
}

.main-nav {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 650;
  gap: 34px;
}

.main-nav > a:not(.nav-register) {
  position: relative;
}

.main-nav > a:not(.nav-register)::after {
  background: var(--ink);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
  width: 100%;
}

.main-nav > a:not(.nav-register):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-register {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  gap: 9px;
  padding: 12px 19px;
  transition: background .2s ease, transform .2s ease;
}

.nav-register:hover {
  background: #244139;
  transform: translateY(-2px);
}

.menu-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hero {
  background: var(--lime);
  min-height: 700px;
  overflow: hidden;
  padding: 80px 28px 90px;
  position: relative;
}

.hero::before {
  background-image: radial-gradient(rgba(16, 35, 29, .18) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  content: "";
  inset: 0 55% 0 0;
  opacity: .36;
  position: absolute;
}

.hero-orbit {
  border: 1px solid rgba(16, 35, 29, .25);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.orbit-one {
  height: 520px;
  left: -180px;
  top: 170px;
  width: 520px;
}

.orbit-two {
  height: 300px;
  left: 170px;
  top: 420px;
  width: 300px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 540px);
  margin: 0 auto;
  max-width: 1224px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: .11em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--ink);
  border-radius: 50%;
  height: 9px;
  position: relative;
  width: 9px;
}

.eyebrow span::after {
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  height: 15px;
  left: -4px;
  position: absolute;
  top: -4px;
  width: 15px;
}

.hero-copy h1 {
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .88;
  margin: 0;
}

.hero-copy h1 span {
  color: var(--white);
  text-shadow: 2px 2px 0 var(--ink), -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink);
}

.hero-copy > p {
  font-size: 19px;
  font-weight: 540;
  line-height: 1.65;
  margin: 34px 0 29px;
  max-width: 600px;
}

.hero-trust {
  align-items: center;
  display: flex;
  gap: 16px;
}

.trust-faces {
  display: flex;
  padding-left: 8px;
}

.trust-faces span {
  align-items: center;
  background: var(--white);
  border: 2px solid var(--lime);
  border-radius: 50%;
  display: flex;
  font-size: 9px;
  font-weight: 850;
  height: 38px;
  justify-content: center;
  margin-left: -8px;
  width: 38px;
}

.trust-faces span:nth-child(2) { background: var(--blue); }
.trust-faces span:nth-child(3) { background: var(--coral); }

.hero-trust strong,
.hero-trust small {
  display: block;
}

.hero-trust strong {
  font-size: 13px;
}

.hero-trust small {
  color: #385046;
  font-size: 11px;
  margin-top: 2px;
}

.hero-card-wrap {
  padding: 28px 0 0 14px;
  position: relative;
}

.price-sticker {
  align-items: center;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  height: 126px;
  justify-content: center;
  position: absolute;
  right: -43px;
  text-align: center;
  top: -17px;
  transform: rotate(9deg);
  width: 126px;
  z-index: 3;
}

.price-sticker span,
.price-sticker small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-sticker strong {
  color: white;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1.05;
  text-shadow: 1px 1px 0 var(--ink);
}

.search-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--ink);
  padding: 34px;
}

.search-card-top {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-right: 50px;
}

.step-indicator {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--lime);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  margin-top: 2px;
  width: 38px;
}

.search-card-top p {
  color: #60706a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.search-card-top h2 {
  font-size: 23px;
  letter-spacing: -.035em;
  line-height: 1.2;
  margin: 0;
}

.search-card label {
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin: 0 0 7px 3px;
}

.input-shell {
  align-items: center;
  background: #f2f3ed;
  border: 1px solid #cfd6cd;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 12px;
  margin-bottom: 17px;
  min-height: 58px;
  padding: 0 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.input-shell:focus-within {
  background: white;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(200, 255, 77, .75);
}

.input-shell > svg {
  color: #60706a;
}

.input-shell input,
.input-shell select {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  min-width: 0;
  outline: 0;
  width: 100%;
}

.input-shell input::placeholder,
.input-shell select:invalid {
  color: #73817c;
}

.select-shell > svg:last-child {
  color: var(--ink);
  transform: rotate(90deg);
}

.search-submit {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius-sm);
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 750;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  min-height: 58px;
  transition: background .2s, transform .2s;
  width: 100%;
}

.search-submit:hover {
  background: #244139;
  transform: translateY(-2px);
}

.search-submit svg {
  color: var(--lime);
}

.search-result {
  align-items: center;
  background: #e8ffc0;
  border: 1px solid #b5de68;
  border-radius: 13px;
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 11px 13px;
}

.search-result > svg {
  background: var(--ink);
  border-radius: 50%;
  color: var(--lime);
  padding: 3px;
}

.search-result div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.search-result strong,
.search-result span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result strong { font-size: 12px; }
.search-result span { color: var(--ink-soft); font-size: 11px; }
.search-result a { font-size: 12px; font-weight: 800; text-decoration: underline; }

.card-footnote {
  align-items: center;
  color: #66736e;
  display: flex;
  font-size: 10px;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
}

.card-footnote svg { color: #4b7d18; }
.card-footnote span { color: #a2aaa6; }

.ticker {
  background: var(--ink);
  color: white;
  overflow: hidden;
  padding: 16px 28px;
}

.ticker-track {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 1224px;
}

.ticker-track > span {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.ticker-track svg { color: var(--lime); }

.section {
  margin: 0 auto;
  max-width: 1280px;
  padding: 112px 28px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-kicker {
  color: #537051;
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.section-heading h2,
.how-intro h2,
.business-copy h2 {
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -.06em;
  line-height: .99;
  margin: 0;
}

.section-heading > p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 3px;
  max-width: 455px;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 280px;
  overflow: hidden;
  padding: 27px;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.category-card:hover {
  border-color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.category-number {
  color: #7b8782;
  font-size: 11px;
  font-weight: 800;
  position: absolute;
  right: 24px;
  top: 20px;
}

.category-icon {
  align-items: center;
  border-radius: 16px;
  display: flex;
  height: 60px;
  justify-content: center;
  margin-bottom: 28px;
  width: 60px;
}

.category-card.lime .category-icon { background: var(--lime); }
.category-card.coral .category-icon { background: #ffd0c5; }
.category-card.blue .category-icon { background: #d3efff; }
.category-card.violet .category-icon { background: #e4d8ff; }
.category-card.amber .category-icon { background: #ffe5a8; }
.category-card.mint .category-icon { background: #c6f5e8; }

.category-card h3 {
  font-size: 21px;
  letter-spacing: -.03em;
  margin: 0 0 8px;
}

.category-card p {
  color: #66736e;
  font-size: 13px;
  margin: 0;
}

.category-link {
  align-items: center;
  bottom: 24px;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  position: absolute;
}

.category-card:hover .category-link svg {
  transform: translateX(4px);
}

.category-link svg { transition: transform .2s; }

.how-section {
  padding: 0 28px;
}

.how-shell {
  background: var(--ink);
  border-radius: 38px;
  color: white;
  display: grid;
  gap: 80px;
  grid-template-columns: .9fr 1.1fr;
  margin: 0 auto;
  max-width: 1224px;
  overflow: hidden;
  padding: 82px;
  position: relative;
}

.how-shell::after {
  border: 1px solid rgba(200,255,77,.28);
  border-radius: 50%;
  content: "";
  height: 420px;
  left: -230px;
  position: absolute;
  top: 95px;
  width: 420px;
}

.section-kicker.light { color: var(--lime); }

.how-intro {
  position: relative;
  z-index: 2;
}

.how-intro h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  max-width: 520px;
}

.how-intro p {
  color: #b7c2be;
  font-size: 15px;
  margin: 24px 0 31px;
  max-width: 430px;
}

.text-link,
.all-guides {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
}

.text-link {
  border-bottom: 1px solid var(--lime);
  color: var(--lime);
  padding-bottom: 5px;
}

.steps {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.steps article {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.13);
  display: flex;
  gap: 22px;
  padding: 25px 0;
}

.steps article:first-child { padding-top: 0; }
.steps article:last-child { border-bottom: 0; padding-bottom: 0; }

.steps article > span {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.steps h3 {
  font-size: 18px;
  margin: 0 0 4px;
}

.steps p {
  color: #aebbb6;
  font-size: 13px;
  margin: 0;
}

.section-heading.compact {
  align-items: center;
}

.all-guides {
  border: 1px solid #bfc8bf;
  border-radius: 999px;
  padding: 12px 17px;
  transition: background .2s, border-color .2s;
}

.all-guides:hover {
  background: var(--lime);
  border-color: var(--ink);
}

.guide-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.guide-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.guide-art {
  height: 188px;
  overflow: hidden;
  padding: 23px;
  position: relative;
}

.guide-art::after {
  border: 1px solid rgba(16,35,29,.3);
  border-radius: 50%;
  content: "";
  height: 190px;
  position: absolute;
  right: -74px;
  top: -85px;
  width: 190px;
}

.guide-art::before {
  border: 1px solid rgba(16,35,29,.23);
  border-radius: 50%;
  content: "";
  height: 110px;
  position: absolute;
  right: -35px;
  top: -45px;
  width: 110px;
}

.guide-lime .guide-art { background: var(--lime); }
.guide-coral .guide-art { background: #ffc3b5; }
.guide-blue .guide-art { background: #c1e7ff; }

.guide-art span {
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  text-transform: uppercase;
}

.guide-art strong {
  bottom: 21px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  left: 23px;
  letter-spacing: -.06em;
  line-height: 1;
  position: absolute;
}

.guide-content {
  padding: 24px;
}

.guide-content small {
  color: #72807b;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-content h3 {
  font-size: 20px;
  letter-spacing: -.035em;
  line-height: 1.25;
  margin: 8px 0 22px;
}

.guide-content > span {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
}

.business-section {
  padding: 0 28px 112px;
}

.business-card {
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 38px;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr .9fr;
  margin: 0 auto;
  max-width: 1224px;
  min-height: 500px;
  overflow: hidden;
  padding: 72px 76px;
  position: relative;
}

.business-card::before {
  border: 1px solid rgba(16,35,29,.25);
  border-radius: 50%;
  content: "";
  height: 420px;
  position: absolute;
  right: -240px;
  top: -240px;
  width: 420px;
}

.business-copy {
  position: relative;
  z-index: 2;
}

.business-label {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 850;
  gap: 8px;
  letter-spacing: .12em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.business-copy h2 {
  color: white;
  font-size: clamp(40px, 5vw, 64px);
  max-width: 670px;
  text-shadow: 1px 1px 0 var(--ink);
}

.business-copy > p {
  font-size: 15px;
  font-weight: 550;
  margin: 23px 0 30px;
  max-width: 530px;
}

.business-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.business-primary {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: white;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  padding: 15px 20px;
}

.business-primary svg { color: var(--lime); }

.business-secondary {
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding-bottom: 3px;
}

.business-preview {
  align-self: center;
  min-height: 330px;
  position: relative;
  z-index: 2;
}

.profile-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 21px;
  box-shadow: 8px 8px 0 var(--ink);
  position: absolute;
}

.back-card {
  align-items: center;
  display: flex;
  gap: 12px;
  left: 32px;
  opacity: .78;
  padding: 19px;
  right: -30px;
  top: 15px;
  transform: rotate(6deg);
}

.back-card div,
.profile-head > div {
  display: flex;
  flex-direction: column;
}

.profile-card strong { font-size: 13px; }
.profile-card small { color: #63716c; font-size: 10px; }

.mini-logo {
  align-items: center;
  background: var(--blue);
  border: 1px solid var(--ink);
  border-radius: 11px;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.front-card {
  bottom: 5px;
  left: 0;
  padding: 24px;
  right: 10px;
  transform: rotate(-2.5deg);
}

.profile-head {
  align-items: center;
  display: flex;
  gap: 12px;
}

.lime-logo { background: var(--lime); }

.profile-head b {
  align-items: center;
  background: #eaffba;
  border-radius: 999px;
  display: flex;
  font-size: 9px;
  gap: 3px;
  margin-left: auto;
  padding: 6px 8px;
}

.profile-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 25px 0;
}

.profile-lines span {
  background: #dfe3dc;
  border-radius: 99px;
  height: 7px;
  width: 92%;
}

.profile-lines span:nth-child(2) { width: 75%; }
.profile-lines span:nth-child(3) { width: 84%; }

.profile-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
}

.profile-bottom small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.profile-bottom span {
  font-size: 10px;
  font-weight: 750;
}

footer {
  background: var(--ink);
  color: white;
  padding: 74px 28px 26px;
}

.footer-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: 2fr repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1224px;
}

.brand.inverse { color: white; }
.brand.inverse .brand-mark { background: var(--lime); color: var(--ink); }

.footer-brand p {
  color: #a9b7b2;
  font-size: 13px;
  margin: 24px 0 0;
  max-width: 340px;
}

.footer-grid h3 {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: .12em;
  margin: 5px 0 19px;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  color: #c6cfcc;
  display: block;
  font-size: 12px;
  margin: 0 0 13px;
}

.footer-grid > div:not(.footer-brand) a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  color: #8fa09a;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin: 64px auto 0;
  max-width: 1224px;
  padding-top: 22px;
}

@media (max-width: 1050px) {
  .main-nav { gap: 20px; }
  .hero-grid { gap: 45px; grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr); }
  .hero-copy h1 { font-size: 72px; }
  .price-sticker { right: -10px; }
  .how-shell { gap: 55px; padding: 65px 55px; }
  .business-card { padding: 65px 55px; }
}

@media (max-width: 860px) {
  .header-inner { height: 70px; padding: 0 20px; }
  .menu-button { display: flex; }
  .main-nav {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 18px 20px 24px;
    position: absolute;
    right: 0;
    top: 70px;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 14px 4px; }
  .main-nav > a:not(.nav-register)::after { display: none; }
  .nav-register { justify-content: center; margin-top: 8px; }
  .hero { padding: 64px 24px 78px; }
  .hero::before { inset: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .hero-copy h1 { font-size: clamp(64px, 12vw, 96px); }
  .hero-card-wrap { margin: 0 auto; max-width: 570px; padding-left: 0; width: 100%; }
  .section { padding: 90px 24px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .how-section { padding: 0 24px; }
  .how-shell { grid-template-columns: 1fr; padding: 60px; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-card:last-child { display: none; }
  .business-section { padding: 0 24px 90px; }
  .business-card { gap: 25px; grid-template-columns: 1fr; padding: 60px; }
  .business-preview { min-height: 310px; }
  .footer-grid { gap: 44px; grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 600px) {
  .brand { font-size: 17px; }
  .brand-mark { border-radius: 9px 3px 9px 9px; font-size: 17px; height: 35px; width: 35px; }
  .hero { min-height: 0; padding: 47px 18px 62px; }
  .hero-copy h1 { font-size: clamp(55px, 18vw, 76px); }
  .hero-copy > p { font-size: 16px; margin-top: 26px; }
  .hero-trust { align-items: flex-start; }
  .hero-card-wrap { padding-top: 32px; }
  .price-sticker { height: 93px; right: -5px; top: -5px; width: 93px; }
  .price-sticker strong { font-size: 24px; }
  .price-sticker span, .price-sticker small { font-size: 7px; }
  .search-card { border-radius: 25px; box-shadow: 7px 7px 0 var(--ink); padding: 25px 19px; }
  .search-card-top { padding-right: 56px; }
  .search-card-top h2 { font-size: 19px; }
  .step-indicator { display: none; }
  .input-shell { min-height: 55px; }
  .card-footnote { align-items: flex-start; flex-wrap: wrap; line-height: 1.3; }
  .ticker { padding: 15px 0; }
  .ticker-track { animation: ticker 18s linear infinite; gap: 48px; justify-content: flex-start; padding-left: 22px; width: max-content; }
  .section { padding: 76px 18px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .business-copy h2 { font-size: 39px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 245px; }
  .how-section { padding: 0 12px; }
  .how-shell { border-radius: 29px; gap: 50px; padding: 50px 25px; }
  .how-intro h2 { font-size: 40px; }
  .steps article { gap: 15px; }
  .guide-section .section-heading { align-items: flex-start; }
  .all-guides { margin-top: -8px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card:last-child { display: block; }
  .business-section { padding: 0 12px 76px; }
  .business-card { border-radius: 29px; padding: 48px 25px 34px; }
  .business-actions { align-items: flex-start; flex-direction: column; }
  .business-preview { min-height: 280px; }
  .back-card { left: 18px; right: -10px; }
  .front-card { padding: 18px; right: 0; }
  .profile-head b { display: none; }
  footer { padding: 58px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; margin-top: 40px; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ================================================================
   LEGACY PAGE ADAPTER
   Applies the new marketplace identity to every page in the package.
   ================================================================ */

body:not(.home-modern) {
  background:
    radial-gradient(circle at 8% 4%, rgba(200, 255, 77, .18), transparent 24rem),
    var(--paper) !important;
  color: var(--ink) !important;
}

body > header:not(.site-header) {
  align-items: center !important;
  backdrop-filter: blur(18px);
  background: rgba(246, 245, 239, .94) !important;
  border-bottom: 1px solid rgba(16, 35, 29, .11) !important;
  color: var(--ink) !important;
  display: flex !important;
  height: 78px;
  justify-content: space-between !important;
  padding: 0 max(28px, calc((100vw - 1224px) / 2)) !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
}

body > header:not(.site-header) .header-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0;
  max-width: none;
  width: 100%;
}

body > header:not(.site-header) .logo {
  align-items: center;
  color: var(--ink) !important;
  display: inline-flex;
  font-size: 20px !important;
  font-weight: 850 !important;
  gap: 11px;
  letter-spacing: -.055em;
  text-decoration: none;
  white-space: nowrap;
}

body > header:not(.site-header) .logo-badge,
body > header:not(.site-header) .badge {
  align-items: center;
  background: var(--ink) !important;
  border: 0 !important;
  border-radius: 11px 4px 11px 11px !important;
  box-shadow: none !important;
  color: var(--lime) !important;
  display: inline-flex;
  font-size: 20px;
  font-weight: 850;
  height: 40px;
  justify-content: center;
  line-height: 1;
  transform: rotate(-2deg);
  width: 40px;
}

body > header:not(.site-header) .highlight {
  background: none !important;
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

body > header:not(.site-header) nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

body > header:not(.site-header) nav a {
  color: var(--ink-soft) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  position: relative;
  text-decoration: none;
}

body > header:not(.site-header) nav a.active::after {
  background: var(--coral) !important;
  bottom: -9px !important;
  box-shadow: none !important;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

body > header:not(.site-header) nav a.nav-cta,
body > header:not(.site-header) nav a:last-child {
  align-items: center;
  background: var(--ink) !important;
  border: 0;
  border-radius: 999px !important;
  box-shadow: none !important;
  color: white !important;
  display: inline-flex;
  padding: 12px 18px !important;
  transition: transform .2s, background .2s;
}

body > header:not(.site-header) nav a.nav-cta:hover,
body > header:not(.site-header) nav a:last-child:hover {
  background: #244139 !important;
  transform: translateY(-2px);
}

.modern-menu-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.modern-menu-toggle span,
.modern-menu-toggle::before,
.modern-menu-toggle::after {
  background: currentColor;
  border-radius: 2px;
  content: "";
  display: block;
  height: 2px;
  transition: transform .2s, opacity .2s;
  width: 19px;
}

.modern-menu-toggle span { margin: 4px 0; }
.modern-menu-toggle.open span { opacity: 0; }
.modern-menu-toggle.open::before { transform: translateY(6px) rotate(45deg); }
.modern-menu-toggle.open::after { transform: translateY(-6px) rotate(-45deg); }

body:not(.home-modern) .container,
.article-container {
  margin: 0 auto !important;
  max-width: 1224px !important;
  padding: 48px 28px 90px !important;
}

.breadcrumb {
  color: #697670 !important;
  font-size: 12px !important;
  font-weight: 650;
  margin: 0 0 23px !important;
}

.breadcrumb a {
  color: var(--ink) !important;
  text-decoration-color: var(--lime-dark) !important;
  text-underline-offset: 3px;
}

/* Secondary page heroes */
.hero-glow-container,
.filter-glass-header {
  background: var(--lime) !important;
  color: var(--ink) !important;
  overflow: hidden;
  padding: 78px 28px 92px !important;
  position: relative;
}

.hero-glow-container::before,
.filter-glass-header::before {
  background-image: radial-gradient(rgba(16, 35, 29, .2) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  content: "";
  inset: 0 52% 0 0;
  opacity: .42;
  position: absolute;
}

.hero-mesh {
  background: none !important;
  border: 1px solid rgba(16, 35, 29, .26);
  border-radius: 50%;
  filter: none !important;
  height: 520px !important;
  left: -170px !important;
  top: 90px !important;
  transform: none !important;
  width: 520px !important;
}

.hero-content,
.filter-glass-header > div {
  margin: 0 auto;
  max-width: 980px !important;
  position: relative;
  text-align: center;
  z-index: 2;
}

.pill-tag,
.filter-glass-header .pulse-badge,
.article-badge,
.hero-badge {
  background: var(--white) !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  display: inline-flex;
  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: .1em;
  padding: 8px 12px !important;
  text-transform: uppercase;
}

.pulse-dot {
  background: var(--coral) !important;
  box-shadow: none !important;
}

.hero-content h1,
.filter-glass-header h1 {
  color: var(--ink) !important;
  font-size: clamp(43px, 6vw, 72px) !important;
  font-weight: 900 !important;
  letter-spacing: -.065em !important;
  line-height: .98 !important;
  margin: 18px auto 20px !important;
  max-width: 950px;
}

.gradient-text {
  background: none !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  text-shadow: 1px 1px 0 var(--ink), -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink);
}

.hero-content .subtitle,
.filter-glass-header p {
  color: #30463e !important;
  font-size: 17px !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.search-glass-card,
.filter-panel,
.check-search-bar {
  align-items: end !important;
  background: var(--white) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 24px !important;
  box-shadow: 9px 9px 0 var(--ink) !important;
  display: grid !important;
  gap: 13px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  margin: 33px auto 0 !important;
  max-width: 1090px !important;
  padding: 18px !important;
  position: relative;
  text-align: left;
  z-index: 3;
}

.check-search-bar {
  align-items: center !important;
  grid-template-columns: 1fr auto;
  max-width: 780px !important;
}

.search-field label {
  color: var(--ink) !important;
  display: block;
  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: .06em;
  margin: 0 0 6px 4px;
  text-transform: uppercase;
}

.search-field input,
.search-field select,
.check-search-bar input,
.form-group input,
.form-group select,
.form-group textarea,
.unit-input input {
  background: #f1f3ed !important;
  border: 1px solid #cbd3c9 !important;
  border-radius: 13px !important;
  color: var(--ink) !important;
  min-height: 54px;
  outline: none;
  padding: 12px 14px !important;
  width: 100%;
}

.search-field input:focus,
.search-field select:focus,
.check-search-bar input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.unit-input input:focus {
  background: white !important;
  border-color: var(--ink) !important;
  box-shadow: 0 0 0 3px rgba(200, 255, 77, .7) !important;
}

.btn-primary,
.btn-search-action,
.submit-btn,
.btn-cta,
.btn-profile-card {
  align-items: center;
  background: var(--ink) !important;
  border: 0 !important;
  border-radius: 13px !important;
  box-shadow: none !important;
  color: white !important;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px !important;
  font-weight: 800 !important;
  justify-content: center;
  min-height: 52px;
  padding: 13px 18px !important;
  text-decoration: none !important;
  transition: background .2s, transform .2s;
}

.btn-primary:hover,
.btn-search-action:hover,
.submit-btn:hover,
.btn-cta:hover,
.btn-profile-card:hover {
  background: #244139 !important;
  transform: translateY(-2px);
}

/* Home bento content retained from the original package */
.bento-section {
  background: transparent !important;
  padding: 96px 28px !important;
}

.bento-grid {
  gap: 16px !important;
  margin: 0 auto;
  max-width: 1224px !important;
}

.bento-card {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  min-height: 290px !important;
  padding: 30px !important;
  transition: border-color .25s, box-shadow .25s, transform .25s !important;
}

.bento-card:hover {
  border-color: var(--ink) !important;
  box-shadow: 7px 7px 0 var(--ink) !important;
  transform: translate(-4px, -4px) !important;
}

.bento-card p { color: #61706a !important; }
.bento-card h3 { color: var(--ink) !important; letter-spacing: -.035em; }

.bento-highlight {
  background: var(--ink) !important;
  color: white !important;
}

.bento-highlight h3 { color: white !important; }
.bento-highlight p { color: #b7c4bf !important; }
.bento-highlight .btn-primary:first-of-type { background: var(--lime) !important; color: var(--ink) !important; }
.bento-highlight .btn-primary { border: 1px solid rgba(255,255,255,.2) !important; }

.icon-bubble {
  align-items: center;
  border: 1px solid rgba(16,35,29,.12);
  border-radius: 16px !important;
  box-shadow: none !important;
  display: flex;
  height: 58px !important;
  justify-content: center;
  width: 58px !important;
}

.bubble-amber { background: #ffe5a8 !important; }
.bubble-blue { background: #d3efff !important; }
.bubble-emerald { background: #c6f5e8 !important; }
.bubble-purple { background: #e4d8ff !important; }
.bubble-rose { background: #ffd0c5 !important; }

.bento-footer-link,
.card-cta-link {
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

/* Directory */
.filter-glass-header {
  padding-bottom: 74px !important;
}

.filter-panel {
  align-items: end !important;
  margin: -82px auto 45px !important;
  position: relative;
  z-index: 5;
}

.filter-panel .pulse-badge {
  align-items: center;
  align-self: center;
  background: #eaffba !important;
  border-color: #a8cb62 !important;
  color: var(--ink) !important;
  justify-content: center;
  min-height: 45px;
}

.company-cards-grid {
  display: grid !important;
  gap: 18px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.company-bento-card,
.profile-hero-card {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  overflow: hidden;
  padding: 28px !important;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.company-bento-card:hover {
  border-color: var(--ink) !important;
  box-shadow: 7px 7px 0 var(--ink) !important;
  transform: translate(-4px, -4px) !important;
}

.card-category-tag,
.pulse-badge {
  background: #eef1e9 !important;
  border: 1px solid #d0d7ce !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  font-size: 9px !important;
  font-weight: 850 !important;
  letter-spacing: .06em;
  padding: 6px 9px !important;
  text-transform: uppercase;
}

.pricing-preview-box {
  background: #f1f3ed !important;
  border: 1px solid #d3d9d1 !important;
  border-radius: 14px !important;
}

.price-title { color: #53635d !important; }

.btn-external-card {
  background: transparent !important;
  border: 1px solid #c4ccc3 !important;
  border-radius: 12px !important;
  color: var(--ink) !important;
  font-weight: 750 !important;
}

.btn-external-card:hover { background: var(--lime) !important; border-color: var(--ink) !important; }

.profile-grid-layout { gap: 20px !important; }

/* Articles, legal pages and guide hubs */
.article-hero,
.hero-box {
  background: var(--lime) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 32px !important;
  box-shadow: 9px 9px 0 var(--ink) !important;
  color: var(--ink) !important;
  margin-bottom: 32px !important;
  overflow: hidden;
  padding: clamp(34px, 6vw, 68px) !important;
  position: relative;
}

.article-hero::after,
.hero-box::after {
  border: 1px solid rgba(16,35,29,.28);
  border-radius: 50%;
  content: "";
  height: 340px;
  position: absolute;
  right: -180px;
  top: -180px;
  width: 340px;
}

.article-hero h1,
.hero-box h1 {
  color: var(--ink) !important;
  font-size: clamp(38px, 5vw, 62px) !important;
  font-weight: 900 !important;
  letter-spacing: -.06em !important;
  line-height: 1 !important;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.lead,
.article-hero p,
.hero-box p {
  color: #334a41 !important;
  font-size: 17px !important;
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.subnav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.subnav-pills a {
  background: rgba(255,255,255,.72) !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  font-size: 11px !important;
  font-weight: 750;
  padding: 8px 12px !important;
}

.subnav-pills a.active { background: var(--ink) !important; color: white !important; }

.content-section,
.prose-section,
.form-card,
.tldr-box {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  margin-bottom: 20px !important;
  padding: clamp(25px, 4vw, 46px) !important;
}

.content-section h2,
.prose-section h2,
.form-card .section-heading,
.tldr-header {
  border-color: #d9dfd7 !important;
  color: var(--ink) !important;
  font-size: clamp(25px, 3vw, 35px) !important;
  font-weight: 850 !important;
  letter-spacing: -.04em;
  line-height: 1.15;
}

.content-section h3,
.prose-section h3 { color: var(--ink) !important; font-size: 20px; letter-spacing: -.025em; }

.content-section p,
.content-section li,
.prose-section p,
.prose-section li,
.form-card p { color: #4d5e57 !important; }

.table-responsive,
.table-wrap {
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  overflow-x: auto;
}

.data-table,
.rich-table {
  border-collapse: collapse !important;
  min-width: 720px;
  width: 100%;
}

.data-table th,
.rich-table th {
  background: var(--ink) !important;
  border-color: #354b43 !important;
  color: white !important;
  font-size: 11px !important;
  letter-spacing: .04em;
  padding: 14px !important;
  text-transform: uppercase;
}

.data-table td,
.rich-table td {
  background: var(--white) !important;
  border-color: var(--line) !important;
  color: #42534c !important;
  padding: 14px !important;
}

.data-table tr:nth-child(even) td,
.rich-table tr:nth-child(even) td { background: #f4f5f0 !important; }

.data-table td.highlight,
.rich-table td.highlight-cell,
.highlight-cell {
  background: #ebffc4 !important;
  color: var(--ink) !important;
  font-weight: 850 !important;
}

.info-box {
  background: #e7f5ff !important;
  border: 1px solid #a9d9f4 !important;
  border-left: 5px solid var(--blue) !important;
  border-radius: 14px !important;
  color: var(--ink) !important;
  padding: 18px !important;
}

.tldr-box {
  background: #eaffba !important;
  border-color: #b9db78 !important;
}

.tldr-list li::marker { color: var(--ink); }

.faq-item,
.faq-card {
  background: #f2f4ee !important;
  border: 1px solid #d1d8cf !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question,
.faq-card-question {
  color: var(--ink) !important;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 800 !important;
  padding: 17px 18px !important;
}

.faq-answer,
.faq-card-answer {
  background: white !important;
  color: #50605a !important;
  display: none;
  padding: 16px 18px !important;
}

.faq-item.modern-open .faq-answer,
.faq-card.modern-open .faq-card-answer { display: block !important; }

.faq-item.modern-open .faq-question span,
.faq-card.modern-open .faq-card-question span { display: inline-block; transform: rotate(180deg); }

.cta-banner {
  background: var(--coral) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 28px !important;
  box-shadow: 8px 8px 0 var(--ink) !important;
  color: var(--ink) !important;
  margin: 34px 0 !important;
  padding: clamp(34px, 5vw, 58px) !important;
}

.cta-banner h2,
.cta-banner p { color: var(--ink) !important; }

/* Registration */
.form-card { max-width: 1000px; margin-left: auto !important; margin-right: auto !important; }
.form-grid { gap: 17px !important; }
.form-group { gap: 7px !important; }
.form-group label { color: var(--ink) !important; font-size: 12px !important; font-weight: 800 !important; }
.form-group textarea { min-height: 120px; }
.pricing-section { background: #f2f4ee !important; border: 1px solid var(--line) !important; border-radius: 18px !important; padding: 24px !important; }
.submit-btn { border-radius: 14px !important; min-height: 60px; width: 100%; }

/* Ratgeber cards */
.category-filter-nav {
  justify-content: flex-start !important;
  margin: 10px 0 35px !important;
}

.cat-filter-btn {
  background: var(--white) !important;
  border: 1px solid #c7cfc5 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  cursor: pointer;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 10px 13px !important;
}

.cat-filter-btn.active,
.cat-filter-btn:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: white !important;
  transform: none !important;
}

.ratgeber-cards-grid { gap: 18px !important; }

.ratgeber-card {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 23px !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s !important;
}

.ratgeber-card:hover {
  border-color: var(--ink) !important;
  box-shadow: 7px 7px 0 var(--ink) !important;
  transform: translate(-4px, -4px) !important;
}

.card-visual-header {
  background: var(--lime) !important;
  border-bottom: 1px solid var(--ink);
}

.ratgeber-card:nth-child(3n + 2) .card-visual-header { background: #ffc3b5 !important; }
.ratgeber-card:nth-child(3n) .card-visual-header { background: #c1e7ff !important; }
.card-illustration { stroke: var(--ink) !important; }
.card-read-badge { background: var(--white) !important; border: 1px solid var(--ink) !important; color: var(--ink) !important; }
.eu-ai-badge { background: var(--ink) !important; color: var(--lime) !important; }
.card-tag { color: #64736d !important; }
.card-title { color: var(--ink) !important; letter-spacing: -.035em; }
.card-excerpt { color: #5b6c65 !important; }

/* Footer variants */
footer {
  background: var(--ink) !important;
  color: white !important;
  margin-top: 0 !important;
  padding: 70px 28px 24px !important;
}

.footer-inner,
.footer-container {
  display: grid !important;
  gap: 56px !important;
  grid-template-columns: 2fr repeat(3, 1fr) !important;
  margin: 0 auto !important;
  max-width: 1224px !important;
  padding: 0 !important;
}

.footer-col h4 {
  color: var(--lime) !important;
  font-size: 11px !important;
  letter-spacing: .11em;
  margin: 0 0 18px !important;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  color: #b1bfba !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

.footer-col a:hover { color: white !important; }

.footer-bottom,
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.12) !important;
  color: #899a94 !important;
  font-size: 10px !important;
  margin: 50px auto 0 !important;
  max-width: 1224px !important;
  padding: 20px 0 0 !important;
}

@media (max-width: 900px) {
  body > header:not(.site-header) { height: 70px; padding: 0 20px !important; }
  body > header:not(.site-header) .header-container { width: auto; flex: 1; }
  body > header:not(.site-header) nav {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none !important;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 18px 20px 24px;
    position: absolute;
    right: 0;
    top: 70px;
  }
  body > header:not(.site-header) nav.modern-open { display: flex !important; }
  body > header:not(.site-header) nav a { padding: 13px 4px; }
  body > header:not(.site-header) nav a.active::after { display: none; }
  body > header:not(.site-header) nav a.nav-cta,
  body > header:not(.site-header) nav a:last-child { justify-content: center; margin-top: 8px; }
  .modern-menu-toggle { display: block; margin-left: 16px; }
  .search-glass-card,
  .filter-panel { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .filter-panel { margin-top: -70px !important; }
  .company-cards-grid { grid-template-columns: 1fr !important; }
  .footer-inner,
  .footer-container { grid-template-columns: 2fr 1fr 1fr !important; }
  .footer-col:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  body > header:not(.site-header) .logo { font-size: 17px !important; }
  body > header:not(.site-header) .logo-badge,
  body > header:not(.site-header) .badge { height: 35px; width: 35px; }
  .hero-glow-container,
  .filter-glass-header { padding: 58px 18px 76px !important; }
  .hero-content h1,
  .filter-glass-header h1 { font-size: 42px !important; }
  .hero-content .subtitle,
  .filter-glass-header p { font-size: 15px !important; }
  .search-glass-card,
  .filter-panel,
  .check-search-bar { grid-template-columns: 1fr !important; }
  .filter-panel { margin-left: -10px !important; margin-right: -10px !important; }
  body:not(.home-modern) .container,
  .article-container { padding: 34px 16px 70px !important; }
  .article-hero,
  .hero-box { border-radius: 25px !important; box-shadow: 6px 6px 0 var(--ink) !important; padding: 31px 22px !important; }
  .article-hero h1,
  .hero-box h1 { font-size: 37px !important; }
  .content-section,
  .prose-section,
  .form-card,
  .tldr-box { border-radius: 19px !important; padding: 24px 19px !important; }
  .footer-inner,
  .footer-container { grid-template-columns: 1fr 1fr !important; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
}
