:root {
  --max: 1160px;
  --ink: #111827;
  --navy: #172554;
  --muted: #64748b;
  --surface: #ffffff;
  --soft: #eff6ff;
  --line: #e2e8f0;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --coral: #ef4444;
  --radius-small: 12px;
  --radius: 18px;
  --radius-large: 24px;
  --shadow-small: 0 8px 24px rgba(15, 23, 42, 0.055);
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
  --space-section: 44px;
  --space-section-tight: 28px;
  --space-block: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #ffffff;
}

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-180%);
}

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

.site-header {
  border-bottom: 1px solid rgba(23, 35, 43, 0.1);
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom-color: rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 24px rgba(15, 23, 42, 0.045);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: url("welisen-guide-icon-40.webp") center / cover no-repeat;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(29, 78, 216, 0.2);
  font-size: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 10px;
  font-size: 0.84rem;
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: #475569;
  border-radius: 10px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--soft);
  box-shadow: inset 0 0 0 1px #dbeafe;
}

.trust-bar {
  padding: 9px 16px;
  border-bottom: 1px solid #cadeff;
  font-size: 0.78rem;
  text-align: center;
  color: #1e3a8a;
  background: #eff6ff;
  border-bottom-color: #dbeafe;
  font-weight: 650;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

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

.search-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  min-height: 520px;
  background:
  linear-gradient(105deg, rgba(29, 78, 216, 0.95) 0%, rgba(59, 130, 246, 0.86) 52%, rgba(30, 58, 138, 0.94) 100%),
  linear-gradient(180deg, rgba(30, 64, 175, 0.12), rgba(15, 23, 42, 0.42)),
  url("welisen-search-hero.webp") center 53% / cover no-repeat;
}

.search-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
  radial-gradient(circle at 50% 33%, rgba(255, 255, 255, 0.18), transparent 30%),
  linear-gradient(180deg, transparent 70%, rgba(15, 23, 42, 0.2));
}

.search-hero-inner {
  padding-top: 42px;
  padding-bottom: 30px;
  text-align: center;
}

.search-hero-kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  color: #dbeafe;
}

.search-hero h1 {
  max-width: 980px;
  margin: 0 auto 12px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.45rem);
  line-height: 1.04;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.34);
}

.search-hero-lede {
  max-width: 770px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.9vw, 1.12rem);
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-search-form {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(190px, 250px);
  align-items: center;
  overflow: hidden;
  background: #fff;
  min-height: 72px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.26);
}

.hero-search-icon {
  position: relative;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  border: 3px solid #9ca4a6;
  border-radius: 50%;
}

.hero-search-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  right: -8px;
  bottom: -5px;
  background: #9ca4a6;
  border-radius: 2px;
  transform: rotate(46deg);
  transform-origin: left center;
}

.hero-search-form input {
  width: 100%;
  min-width: 0;
  height: 76px;
  padding: 0 18px 0 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1.08rem;
}

.hero-search-form input::placeholder {
  color: #8b9497;
  opacity: 1;
}

.hero-search-form input:focus-visible {
  outline: 0;
}

.hero-search-form:focus-within {
  outline: 4px solid rgba(255, 215, 122, 0.95);
  outline-offset: 4px;
}

.hero-search-form button {
  align-self: stretch;
  padding: 0 24px;
  border: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  transition: background 160ms ease;
  min-height: 60px;
  color: #ffffff;
  background: #c2410c;
  border-radius: 13px;
}

.hero-search-form button:hover {
  color: #ffffff;
  background: #9a3412;
}

.popular-searches {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
}

.popular-searches > span {
  font-weight: 750;
}

.popular-searches a {
  padding: 5px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.35);
}

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

.discovery-steps {
  position: relative;
  width: min(100%, 930px);
  margin: 16px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
}

.discovery-steps::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: rgba(255, 255, 255, 0.58);
}

.discovery-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.discovery-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  color: #7a340e;
  background: #fff4e2;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
  font-size: 0.7rem;
  font-weight: 900;
  text-shadow: none;
}

.discovery-steps strong {
  font-size: 0.86rem;
  font-weight: 800;
}

.discovery-steps small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.search-hero-trust {
  max-width: 980px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.search-hero-trust a {
  color: #fff;
  font-weight: 800;
}

.breadcrumb {
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: #8d999d;
}

.hero {
  padding: 46px 0 42px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 9px;
  color: var(--blue-dark);
  background: var(--soft);
  border: 1px solid #dbeafe;
  border-radius: 999px;
  font-size: 0.7rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--navy);
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 7vw, 5rem);
  font-weight: 850;
}

.article-hero h1 {
  max-width: 940px;
  color: #172554;
  font-size: clamp(1.9rem, 3.3vw, 2.75rem);
}

h2 {
  font-weight: 820;
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.65;
  color: #475569;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  min-height: 46px;
  color: var(--navy);
  background: #ffffff;
  border-color: #cbd5e1;
  border-radius: var(--radius-small);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  color: var(--blue-dark);
  background: #f8fbff;
  border-color: #93c5fd;
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.12);
}

.button-primary {
  color: #ffffff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.22);
}

.button-primary:hover {
  color: #ffffff;
  background: #1e40af;
}

.external-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.search-form label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bec8c2;
  font: inherit;
  font-size: 0.88rem;
  border-color: #cbd5e1;
  border-radius: var(--radius-small);
}

.search-form button {
  min-height: 44px;
  padding: 0 14px;
  color: #fff;
  border: 0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 820;
  cursor: pointer;
  background: var(--blue-dark);
  border-radius: var(--radius-small);
}

.section {
  border-top: 1px solid rgba(23, 35, 43, 0.1);
  padding: var(--space-section) 0;
  background: #ffffff;
  border-top-color: rgba(148, 163, 184, 0.22);
}

.section-tight {
  padding: var(--space-section-tight) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-block, 24px);
}

.section-head p {
  color: var(--muted);
}

.quick-answer {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  background: #ffffff;
  border-color: #dbeafe;
  border-left-color: var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.quick-answer strong {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.quick-answer p {
  margin: 0;
  font-size: 1.08rem;
}

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

.card,
.link-card {
  padding: 24px;
  background: rgba(255, 254, 249, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card:hover,
.link-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 14px 32px rgba(29, 78, 216, 0.09);
  transform: translateY(-2px);
}

.article-library-grid .link-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
}

.article-library-grid .card-cta {
  margin-top: auto;
  padding-top: 18px;
}

.article-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  width: fit-content;
  padding: 4px 8px;
  color: var(--blue-dark);
  background: var(--soft);
  border: 1px solid #dbeafe;
  border-radius: 999px;
}

.card-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
  color: var(--blue-dark);
  background: var(--soft);
  border-color: #bfdbfe;
}

.card p,
.link-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 820;
}

.directory-section {
  background: #ffffff;
}

.directory-head {
  max-width: 760px;
  margin: 0 auto var(--space-block, 24px);
  text-align: center;
}

.directory-head .section-label {
  color: #c2410c;
  background: #fff7ed;
  border-color: #fed7aa;
}

.section-head .section-label {
  color: var(--blue-dark);
}

.directory-head h2 {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.directory-head p {
  color: var(--muted);
}

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

.directory-card {
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  border-color: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.directory-card:hover {
  color: var(--ink);
  border-color: #60a5fa;
  box-shadow: 0 16px 34px rgba(29, 78, 216, 0.11);
  transform: translateY(-2px);
}

.directory-icon {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  margin-bottom: 13px;
  background-size: 400% 300%, 100% 100%;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-image: url("welisen-category-icons.webp"), linear-gradient(#eff6ff, #eff6ff);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px #bfdbfe, 0 8px 20px rgba(59, 130, 246, 0.08);
}

.icon-shoes {
  background-position: 0% 0%, center;
}

.icon-hoodies {
  background-position: 33.333% 0%, center;
}

.icon-shirts {
  background-position: 66.667% 0%, center;
}

.icon-jackets {
  background-position: 100% 0%, center;
}

.icon-pants {
  background-position: 0% 50%, center;
}

.icon-bags {
  background-position: 33.333% 50%, center;
}

.icon-accessories {
  background-position: 66.667% 50%, center;
}

.icon-sneakers {
  background-position: 100% 50%, center;
}

.icon-watches {
  background-position: 0% 100%, center;
}

.icon-shorts {
  background-position: 33.333% 100%, center;
}

.icon-jewelry {
  background-position: 66.667% 100%, center;
}

.icon-sweaters {
  background-position: 100% 100%, center;
}

.directory-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.directory-card p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.directory-cta {
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 850;
}

.directory-cta::after {
  content: " ↗";
  color: #d79500;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow li {
  position: relative;
  padding: 0 34px 0 0;
  counter-increment: flow;
}

.flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 3px;
  right: 12px;
  color: var(--coral);
  font-size: 1.3rem;
  font-weight: 900;
}

.flow li::before {
  content: "0" counter(flow);
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.flow p {
  color: var(--muted);
  font-size: 0.93rem;
}

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

.checklist li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-color: #dbeafe;
  border-radius: var(--radius-small);
}

.checklist li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 17px;
  width: 17px;
  height: 17px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 5px;
}

.prose {
  max-width: 100%;
}

.prose > p,
.prose > ul,
.prose > ol,
.prose > h2,
.prose > h3,
.prose > blockquote {
  max-width: 780px;
}

.prose > * + * {
  margin-top: 16px;
}

.prose h2 {
  margin-top: 34px;
}

.prose h3 {
  margin-top: 24px;
}

.prose > h2:first-child {
  margin-top: 0;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 8px;
}

.topic-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin: 8px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-color: #dbeafe;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.topic-nav strong {
  margin-right: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-nav a {
  padding: 7px 10px;
  border: 1px solid #cddbf5;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--blue-dark);
  background: var(--soft);
  border-color: #dbeafe;
}

.topic-nav a:hover {
  background: #dbeafe;
  border-color: #93c5fd;
}

.formula-box {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 22px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.formula-box strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.formula-box span {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

.note,
.warning,
.good-example,
.weak-example {
  margin: 20px 0;
  padding: 20px 22px;
  border-radius: var(--radius);
}

.note {
  border: 1px solid #cfdbd4;
  background: #ffffff;
  border-color: #bfdbfe;
}

.warning {
  border: 1px solid #ebc98e;
  background: #ffffff;
  border-color: #fed7aa;
}

.good-example {
  border: 1px solid #b9dfc9;
  background: #ffffff;
  border-color: #bbf7d0;
}

.weak-example {
  border: 1px solid #edc0b1;
  background: #ffffff;
  border-color: #fed7aa;
}

.note > :last-child,
.warning > :last-child,
.good-example > :last-child,
.weak-example > :last-child {
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-color: #dbeafe;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: #ffffff;
}

tr:last-child td {
  border-bottom: 0;
}

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

.score {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.score b {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.search-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-ideas li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: #334155;
  background: #ffffff;
  border-color: #dbeafe;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 23px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-item h2 {
  margin-bottom: 11px;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.cta-panel h2 {
  margin-bottom: 10px;
  color: var(--navy);
}

.cta-panel p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.cta-panel .button {
  color: var(--blue-dark);
  background: var(--soft);
  border-color: #dbeafe;
}

.site-footer {
  padding: 32px 0 20px;
  margin-top: 32px;
  color: var(--ink);
  background: #ffffff;
  border-top: 1px solid #dbeafe;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.footer-brand {
  color: var(--navy);
}

.footer-trust {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  text-decoration: none;
  color: #334155;
  padding: 4px 7px;
  border-radius: 8px;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #39464c;
  font-size: 0.76rem;
  color: var(--muted);
  border-top-color: var(--line);
}

.page-shell > .breadcrumb,
.page-shell > .hero.article-hero,
.page-shell > .section:not(.directory-section),
.page-shell > .topic-nav {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.section-head,
.directory-head {
  max-width: 760px;
}

.section-head h2,
.directory-head h2 {
  max-width: 680px;
}

.section-head p:last-child,
.directory-head p:last-child {
  margin-bottom: 0;
}

.site-header .brand {
  padding-right: 0;
  color: #172554;
  font-size: 1.1rem;
}

.site-header .brand::after {
  content: "INDEPENDENT GUIDE";
  margin-left: 2px;
  color: #64748b;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.25;
  white-space: normal;
}

.breadcrumb a {
  color: #52647e;
  font-weight: 700;
  text-decoration: none;
}

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

.hero.article-hero {
  margin-top: 14px;
  padding: clamp(24px, 3.5vw, 40px);
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.article-meta {
  display: flex;
  gap: 8px;
  margin: 16px 0 0;
  flex-wrap: wrap;
}

.article-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  color: #1e40af;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.article-meta a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.article-meta a:hover {
  color: var(--blue-dark);
}

.external-note-centered {
  margin-top: 14px;
  text-align: center;
}

.search-form-narrow {
  max-width: 560px;
}

.search-form input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.search-form button:hover {
  background: #1e40af;
}

.card,
.link-card,
.faq-item,
.score {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card h3,
.link-card h3,
.faq-item h2 {
  color: var(--navy);
}

.card p:last-child,
.link-card p:last-child,
.score p:last-child {
  margin-bottom: 0;
}

.card-cta,
.directory-cta {
  color: var(--blue-dark);
}

tbody tr:hover td {
  background: #f8fbff;
}

.cta-panel .button:hover {
  background: #dbeafe;
  border-color: #93c5fd;
}

.footer-links a:hover {
  color: var(--blue-dark);
  background: var(--soft);
}

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

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

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

.whatsapp-float-label {
  position: absolute;
  top: 50%;
  right: 68px;
  width: max-content;
  max-width: 210px;
  padding: 0.55rem 0.7rem;
  color: #ffffff;
  background: #17231d;
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  visibility: hidden;
  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 {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .nav-shell {
    padding: 13px 0;
    align-items: flex-start;
  }

  .site-nav {
    max-width: 540px;
  }

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

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

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

  .search-hero {
    background-position: 44% 53%;
  }

  .search-hero-inner {
    padding-top: 38px;
  }

  .hero-search-form {
    grid-template-columns: 64px minmax(0, 1fr) minmax(180px, 220px);
  }

  .site-header .brand {
    padding-right: 0;
  }

  .site-header .brand::after {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15.5px;
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    width: min(calc(100% - 24px), var(--max));
    display: block;
    padding: 10px 0 9px;
  }

  .site-nav {
    gap: 3px;
    margin-top: 8px;
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .site-nav a {
    min-height: 44px;
    padding: 7px 9px;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .page-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .trust-bar {
    padding-inline: 12px;
    text-align: left;
  }

  .search-hero {
    background-position: 35% center;
    background-image:
    linear-gradient(90deg, rgba(13, 51, 153, 0.93) 0%, rgba(30, 91, 226, 0.83) 52%, rgba(28, 48, 156, 0.93) 100%),
    linear-gradient(180deg, rgba(13, 55, 176, 0.45) 0%, rgba(13, 55, 176, 0.28) 50%, rgba(10, 35, 112, 0.8) 100%),
    url("welisen-search-hero.webp");
    min-height: 580px;
  }

  .search-hero-inner {
    padding-top: 32px;
    padding-bottom: 22px;
  }

  .search-hero-kicker {
    margin-bottom: 12px;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .search-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.1rem);
  }

  .search-hero-lede {
    margin-bottom: 18px;
    font-size: 0.94rem;
  }

  .hero-search-form {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    border-width: 4px;
    border-radius: 18px;
  }

  .hero-search-icon {
    width: 21px;
    height: 21px;
    border-width: 2px;
  }

  .hero-search-icon::after {
    width: 8px;
    height: 2px;
    right: -7px;
    bottom: -4px;
  }

  .hero-search-form input {
    height: 60px;
    padding-right: 12px;
    font-size: 0.88rem;
  }

  .hero-search-form button {
    grid-column: 1 / -1;
    font-size: 0.9rem;
    min-height: 52px;
    border-radius: 0 0 13px 13px;
  }

  .popular-searches {
    gap: 6px;
  }

  .popular-searches a {
    padding: 4px 8px;
  }

  .discovery-steps {
    gap: 4px;
    margin-top: 14px;
  }

  .discovery-steps::before {
    left: 16%;
    right: 16%;
  }

  .discovery-steps strong {
    max-width: 98px;
    font-size: 0.73rem;
    line-height: 1.28;
  }

  .discovery-steps small {
    display: none;
  }

  .search-hero-trust {
    margin-top: 12px;
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .hero {
    padding: 34px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .article-hero h1 {
    font-size: clamp(1.7rem, 7.3vw, 2.2rem);
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 34px 0;
  }

  .quick-answer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 21px;
  }

  .feature-grid,
.link-grid {
    grid-template-columns: 1fr;
  }

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

  .directory-head {
    margin-bottom: 20px;
  }

  .directory-card {
    min-height: 268px;
    padding: 17px 11px 15px;
    border-radius: 16px;
  }

  .directory-icon {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-radius: 17px;
  }

  .directory-card h3 {
    font-size: 0.94rem;
  }

  .directory-card p {
    font-size: 0.75rem;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow li {
    padding-right: 0;
  }

  .flow li:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -28px;
    left: 7px;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .hero.article-hero {
    margin-top: 10px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .article-meta {
    gap: 6px;
  }

  .article-meta span {
    font-size: 0.66rem;
  }

  .section-tight {
    padding: 24px 0;
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

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

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

  *,
*::before,
*::after {
    transition-duration: 0.01ms !important;
  }

  .whatsapp-float,
.whatsapp-float-label {
    transition: none;
  }
}

@media print {
  .whatsapp-float {
    display: none !important;
  }
}
