@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #07162d;
  --muted: #566174;
  --line: #dfe6ef;
  --soft: #f5f8fc;
  --navy: #062555;
  --red: #d01632;
  --nav-active: #176bff;
  --nav-active-bg: #f2f6ff;
  --shadow: 0 22px 60px rgba(8, 25, 56, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--font-sans);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  padding: 0;
  border-bottom: 0;
  background: transparent;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: 113px;
  height: 41px;
  overflow: hidden;
  background-image: url("site-logo-nav.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand::before {
  content: none;
}

.brand::after {
  content: none;
}

.site-logo {
  display: none;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
}

.primary-nav a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 24px 0;
  transition: color 0.18s ease;
}

.primary-nav a:hover,
.nav-dropdown > button:hover,
.primary-nav a.active,
.nav-dropdown:hover > button,
.nav-dropdown:focus-within > button,
.nav-dropdown.is-active > button {
  color: var(--nav-active);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 58px;
  left: 50%;
  z-index: 50;
  display: none;
  width: 220px;
  transform: translateX(-50%);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(8, 25, 56, 0.16);
}

.dropdown-menu.small {
  width: 160px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--nav-active-bg);
  color: var(--nav-active);
}

.dropdown-menu a.active {
  font-weight: 600;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.language {
  position: relative;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  min-width: 96px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.language-button:hover,
.language.is-open .language-button {
  border-color: #cfe0ff;
  background: var(--nav-active-bg);
  color: var(--nav-active);
}

.flag-img {
  width: 23px;
  height: 16px;
  border-radius: 2px;
  flex: 0 0 auto;
}

img.flag-img {
  object-fit: cover;
}

.language-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 15px;
  line-height: 1;
}

.chevron {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.language-menu {
  position: absolute;
  top: 46px;
  right: 0;
  z-index: 50;
  display: none;
  width: 160px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(8, 25, 56, 0.16);
}

.language.is-open .language-menu {
  display: grid;
  gap: 4px;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.language-option:hover,
.language-option.is-active {
  background: var(--nav-active-bg);
  color: var(--nav-active);
}

.hero {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  aspect-ratio: 1635 / 850;
  min-height: auto;
  margin: 8px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.94) 24%, rgba(255,255,255,0.62) 42%, rgba(255,255,255,0.06) 70%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.10)),
    url("belgium-hero.webp");
  background-size: 100% 100%, 100% 100%, 100% auto;
  background-position: center, center, top center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 60px rgba(8, 25, 56, 0.08);
}

.hero-content {
  width: min(680px, 60%);
  padding: 38px 0 86px 58px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(255,255,255,0.86);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, #111 0 33%, #ffd83d 33% 66%, #ef1f3d 66% 100%);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 strong {
  color: var(--red);
}

.hero-copy {
  max-width: 390px;
  margin-bottom: 18px;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.hero-notes {
  display: grid;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 24px;
}

.hero-notes svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: #0f172a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button.primary {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 18px 34px rgba(239, 31, 61, 0.24);
}

.button.primary:hover {
  transform: translateY(-2px);
  background: #b5122b;
  box-shadow: 0 22px 42px rgba(239, 31, 61, 0.34);
}

.stats-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(980px, calc(100% - 118px));
  margin: -54px auto 28px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.stat-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 24px;
  color: #ffffff;
  border-right: 1px solid rgba(255,255,255,0.22);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.stat-item strong {
  font-size: 13px;
  line-height: 1.1;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-title {
  margin-bottom: 26px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 7px;
  font-size: 25px;
  line-height: 1.15;
}

.section-title p {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
}

.section-title span {
  display: block;
  width: 46px;
  height: 2px;
  margin: 0 auto;
  background: var(--red);
}

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

.category-card {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(8, 25, 56, 0.04);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239,31,61,0.3);
  box-shadow: 0 18px 36px rgba(8, 25, 56, 0.1);
}

.category-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  object-fit: contain;
}

.workflow {
  padding: 22px 0 0;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 auto 28px;
}

.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 96px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 4px;
  z-index: 2;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.step-icon,
.mini-icon,
.cta-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
}

.step-icon {
  width: 68px;
  height: 68px;
}

.step-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #052353;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon .soft-line {
  stroke: #8fb0ff;
}

.step-icon .soft-fill {
  fill: #dbe7ff;
  stroke: none;
}

.steps h3 {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 950;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.flow-arrow {
  color: #9aa6b8;
  font-size: 28px;
  text-align: center;
}

.mini-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 25, 56, 0.05);
}

.mini {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.mini:last-child {
  border-right: 0;
}

.mini-icon {
  width: 46px;
  height: 46px;
}

.mini-icon svg {
  width: 27px;
  height: 27px;
  stroke: #052353;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-icon.flag {
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  padding: 9px;
}

.mini-icon.flag i {
  display: block;
  width: 100%;
  height: 28px;
}

.mini-icon.flag i:nth-child(1) { background: #111827; }
.mini-icon.flag i:nth-child(2) { background: #facc15; }
.mini-icon.flag i:nth-child(3) { background: #ef1f3d; }

.mini h3 {
  margin-bottom: 5px;
  font-size: 13px;
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.cta-panel {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(239,31,61,0.18);
  border-radius: 8px;
  background: linear-gradient(90deg, #fff0f3, #fff7f8);
  box-shadow: 0 18px 44px rgba(239,31,61,0.06);
}

.cta-icon {
  width: 62px;
  height: 62px;
  color: var(--red);
  border: 2px solid var(--red);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(239,31,61,0.14);
  font-size: 28px;
}

.cta-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-panel h2 {
  margin-bottom: 5px;
  font-size: 24px;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.sheet-page {
  padding: 8px 0 64px;
  background:
    radial-gradient(circle at 6% 12%, rgba(239,31,61,0.07), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(37,99,235,0.08), transparent 32%),
    #ffffff;
}

.sheet-hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 38px;
}

.sheet-copy h1 {
  margin-bottom: 8px;
  font-size: 48px;
  line-height: 1.05;
}

.sheet-copy h2 {
  margin-bottom: 24px;
  font-size: 25px;
  line-height: 1.35;
}

.sheet-copy h2 strong {
  color: var(--red);
}

.sheet-copy > p:not(.hero-badge) {
  max-width: 540px;
  color: #27344c;
  font-size: 16px;
  line-height: 1.8;
}

.sheet-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.sheet-points article,
.sheet-benefits article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
}

.round-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
}

.round-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #0b55ff;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.round-icon.red { background: #ffe8ed; }
.round-icon.red svg { stroke: var(--red); }
.round-icon.amber { background: #fff0cf; }
.round-icon.amber svg { stroke: #f5a000; }
.round-icon.green { background: #ddf8e8; }
.round-icon.green svg { stroke: #10b969; }

.sheet-points h3,
.sheet-benefits h3 {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 950;
}

.sheet-points p,
.sheet-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sheet-card {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 28px;
  align-items: center;
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(223,230,239,0.9);
  border-radius: 14px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 22px 54px rgba(8,25,56,0.08);
}

.sheet-card h3 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 17px;
}

.sheet-card ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #27344c;
  font-size: 14px;
  font-weight: 800;
}

.sheet-card li::before {
  content: "\2713";
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 14px;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #ffe8ed;
  font-size: 12px;
}

.sheet-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}

.sheet-preview img {
  display: block;
  width: min(300px, 100%);
  height: auto;
  object-fit: contain;
}

.trust-strip {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 42px;
  padding: 20px 24px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f2f5ff, #fff4f6);
}

.trust-strip h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
}

.sheet-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  margin-bottom: 26px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 7px;
  background: #ffffff;
}

.sheet-benefits article {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.sheet-benefits article:last-child {
  border-right: 0;
}

.sheet-cta {
  background: #fff0f3;
}

.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 360px;
}

.cta-actions small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.finds-page {
  padding: 8px 0 54px;
  background:
    radial-gradient(circle at 5% 8%, rgba(239,31,61,0.08), transparent 30%),
    radial-gradient(circle at 72% 10%, rgba(239,31,61,0.06), transparent 26%),
    #ffffff;
}

.finds-hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
  padding: 24px 0 34px;
}

.finds-hero-copy h1 {
  margin-bottom: 22px;
  font-size: 48px;
  line-height: 1.08;
}

.finds-hero-copy h1 strong {
  color: var(--red);
}

.finds-hero-copy > p:not(.hero-badge) {
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.finds-actions {
  display: flex;
  gap: 12px;
  margin: 26px 0 42px;
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
}

.button.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(239,31,61,0.32);
  box-shadow: 0 14px 28px rgba(8,25,56,0.08);
}

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

.finds-trust article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 10px;
  align-items: center;
}

.finds-trust span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #ffe8ed;
  font-size: 11px;
  font-weight: 950;
}

.finds-trust svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.finds-trust small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.spreadsheet-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(8, 25, 56, 0.12);
}

.sheet-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.sheet-toolbar strong {
  font-size: 14px;
}

.sheet-toolbar button {
  height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: #117a3b;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sheet-toolbar button:hover,
.sheet-toolbar button:focus-visible {
  background: #0d6831;
  box-shadow: 0 10px 24px rgba(22, 158, 73, 0.22);
  transform: translateY(-1px);
}

.sheet-toolbar button.is-shared {
  background: #0f172a;
}

.sheet-tabs {
  display: flex;
  gap: 18px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sheet-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
}

.spreadsheet-visual table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.spreadsheet-visual th,
.spreadsheet-visual td {
  padding: 10px 12px;
  border: 1px solid #e9eef5;
  text-align: left;
  vertical-align: middle;
}

.spreadsheet-visual th {
  background: #ffd7de;
  color: #3d1720;
  font-weight: 950;
}

.spreadsheet-visual td {
  color: #27344c;
  font-weight: 750;
}

.spreadsheet-visual td img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.spreadsheet-visual td:last-child {
  color: var(--red);
  font-weight: 950;
}

.spreadsheet-visual td:last-child a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.spreadsheet-visual td:last-child a:hover {
  color: #d51f3a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.find-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 20px;
  align-items: end;
  margin-bottom: 36px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(8,25,56,0.06);
}

.find-filters h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.filter-pills {
  display: grid;
  grid-template-columns: repeat(12, minmax(52px, 1fr));
  gap: 8px;
}

.filter-pills a {
  display: inline-grid;
  grid-template-rows: 32px auto;
  justify-items: center;
  gap: 5px;
  align-items: center;
  min-height: 52px;
  padding: 0 2px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.filter-pills a:hover,
.filter-pills a.is-active {
  border-color: transparent;
  color: var(--red);
  background: transparent;
}

.filter-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #7f8796;
  background: #f6f1f3;
}

.filter-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.filter-pills a:hover .filter-icon,
.filter-pills a.is-active .filter-icon {
  color: var(--red);
  background: #ffe8ed;
}

.find-filters label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  justify-self: end;
  width: 160px;
}

.find-filters select {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
}

.finds-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.finds-heading h2 {
  position: relative;
  margin: 0;
  font-size: 28px;
}

.finds-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 72px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}

.finds-heading a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.find-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}

.find-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 352px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8,25,56,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.find-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(8,25,56,0.12);
}

.find-card .tag {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 5px;
  color: #ffffff;
  background: var(--red);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.find-card button {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #596579;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
}

.find-image {
  display: grid;
  height: 188px;
  place-items: center;
  background: #fff;
}

.find-image img {
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.find-image img.product-photo {
  width: auto;
  height: auto;
  max-width: calc(100% - 18px);
  max-height: 154px;
  object-fit: contain;
}

.find-card h3 {
  min-height: 57px;
  margin: 14px 12px 6px;
  font-size: 14px;
  line-height: 1.35;
}

.find-card p {
  min-height: 18px;
  margin: 0 12px 12px;
  color: var(--muted);
  font-size: 12px;
}

.find-card strong {
  display: block;
  margin: 0 12px 14px;
  font-size: 15px;
}

.find-card small {
  display: block;
  margin: auto 12px 16px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.finds-cta {
  margin-top: 30px;
  margin-bottom: 24px;
  background: #fff0f3;
}

.finds-cta .finds-doc-icon {
  color: var(--red);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(239,31,61,0.14);
}

.finds-cta .finds-doc-icon svg {
  stroke: var(--red);
  stroke-width: 2.7;
}

.finds-mini {
  margin-bottom: 0;
}

.qc-page {
  padding: 38px 0 58px;
  background:
    radial-gradient(circle at 8% 14%, rgba(239,31,61,0.08), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(37,99,235,0.08), transparent 28%),
    #ffffff;
}

.qc-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 46px 0 36px;
}

.qc-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.qc-hero p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.qc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.qc-preview {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
}

.qc-photo-main {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #f5f8fc, #ffffff);
}

.qc-photo-main img {
  width: min(78%, 420px);
  height: auto;
  object-fit: contain;
}

.qc-photo-main span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--red);
  background: #fff0f3;
  font-size: 13px;
  font-weight: 900;
}

.qc-mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.qc-mini-row img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.qc-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.qc-trust article,
.qc-step-grid article,
.qc-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 38px rgba(8,25,56,0.06);
}

.qc-trust article {
  padding: 22px;
}

.qc-trust span,
.qc-step-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f3;
  font-size: 13px;
  font-weight: 950;
}

.qc-trust strong {
  display: block;
  margin-top: 14px;
  font-size: 16px;
}

.qc-trust p,
.qc-step-grid p,
.qc-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.qc-steps,
.qc-gallery {
  padding-top: 52px;
}

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

.qc-step-grid article {
  padding: 24px;
}

.qc-step-grid h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.qc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.qc-card {
  overflow: hidden;
}

.qc-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #ffffff;
}

.qc-card div {
  padding: 16px;
  border-top: 1px solid var(--line);
}

.qc-card span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--red);
  background: #fff0f3;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.qc-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.qc-cta {
  margin-top: 42px;
  background: #fff0f3;
}

.qc-cta .cta-icon {
  color: var(--red);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(239,31,61,0.14);
}

.qc-cta .cta-icon svg {
  stroke: var(--red);
  stroke-width: 2.7;
}

.qc-reference-page {
  background: #ffffff;
}

.qc-ref-main {
  padding: 8px 0 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(239,31,61,0.06), transparent 28%),
    radial-gradient(circle at 80% 8%, rgba(37,99,235,0.04), transparent 25%),
    #ffffff;
}

.qc-ref-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 46px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 36px;
}

.qc-ref-copy {
  padding-top: 8px;
}

.qc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--red);
  background: #fff0f3;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.qc-pill span {
  font-size: 15px;
}

.qc-ref-copy h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.qc-ref-copy h1 strong {
  color: var(--red);
}

.qc-lede {
  margin: 24px 0 0;
  color: #435066;
  font-size: 16px;
  line-height: 1.75;
}

.qc-ref-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.qc-ref-features article {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
}

.qc-ref-features img {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.qc-ref-features strong {
  font-size: 13px;
  line-height: 1.2;
}

.qc-ref-features span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.qc-ref-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8,25,56,0.08);
}

.qc-latest {
  padding-top: 18px;
}

.qc-section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.qc-section-row h2 {
  position: relative;
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
}

.qc-section-row h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 104px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.qc-section-row h2 strong,
.qc-section-row a span {
  color: var(--red);
}

.qc-section-row a {
  font-size: 13px;
  font-weight: 950;
}

.qc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 22px;
}

.qc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.qc-tabs a,
.qc-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 32px;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  color: #374256;
  background: #f8f9fc;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.qc-tabs a.active,
.qc-tabs a:hover,
.qc-tabs button.active,
.qc-tabs button:hover {
  color: #ffffff;
  background: var(--red);
}

.qc-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.qc-sort select {
  width: 112px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.qc-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.qc-photo-card {
  overflow: hidden;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(8,25,56,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.qc-photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(8,25,56,0.12);
}

.qc-shot {
  height: 150px;
  background: #f7f8fb;
}

.qc-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qc-card-body {
  padding: 12px 12px 14px;
}

.qc-card-body h3 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
}

.qc-card-body p,
.qc-card-body span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.qc-ref-cta {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 22px;
  padding: 24px 36px;
  border: 1px solid rgba(239,31,61,0.18);
  border-radius: 8px;
  background: linear-gradient(90deg, #fff0f3, #fff7f8);
  box-shadow: 0 18px 44px rgba(239,31,61,0.06);
}

.qc-ref-cta .cta-icon {
  width: 64px;
  height: 64px;
}

.qc-ref-cta .cta-icon svg {
  width: 34px;
  height: 34px;
}

.qc-ref-cta h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.qc-ref-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.qc-ref-cta .button {
  min-width: 220px;
}

.footer .footer-active {
  color: var(--red);
  font-weight: 900;
}

.footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(239, 31, 61, 0.16), transparent 28%),
    linear-gradient(135deg, #061d35 0%, #082b4b 58%, #061d35 100%);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(390px, 1.35fr) minmax(230px, 0.9fr);
  gap: clamp(24px, 4vw, 52px);
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 24px 0 16px;
  align-items: start;
}

.footer-logo {
  display: none;
}

.footer-about {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  max-width: 290px;
}

.footer-about::before,
.footer-about::after {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.9px;
  white-space: nowrap;
}

.footer-about::before {
  order: 1;
  content: "OOPBUYSPREADSHEET";
  color: #f7123f;
}

.footer-about::after {
  order: 2;
  content: ".BE";
  color: #ffffff;
}

.footer-about > p {
  order: 3;
  flex: 0 0 100%;
}

.footer p {
  color: rgba(255,255,255,0.86);
  font-size: 12.5px;
  line-height: 1.5;
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 850;
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-nav-group {
  min-width: 0;
}

.footer-nav-group h3 {
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 10px 22px;
  align-items: center;
}

.footer-links a {
  margin-bottom: 0;
  white-space: nowrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  max-width: none;
}

.footer-contact a {
  display: grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 15px;
  background: rgba(255,255,255,0.055);
}

.footer-contact a:hover {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
}

.footer-contact b,
.footer-contact span {
  display: none;
}

.footer-contact b {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.15;
}

.footer-contact i {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  color: #ff6b7d;
  font-style: normal;
  font-size: 0;
  font-weight: 900;
}

.footer-contact i::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-contact a[href*="wa.me"] i::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a9.7 9.7 0 0 0-8.3 14.7L2.6 21l4.4-1.1A9.7 9.7 0 1 0 12 2Zm5.5 14.1c-.2.5-1.2 1-1.7 1.1-.5.1-1.1.2-3.1-.6-2.6-1.1-4.3-3.8-4.4-4-.1-.1-1.1-1.5-1.1-2.8 0-1.4.7-2 1-2.3.3-.3.6-.4.8-.4h.6c.2 0 .5 0 .7.5l.9 2.1c.1.2.1.4 0 .6-.1.2-.2.4-.4.6l-.3.4c-.1.1-.3.3-.1.6.2.4.8 1.3 1.6 2 .9.8 1.7 1 2.1 1.2.3.1.5.1.7-.1l1-1.2c.2-.3.5-.2.8-.1l2 .9c.3.1.5.2.5.4 0 .2 0 .7-.2 1.1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a9.7 9.7 0 0 0-8.3 14.7L2.6 21l4.4-1.1A9.7 9.7 0 1 0 12 2Zm5.5 14.1c-.2.5-1.2 1-1.7 1.1-.5.1-1.1.2-3.1-.6-2.6-1.1-4.3-3.8-4.4-4-.1-.1-1.1-1.5-1.1-2.8 0-1.4.7-2 1-2.3.3-.3.6-.4.8-.4h.6c.2 0 .5 0 .7.5l.9 2.1c.1.2.1.4 0 .6-.1.2-.2.4-.4.6l-.3.4c-.1.1-.3.3-.1.6.2.4.8 1.3 1.6 2 .9.8 1.7 1 2.1 1.2.3.1.5.1.7-.1l1-1.2c.2-.3.5-.2.8-.1l2 .9c.3.1.5.2.5.4 0 .2 0 .7-.2 1.1Z'/%3E%3C/svg%3E");
}

.footer-contact a[href*="yupoo"] i::before {
  width: 22px;
  height: 24px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.2 22V5.7c0-1.1.9-2 2-2h5.5c3.5 0 6.1 2.4 6.1 5.8 0 3.5-2.6 5.9-6.2 5.9h-3.2V22H6.2Zm4.2-10.4h3c1.3 0 2.2-.8 2.2-2.1 0-1.2-.9-2-2.2-2h-3v4.1ZM4.2 8.8h2.9v4.4H4.2V8.8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.2 22V5.7c0-1.1.9-2 2-2h5.5c3.5 0 6.1 2.4 6.1 5.8 0 3.5-2.6 5.9-6.2 5.9h-3.2V22H6.2Zm4.2-10.4h3c1.3 0 2.2-.8 2.2-2.1 0-1.2-.9-2-2.2-2h-3v4.1ZM4.2 8.8h2.9v4.4H4.2V8.8Z'/%3E%3C/svg%3E");
}

.footer-contact a[href*="t.me"] i::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M21.5 4.4 18.4 19c-.2 1-.8 1.2-1.6.8l-4.4-3.3-2.1 2.1c-.2.2-.4.4-.9.4l.3-4.6 8.4-7.6c.4-.3-.1-.5-.6-.2L7.1 13.1 2.6 11.7c-1-.3-1-1 .2-1.5L20.3 3.5c.8-.3 1.5.2 1.2.9Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M21.5 4.4 18.4 19c-.2 1-.8 1.2-1.6.8l-4.4-3.3-2.1 2.1c-.2.2-.4.4-.9.4l.3-4.6 8.4-7.6c.4-.3-.1-.5-.6-.2L7.1 13.1 2.6 11.7c-1-.3-1-1 .2-1.5L20.3 3.5c.8-.3 1.5.2 1.2.9Z'/%3E%3C/svg%3E");
}

.subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 10px;
}

.subscribe input {
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
}

.subscribe button {
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--red);
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(239,31,61,0.18);
}

.subscribe button:hover {
  background: #d91230;
}

.footer-note {
  margin-top: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
}

.footer-help {
  justify-self: end;
  width: min(100%, 260px);
}

.footer-help p {
  margin: 0 0 12px;
}

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

.footer-help-links a {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.045);
  font-size: 12px;
}

.footer-help-links a:hover {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.1);
  transform: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.74);
  font-size: 12px;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-legal a {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.footer-legal a:hover {
  color: #ffffff;
  transform: none;
}

.guide-page main {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 10%, rgba(239,31,61,0.08), transparent 34%),
    radial-gradient(circle at 100% 4%, rgba(37,99,235,0.08), transparent 34%),
    #ffffff;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 42px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 42px;
}

.guide-hero-copy {
  max-width: 560px;
}

.guide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--red);
  background: #fff0f3;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.guide-hero h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.guide-hero-copy > p:not(.guide-kicker) {
  max-width: 560px;
  margin: 0 0 28px;
  color: #2c3749;
  font-size: 17px;
  line-height: 1.8;
}

.guide-hero-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.guide-hero-card article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.guide-hero-card span,
.guide-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.guide-hero-card h3,
.guide-step h3,
.guide-tips-grid h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 18px;
}

.guide-hero-card p,
.guide-step p,
.guide-tips-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.guide-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(8,25,56,0.08);
}

.guide-benefits article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.guide-benefits article:last-child {
  border-right: 0;
}

.guide-benefits h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.guide-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.guide-section {
  margin-bottom: 52px;
}

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

.guide-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(8,25,56,0.06);
}

.guide-step span {
  margin-bottom: 16px;
}

.guide-tips {
  padding: 38px;
  border-radius: 12px;
  background: #f6f8fc;
}

.guide-tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.guide-tips-grid article {
  padding: 22px;
  border: 1px solid #e9edf5;
  border-radius: 10px;
  background: #ffffff;
}

.guide-cta {
  margin-bottom: 54px;
}

.guide-ref-hero,
.guide-ref-section,
.guide-ref-cta {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.guide-ref-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 52px;
  align-items: center;
  margin-top: 8px;
  padding: 44px 0 24px;
}

.guide-ref-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--red);
  background: #fff0f3;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(239, 31, 61, 0.08);
}

.guide-ref-pill::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 5.5A2.5 2.5 0 0 1 6.5 3H11a2 2 0 0 1 2 2v15.5a1 1 0 0 1-1.45.9L10 20.12 8.45 21.4A1 1 0 0 1 7 20.5V5H6.5a.5.5 0 0 0-.5.5V20h1v2H5a1 1 0 0 1-1-1V5.5Zm11-.5a2 2 0 0 1 2-2h.5A2.5 2.5 0 0 1 20 5.5V21a1 1 0 0 1-1 1h-2v-2h1V5.5a.5.5 0 0 0-.5-.5H17v15.5a1 1 0 0 1-1.45.9L14 20.12 13 20.95V5h2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 5.5A2.5 2.5 0 0 1 6.5 3H11a2 2 0 0 1 2 2v15.5a1 1 0 0 1-1.45.9L10 20.12 8.45 21.4A1 1 0 0 1 7 20.5V5H6.5a.5.5 0 0 0-.5.5V20h1v2H5a1 1 0 0 1-1-1V5.5Zm11-.5a2 2 0 0 1 2-2h.5A2.5 2.5 0 0 1 20 5.5V21a1 1 0 0 1-1 1h-2v-2h1V5.5a.5.5 0 0 0-.5-.5H17v15.5a1 1 0 0 1-1.45.9L14 20.12 13 20.95V5h2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.guide-ref-copy h1 {
  max-width: 500px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 950;
}

.guide-ref-copy h1 strong,
.guide-ref-heading strong {
  color: var(--red);
}

.guide-ref-copy > p:not(.guide-ref-pill) {
  max-width: 540px;
  margin: 0 0 34px;
  color: #2c3749;
  font-size: 16px;
  line-height: 1.75;
}

.guide-ref-perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.guide-ref-perks article {
  min-width: 0;
  text-align: center;
}

.guide-ref-perks img {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 11px;
  object-fit: contain;
}

.guide-ref-perks h2,
.guide-ref-perks h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.guide-ref-perks p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.guide-ref-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(8,25,56,0.08);
}

.guide-ref-section {
  margin-top: 0;
  padding-bottom: 0;
}

.guide-ref-heading {
  margin-bottom: 18px;
}

.guide-ref-heading h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
}

.guide-ref-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.guide-ref-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  padding-top: 30px;
}

.guide-ref-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(239,31,61,0.1), rgba(8,25,56,0.14), rgba(239,31,61,0.1));
}

.guide-ref-steps article {
  position: relative;
  min-height: 190px;
  padding: 28px 18px 20px;
  border: 1px solid #edf1f7;
  border-radius: 9px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(8,25,56,0.07);
}

.guide-ref-steps span {
  position: absolute;
  top: -41px;
  left: 50%;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-size: 10px;
  font-weight: 950;
}

.guide-ref-steps img {
  width: 70px;
  height: 70px;
  margin-bottom: 14px;
  object-fit: contain;
}

.guide-ref-steps h3,
.guide-ref-tips h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.guide-ref-steps p,
.guide-ref-tips p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

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

.guide-ref-tips article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 18px;
  border: 1px solid #edf1f7;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8,25,56,0.06);
}

.guide-ref-tips img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.guide-ref-cta {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  padding: 26px 42px;
  border: 1px solid rgba(239,31,61,0.18);
  border-radius: 10px;
  background: linear-gradient(90deg, #fff0f3, #fff7f8);
  box-shadow: 0 18px 44px rgba(239,31,61,0.06);
}

.guide-ref-cta .cta-icon {
  width: 66px;
  height: 66px;
}

.guide-ref-cta .cta-icon svg {
  width: 36px;
  height: 36px;
}

.guide-ref-cta h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 21px;
}

.guide-ref-cta p {
  margin: 0;
  max-width: 580px;
  color: #2c3749;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .guide-ref-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.05fr);
    gap: 30px;
  }

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

  .guide-ref-perks article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: start;
    text-align: left;
  }

  .guide-ref-perks img {
    margin: 0;
  }

  .guide-ref-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 44px;
  }

  .guide-ref-tips {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-ref-cta {
    grid-template-columns: 82px 1fr;
  }

  .guide-ref-cta .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .guide-hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .guide-benefits,
  .guide-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-benefits article:nth-child(2) {
    border-right: 0;
  }

  .guide-benefits article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .guide-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .finds-hero {
    grid-template-columns: 1fr;
  }

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

  .qc-hero {
    grid-template-columns: 1fr;
  }

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

  .qc-ref-hero {
    grid-template-columns: 1fr;
  }

  .qc-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qc-ref-visual {
    max-width: 640px;
  }
}

@media (max-width: 700px) {
  .guide-ref-hero {
    grid-template-columns: 1fr;
  }

  .find-filters,
  .finds-trust,
  .qc-trust,
  .qc-step-grid {
    grid-template-columns: 1fr;
  }

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

  .spreadsheet-visual {
    overflow-x: auto;
  }

  .qc-preview {
    padding: 14px;
  }

  .qc-hero {
    padding-top: 28px;
  }

  .qc-hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .qc-hero p {
    font-size: 15px;
  }

  .qc-photo-main {
    min-height: 240px;
  }

  .qc-ref-main {
    padding-top: 12px;
  }

  .qc-ref-copy h1 {
    font-size: 38px;
  }

  .qc-ref-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .qc-toolbar,
  .qc-section-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .qc-tabs {
    width: 100%;
  }

  .qc-tabs a,
  .qc-tabs button {
    flex: 1 1 120px;
  }

  .qc-ref-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qc-ref-cta .cta-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .find-grid,
  .qc-card-grid {
    grid-template-columns: 1fr;
  }

  .qc-shot {
    height: auto;
    aspect-ratio: 5 / 3;
  }

  .finds-actions {
    flex-direction: column;
  }

  .qc-actions {
    flex-direction: column;
  }

  .qc-hero h1 {
    font-size: 34px;
  }

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

  .qc-photo-grid {
    grid-template-columns: 1fr;
  }

  .qc-ref-copy h1 {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    padding: 10px 0;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
  }

  .hero {
    width: calc(100% - 24px);
    min-height: auto;
  }

  .hero-content {
    width: 68%;
    padding: 38px 24px 78px;
  }

  .category-grid,
  .sheet-benefits,
  .mini-band,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-about,
  .footer-help {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .footer-nav-group {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-template-columns: repeat(4, max-content);
  }

  .stats-band {
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% - 48px);
  }

  .stat-item {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    padding: 10px 12px;
  }

  .stat-item img {
    width: 24px;
    height: 24px;
  }

  .stat-item strong {
    font-size: 11px;
  }

  .sheet-hero,
  .sheet-card {
    grid-template-columns: 1fr;
  }

  .sheet-points {
    grid-template-columns: 1fr;
  }

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

  .flow-arrow {
    display: none;
  }

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

  .cta-panel .button {
    grid-column: 1 / -1;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .site-header {
    grid-template-columns: 170px 1fr auto;
    gap: 14px;
    width: calc(100% - 32px);
    min-height: 68px;
    padding: 0;
  }

  .site-logo {
    height: auto;
  }

  .primary-nav {
    grid-column: auto;
    justify-content: flex-end;
    overflow: visible;
    gap: 18px;
    font-size: 14px;
  }

  .primary-nav a,
  .nav-dropdown > button {
    padding: 24px 0;
  }

  .language-button {
    min-width: 86px;
    padding: 0 10px;
  }
}

@media (max-width: 560px) {
  .guide-ref-hero,
  .guide-ref-section,
  .guide-ref-cta {
    width: min(100% - 28px, 1120px);
  }

  .guide-ref-hero {
    gap: 20px;
    padding-top: 24px;
  }

  .guide-ref-copy h1 {
    font-size: 38px;
  }

  .guide-ref-perks {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-ref-perks article {
    display: block;
    text-align: center;
  }

  .guide-ref-perks img {
    margin: 0 auto 11px;
  }

  .guide-ref-steps,
  .guide-ref-tips {
    grid-template-columns: 1fr;
  }

  .guide-ref-steps {
    gap: 16px;
    padding-top: 0;
  }

  .guide-ref-steps::before {
    display: none;
  }

  .guide-ref-steps article {
    min-height: auto;
  }

  .guide-ref-steps span {
    top: 14px;
    left: 16px;
    transform: none;
  }

  .guide-ref-tips article,
  .guide-ref-cta {
    grid-template-columns: 1fr;
  }

  .guide-ref-cta {
    padding: 24px;
  }

  .guide-hero {
    width: min(100% - 28px, 1120px);
    padding: 34px 0 34px;
  }

  .guide-hero h1 {
    font-size: 38px;
  }

  .guide-hero-card,
  .guide-tips {
    padding: 20px;
  }

  .guide-benefits,
  .guide-steps-grid,
  .guide-tips-grid {
    grid-template-columns: 1fr;
  }

  .guide-benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-benefits article:last-child {
    border-bottom: 0;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero {
    aspect-ratio: auto;
    min-height: 540px;
    background-size: 100% 100%, 100% 100%, 100% auto;
    background-position: center, center, top center;
  }

  .stats-band,
  .sheet-benefits,
  .mini-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .category-card {
    min-height: 116px;
    padding: 14px 6px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .category-card img {
    width: 58px;
    height: 58px;
    margin-bottom: 7px;
  }

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

  .sheet-benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-actions {
    min-width: 0;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .footer-help {
    justify-self: start;
  }
}

.faq-page {
  --red: #d01632;
}

.faq-page main {
  background:
    radial-gradient(circle at 8% 8%, rgba(239, 31, 61, 0.08), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(37, 99, 235, 0.08), transparent 32%),
    #ffffff;
}

.faq-hero,
.faq-layout,
.faq-trust,
.faq-final-cta {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.faq-hero {
  padding: 68px 0 34px;
  text-align: center;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(239, 31, 61, 0.08);
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1;
}

.faq-pill::before {
  content: "\2606";
  width: auto;
  height: auto;
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1;
}

.faq-hero h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
}

.faq-hero > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
}

.faq-search {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  width: min(620px, 100%);
  height: 58px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(8, 25, 56, 0.08);
}

.faq-search span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 14px;
  border-radius: 50%;
  background: rgba(239, 31, 61, 0.1);
  color: var(--red);
  font-weight: 950;
}

.faq-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.support-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(8, 25, 56, 0.08);
}

.support-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(239, 31, 61, 0.1);
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
}

.support-panel h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
}

.support-panel p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.support-card {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.support-card strong {
  font-size: 15px;
}

.support-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 25, 56, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(239, 31, 61, 0.28);
  box-shadow: 0 20px 48px rgba(239, 31, 61, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  padding: 0 22px;
  border: 0;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 850;
}

.faq-question i {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 31, 61, 0.08);
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 22px;
}

.faq-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(239, 31, 61, 0.32);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(8, 25, 56, 0.06);
}

.faq-trust article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #ffffff;
}

.faq-trust span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(239, 31, 61, 0.1);
  color: var(--red);
  font-weight: 950;
}

.faq-trust h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.faq-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.faq-final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 44px;
  padding: 28px 34px;
  border-radius: 14px;
  background: linear-gradient(90deg, #f1f5ff, #fff2f4);
  box-shadow: 0 18px 45px rgba(8, 25, 56, 0.06);
}

.faq-final-cta h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.faq-final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-footer-inner {
  grid-template-columns: minmax(260px, 1fr) 220px;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .support-panel {
    position: static;
  }

  .faq-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .faq-hero,
  .faq-layout,
  .faq-trust,
  .faq-final-cta {
    width: min(100% - 28px, 1120px);
  }

  .faq-hero {
    padding-top: 42px;
  }

  .faq-hero h1 {
    font-size: 36px;
  }

  .faq-search {
    height: 54px;
    grid-template-columns: 40px 1fr;
  }

  .faq-trust {
    grid-template-columns: 1fr;
  }

  .faq-question {
    min-height: 62px;
    padding: 0 16px;
    font-size: 15px;
  }

  .faq-answer > p {
    padding-inline: 16px;
  }

  .faq-final-cta {
    padding: 24px;
  }
}

.faq-ref-hero {
  display: grid;
  grid-template-columns: 280px 270px 1fr;
  gap: 34px;
  align-items: center;
  width: min(1120px, calc(100% - 72px));
  margin: 8px auto 0;
  padding: 46px 0 40px;
}

.faq-ref-copy {
  display: grid;
  align-content: start;
}

.faq-ref-copy .faq-pill {
  justify-self: start;
  width: fit-content;
  max-width: none;
  margin-bottom: 22px;
  padding: 7px 12px;
  gap: 6px;
  color: var(--red);
  background: #fff0f2;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  box-shadow: none;
}

.faq-ref-copy h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 950;
}

.faq-ref-copy h1 span {
  display: block;
}

.faq-ref-copy h1 strong {
  display: block;
  color: var(--red);
}

.faq-ref-copy > p {
  width: min(100%, 260px);
  margin-bottom: 28px;
  color: #253146;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.faq-ref-copy .faq-search {
  width: 196px;
  height: 42px;
  margin: 0 0 22px;
  grid-template-columns: 40px 1fr;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(8, 25, 56, 0.06);
}

.faq-ref-copy .faq-search span {
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: 16px;
  border: 2px solid #7b8494;
  border-radius: 50%;
  background: transparent;
}

.faq-ref-copy .faq-search span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 99px;
  background: #7b8494;
  transform: translate(9px, 9px) rotate(45deg);
}

.faq-ref-copy .faq-search input {
  font-size: 13px;
}

.faq-ref-visual {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 24px 32px rgba(239, 31, 61, 0.12));
}

.faq-ref-hero .support-panel {
  position: static;
  width: 196px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 25, 56, 0.09);
}

.faq-ref-hero .support-panel h2 {
  margin-bottom: 8px;
  font-size: 16px;
}

.faq-ref-hero .support-panel > p {
  margin-bottom: 18px;
  color: #253146;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.faq-ref-hero .support-card {
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 0;
}

.faq-ref-hero .support-card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.faq-ref-hero .support-card strong,
.faq-ref-hero .support-card span {
  display: block;
}

.faq-ref-hero .support-card strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.faq-ref-hero .support-card span {
  color: #253146;
  font-size: 11px;
  font-weight: 650;
}

.faq-ref-accordion {
  align-self: start;
  gap: 10px;
  padding: 18px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(8, 25, 56, 0.10);
}

.faq-ref-accordion .faq-item {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.faq-ref-accordion .faq-item + .faq-item {
  border-top: 1px solid #edf1f6;
}

.faq-ref-accordion .faq-item.is-open {
  box-shadow: none;
}

.faq-ref-accordion .faq-question {
  min-height: 46px;
  padding: 0 4px 0 0;
  font-size: 14px;
  font-weight: 950;
}

.faq-ref-accordion .faq-question b {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.faq-ref-accordion .faq-question span {
  flex: 1;
}

.faq-ref-accordion .faq-question i {
  width: 22px;
  height: 22px;
  border: 1px solid var(--red);
  background: #ffffff;
}

.faq-ref-accordion .faq-question i::before,
.faq-ref-accordion .faq-question i::after {
  width: 9px;
  background: var(--red);
}

.faq-ref-accordion .faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-ref-accordion .faq-item.is-open .faq-answer {
  max-height: 380px;
}

.faq-ref-accordion .faq-answer > p {
  max-width: 440px;
  margin-left: 38px;
  padding: 12px 10px 16px 0;
  color: #253146;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.faq-answer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 8px 0;
  padding: 15px 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff1f3, #fff7f8);
}

.faq-answer-features span {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  color: #253146;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.faq-answer-features img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.faq-page .faq-trust {
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, calc(100% - 72px));
  margin-top: 10px;
  padding: 34px 28px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff6f7, #fff0f2);
  box-shadow: 0 16px 38px rgba(8, 25, 56, 0.05);
}

.faq-page .faq-trust article {
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 0;
  background: transparent;
}

.faq-page .faq-trust img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.faq-page .faq-trust h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.faq-page .faq-trust p {
  max-width: 180px;
  color: #253146;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.faq-page .faq-final-cta {
  grid-template-columns: 1fr 250px auto;
  width: min(1120px, calc(100% - 72px));
  margin-top: 30px;
  padding: 30px 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(8, 25, 56, 0.06);
}

.faq-page .faq-final-cta h2 {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 18px;
  font-weight: 950;
}

.faq-page .faq-final-cta p {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.faq-page .faq-final-cta input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  color: var(--ink);
  background: #ffffff;
}

.faq-page .faq-final-cta .button {
  min-width: 120px;
  height: 40px;
  padding: 0 22px;
}

@media (max-width: 1050px) {
  .faq-ref-hero {
    grid-template-columns: 280px 1fr;
  }

  .faq-ref-visual {
    order: 3;
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 220px;
  }
}

@media (max-width: 900px) {
  .faq-ref-hero {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 720px);
  }

  .faq-ref-copy .faq-search,
  .faq-ref-hero .support-panel {
    width: 100%;
  }

  .faq-ref-visual {
    order: initial;
  }

  .faq-page .faq-trust,
  .faq-page .faq-final-cta {
    width: min(100% - 36px, 720px);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .faq-ref-copy h1 {
    font-size: 40px;
  }

  .faq-answer-features,
  .faq-page .faq-trust {
    grid-template-columns: 1fr;
  }

  .faq-page .faq-trust article {
    grid-template-columns: 58px 1fr;
  }

  .faq-page .faq-trust img {
    width: 52px;
    height: 52px;
  }
}

/* Belgium FAQ reference layout */
.faq-belgium-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 8%, rgba(239,31,61,0.08), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(37,99,235,0.07), transparent 30%),
    #ffffff;
}

.faq-belgium-hero,
.faq-belgium-trust,
.faq-belgium-cta {
  width: min(1120px, calc(100% - 72px));
  margin-inline: auto;
}

.faq-belgium-hero {
  display: grid;
  grid-template-columns: 300px 230px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 44px 0 38px;
}

.faq-belgium-left {
  display: grid;
  align-content: start;
}

.faq-belgium-left .faq-pill {
  justify-self: start;
  margin: 0 0 24px;
}

.faq-belgium-left h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: var(--type-h1);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.faq-belgium-left h1 span,
.faq-belgium-left h1 strong {
  display: block;
}

.faq-belgium-left h1 strong {
  color: var(--red);
}

.faq-intro {
  max-width: 290px;
  margin: 0 0 22px;
  color: #344157;
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.7;
}

.faq-buyer-card {
  padding: 20px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 20px 54px rgba(8,25,56,0.09);
}

.faq-buyer-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: var(--type-h3);
  font-weight: 600;
  line-height: 1.4;
}

.belgium-flag {
  display: inline-grid;
  grid-template-columns: repeat(3, 8px);
  overflow: hidden;
  width: 24px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(8,25,56,0.06);
}

.belgium-flag i:nth-child(1) { background: #111827; }
.belgium-flag i:nth-child(2) { background: #ffd31a; }
.belgium-flag i:nth-child(3) { background: #ef1f3d; }

.faq-buyer-card > p {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf1f6;
  color: #42506a;
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.6;
}

.buyer-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

.buyer-row img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: saturate(1.1) contrast(1.08);
}

.faq-mini-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f2;
  box-shadow: inset 0 0 0 1px rgba(239,31,61,0.05);
}

.faq-mini-icon::before {
  content: "";
  width: 23px;
  height: 23px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-truck::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v9H3z'/%3E%3Cpath d='M14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v9H3z'/%3E%3Cpath d='M14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E");
}

.icon-percent::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19'/%3E%3Ccircle cx='7.5' cy='7.5' r='2.2'/%3E%3Ccircle cx='16.5' cy='16.5' r='2.2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19'/%3E%3Ccircle cx='7.5' cy='7.5' r='2.2'/%3E%3Ccircle cx='16.5' cy='16.5' r='2.2'/%3E%3C/svg%3E");
}

.icon-camera::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h4l1.6-2h4.8L16 8h4v11H4z'/%3E%3Ccircle cx='12' cy='13.5' r='3.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h4l1.6-2h4.8L16 8h4v11H4z'/%3E%3Ccircle cx='12' cy='13.5' r='3.5'/%3E%3C/svg%3E");
}

.icon-shield::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v5c0 4.5 2.8 8 7 10 4.2-2 7-5.5 7-10V6z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v5c0 4.5 2.8 8 7 10 4.2-2 7-5.5 7-10V6z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
}

.buyer-row h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: var(--type-small);
  font-weight: 600;
  line-height: 1.4;
}

.buyer-row p {
  margin: 0;
  color: #46536a;
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.6;
}

.faq-belgium-visual {
  align-self: center;
  display: grid;
  place-items: center;
  min-height: auto;
  margin-top: 260px;
}

.faq-belgium-visual img {
  width: 250px;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 28px 34px rgba(239,31,61,0.13));
}

.faq-belgium-accordion {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 18px 20px;
  border: 1px solid #edf1f6;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 70px rgba(8,25,56,0.10);
}

.faq-belgium-accordion .faq-item {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-belgium-accordion .faq-item + .faq-item {
  border-top: 1px solid #edf1f6;
}

.faq-belgium-accordion .faq-item.is-open {
  box-shadow: none;
}

.faq-belgium-accordion .faq-question {
  min-height: 52px;
  padding: 0;
  background: transparent;
  font-size: var(--type-nav);
  font-weight: 600;
  line-height: 1.4;
}

.faq-belgium-accordion .faq-question b {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.faq-belgium-accordion .faq-question span {
  flex: 1;
}

.faq-belgium-accordion .faq-question i {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  background: #ffffff;
}

.faq-belgium-accordion .faq-question i::before,
.faq-belgium-accordion .faq-question i::after {
  width: 10px;
  background: var(--red);
}

.faq-belgium-accordion .faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-belgium-accordion .faq-item.is-open .faq-answer {
  max-height: 460px;
}

.faq-belgium-accordion .faq-answer > p {
  max-width: 520px;
  margin: 0 0 12px 42px;
  padding: 0 8px;
  color: #344157;
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.6;
}

.faq-belgium-accordion .faq-answer-features {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 8px 14px 42px;
  padding: 0;
  background: transparent;
}

.faq-belgium-accordion .faq-answer-features span {
  min-height: 64px;
  padding: 9px 8px 8px;
  border: 1px solid rgba(239,31,61,0.22);
  border-radius: 8px;
  background: #fff5f7;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-belgium-accordion .faq-answer-features img {
  width: 24px;
  height: 24px;
}

.faq-belgium-accordion .faq-answer-features .faq-mini-icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.faq-belgium-accordion .faq-answer-features .faq-mini-icon::before {
  width: 16px;
  height: 16px;
}

.faq-belgium-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 0;
  margin-bottom: 30px;
}

.faq-belgium-trust article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid #edf1f6;
  border-radius: 12px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 50px rgba(8,25,56,0.06);
}

.faq-trust-icon,
.faq-belgium-cta .cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f2;
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,0.78),
    0 14px 28px rgba(239,31,61,0.08);
}

.faq-trust-icon::before,
.faq-belgium-cta .cta-icon::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.faq-trust-icon.icon-belgium::before {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(90deg, #111827 0 33.33%, #ffd31a 33.33% 66.66%, #ef1f3d 66.66% 100%);
  -webkit-mask-image: none;
  mask-image: none;
}

.icon-refresh::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 11a8 8 0 0 0-14-5l-2 2'/%3E%3Cpath d='M4 4v4h4'/%3E%3Cpath d='M4 13a8 8 0 0 0 14 5l2-2'/%3E%3Cpath d='M20 20v-4h-4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 11a8 8 0 0 0-14-5l-2 2'/%3E%3Cpath d='M4 4v4h4'/%3E%3Cpath d='M4 13a8 8 0 0 0 14 5l2-2'/%3E%3Cpath d='M20 20v-4h-4'/%3E%3C/svg%3E");
}

.icon-users::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3.5 19c.8-3 2.7-4.5 5.5-4.5s4.7 1.5 5.5 4.5'/%3E%3Ccircle cx='17' cy='9' r='2.4'/%3E%3Cpath d='M14.5 15.2c2.5-.3 4.4 1 5.5 3.8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3.5 19c.8-3 2.7-4.5 5.5-4.5s4.7 1.5 5.5 4.5'/%3E%3Ccircle cx='17' cy='9' r='2.4'/%3E%3Cpath d='M14.5 15.2c2.5-.3 4.4 1 5.5 3.8'/%3E%3C/svg%3E");
}

.icon-headset::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13a8 8 0 0 1 16 0'/%3E%3Cpath d='M4 13v4a2 2 0 0 0 2 2h2v-7H6a2 2 0 0 0-2 2Z'/%3E%3Cpath d='M20 13v4a2 2 0 0 1-2 2h-2v-7h2a2 2 0 0 1 2 2Z'/%3E%3Cpath d='M16 19c0 1.1-1.8 2-4 2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13a8 8 0 0 1 16 0'/%3E%3Cpath d='M4 13v4a2 2 0 0 0 2 2h2v-7H6a2 2 0 0 0-2 2Z'/%3E%3Cpath d='M20 13v4a2 2 0 0 1-2 2h-2v-7h2a2 2 0 0 1 2 2Z'/%3E%3Cpath d='M16 19c0 1.1-1.8 2-4 2'/%3E%3C/svg%3E");
}

.faq-belgium-trust h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: var(--type-small);
  font-weight: 600;
  line-height: 1.4;
}

.faq-belgium-trust p {
  margin: 0;
  color: #46536a;
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.6;
}

.faq-belgium-cta {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 34px;
  padding: 32px 42px;
  border: 1px solid rgba(239,31,61,0.18);
  border-radius: 14px;
  background: linear-gradient(90deg, #fff0f3, #fff7f8);
  box-shadow: 0 18px 44px rgba(239,31,61,0.06);
}

.faq-belgium-cta .cta-icon {
  width: 76px;
  height: 76px;
}

.faq-belgium-cta .cta-icon::before {
  width: 36px;
  height: 36px;
}

.faq-belgium-cta h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: var(--type-h2);
  font-weight: 700;
  line-height: 1.3;
}

.faq-belgium-cta p {
  max-width: 560px;
  margin: 0;
  color: #46536a;
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.7;
}

.faq-belgium-cta .button {
  min-width: 280px;
  justify-content: center;
}

@media (max-width: 1050px) {
  .faq-belgium-hero {
    grid-template-columns: 300px 1fr;
  }

  .faq-belgium-visual {
    order: 3;
    grid-column: 1 / -1;
    min-height: auto;
    margin-top: 0;
  }

  .faq-belgium-visual img {
    width: 210px;
  }

  .faq-belgium-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .faq-belgium-hero,
  .faq-belgium-trust,
  .faq-belgium-cta {
    width: min(100% - 32px, 680px);
  }

  .faq-belgium-hero,
  .faq-belgium-trust,
  .faq-belgium-cta {
    grid-template-columns: 1fr;
  }

  .faq-belgium-hero {
    gap: 20px;
    padding: 24px 0;
  }

  .faq-belgium-visual {
    order: 2;
  }

  .faq-belgium-visual img {
    width: 180px;
  }

  .faq-belgium-accordion {
    order: 3;
    padding: 18px;
  }

  .faq-belgium-left h1 {
    font-size: var(--type-h1);
    line-height: 1.2;
  }

  .faq-belgium-accordion .faq-answer-features {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
  }

  .faq-belgium-accordion .faq-answer > p {
    margin-left: 0;
  }

  .faq-belgium-cta {
    padding: 26px 22px;
  }

  .faq-belgium-cta .button {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .buyer-row,
  .faq-belgium-trust article {
    grid-template-columns: 56px 1fr;
  }

  .faq-belgium-accordion .faq-question {
    min-height: 58px;
    font-size: var(--type-nav);
    font-weight: 500;
  }

  .faq-belgium-accordion .faq-question b {
    margin-right: 12px;
  }
}

/* Global typography system */
:root {
  --font-sans: "Inter", sans-serif;
  --type-h1: 48px;
  --type-h2: 28px;
  --type-h3: 18px;
  --type-body: 16px;
  --type-small: 14px;
  --type-nav: 14px;
  --type-button: 15px;
}

html,
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.7;
}

h1,
.hero h1,
.sheet-copy h1,
.finds-hero-copy h1,
.qc-hero h1,
.qc-ref-copy h1,
.guide-hero h1,
.guide-ref-copy h1,
.faq-hero h1,
.faq-ref-copy h1 {
  font-family: var(--font-sans);
  font-size: var(--type-h1);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

h2,
.section-heading h2,
.categories-section h2,
.how-section h2,
.sheet-section-title h2,
.qc-latest h2,
.guide-ref-section h2,
.faq-final-cta h2,
.cta-panel h2 {
  font-family: var(--font-sans);
  font-size: var(--type-h2);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

h3,
.card h3,
.category-card h3,
.stat-item h3,
.support-panel h2,
.footer h3 {
  font-family: var(--font-sans);
  font-size: var(--type-h3);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

p,
li,
input,
textarea,
select {
  font-family: var(--font-sans);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.7;
}

small,
.small-text,
.card small,
.footer-bottom,
.language-option,
.meta-text {
  font-family: var(--font-sans);
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1.5;
}

.primary-nav,
.primary-nav a,
.nav-dropdown > button,
.language-button {
  font-family: var(--font-sans);
  font-size: var(--type-nav);
  font-weight: 500;
  line-height: 1.2;
}

button,
.button,
.cta,
.filters button,
.subscribe button,
.language-button {
  font-family: var(--font-sans);
  font-size: var(--type-button);
  font-weight: 600;
  line-height: 1.2;
}

.hero h1,
.sheet-copy h1,
.finds-hero-copy h1,
.qc-ref-copy h1,
.guide-ref-copy h1,
.faq-ref-copy h1 {
  max-width: min(760px, 100%);
}

@media (max-width: 700px) {
  :root {
    --type-h1: 32px;
    --type-h2: 22px;
    --type-h3: 16px;
    --type-body: 15px;
    --type-small: 14px;
    --type-nav: 14px;
    --type-button: 14px;
  }

  body {
    line-height: 1.6;
  }

  h1,
  .hero h1,
  .sheet-copy h1,
  .finds-hero-copy h1,
  .qc-hero h1,
  .qc-ref-copy h1,
  .guide-hero h1,
  .guide-ref-copy h1,
  .faq-hero h1,
  .faq-ref-copy h1 {
    font-size: var(--type-h1);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
  }

  h2,
  .section-heading h2,
  .categories-section h2,
  .how-section h2,
  .sheet-section-title h2,
  .qc-latest h2,
  .guide-ref-section h2,
  .faq-final-cta h2,
  .cta-panel h2 {
    font-size: var(--type-h2);
    font-weight: 700;
    line-height: 1.3;
  }

  h3,
  .card h3,
  .category-card h3,
  .stat-item h3,
  .support-panel h2,
  .footer h3 {
    font-size: var(--type-h3);
    font-weight: 600;
    line-height: 1.4;
  }

  p,
  li,
  input,
  textarea,
  select {
    font-size: var(--type-body);
    line-height: 1.6;
  }

  button,
  .button,
  .cta,
  .filters button,
  .subscribe button,
  .language-button {
    font-size: var(--type-button);
    font-weight: 600;
  }
}

/* Keep compact section labels from being enlarged by the body text rules. */
.hero-badge,
.qc-pill,
.guide-ref-pill,
.faq-pill {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.faq-ref-copy .faq-pill {
  font-size: 10px;
}

/* Legal and information pages */
.info-page main {
  background:
    radial-gradient(circle at 8% 10%, rgba(239, 31, 61, 0.08), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(37, 99, 235, 0.07), transparent 30%),
    #ffffff;
}

.info-hero {
  width: min(1120px, calc(100% - 72px));
  margin: 8px auto 0;
  padding: 74px 0 42px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff0f2;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.info-pill::before {
  content: "*";
  font-size: 13px;
}

.info-hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
}

.info-hero h1 strong {
  color: var(--red);
}

.info-hero p {
  max-width: 720px;
  color: #253146;
  font-weight: 500;
}

.info-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto 70px;
}

.info-side,
.info-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(8, 25, 56, 0.07);
}

.info-side {
  align-self: start;
  position: sticky;
  top: 88px;
  padding: 18px;
}

.info-side h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.info-side a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #253146;
  font-size: 14px;
  font-weight: 700;
}

.info-side a:hover,
.info-side a.footer-active {
  background: #fff0f2;
  color: var(--red);
}

.info-card {
  padding: 34px;
}

.info-card section + section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #edf1f6;
}

.info-card h2 {
  margin: 0 0 12px;
}

.info-card h3 {
  margin: 22px 0 8px;
}

.info-card p,
.info-card li {
  color: #253146;
}

.info-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.info-callout {
  margin-top: 28px;
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff6f7, #f4f7ff);
}

.info-callout .button {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .info-hero,
  .info-layout {
    width: min(100% - 36px, 720px);
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

  .info-side {
    position: static;
  }
}

@media (max-width: 560px) {
  .info-hero {
    padding: 46px 0 26px;
  }

  .info-card {
    padding: 24px 18px;
  }
}

/* Unified CTA typography */
.cta-panel h2,
.sheet-cta h2,
.finds-cta h2,
.qc-ref-cta h2,
.guide-ref-cta h2,
.faq-belgium-cta h2,
.faq-final-cta h2,
.cta-box h2,
.info-callout h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.3;
  color: #0f172a;
  letter-spacing: 0;
}

.cta-panel p,
.sheet-cta p,
.finds-cta p,
.qc-ref-cta p,
.guide-ref-cta p,
.faq-belgium-cta p,
.faq-final-cta p,
.cta-box p,
.info-callout p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #475569;
}

/* Unified vertical rhythm between modules, CTA blocks, and the footer. */
:root {
  --block-rhythm: 24px;
}

.categories-section,
.workflow,
.trust-strip,
.find-filters,
.latest-finds,
.qc-latest,
.guide-ref-section,
.guide-benefits,
.guide-section,
.guide-tips,
.info-layout,
.mini-band,
.finds-mini,
.sheet-benefits,
.faq-belgium-trust,
.faq-page .faq-trust {
  margin-bottom: var(--block-rhythm) !important;
}

.categories-section {
  margin-bottom: 0 !important;
}

.cta-panel,
.sheet-cta,
.finds-cta,
.qc-ref-cta,
.guide-ref-cta,
.faq-belgium-cta,
.faq-final-cta,
.faq-page .faq-final-cta {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.sheet-page,
.finds-page {
  padding-bottom: var(--block-rhythm) !important;
}

.qc-ref-main,
.faq-belgium-page,
.guide-page main {
  padding-bottom: var(--block-rhythm) !important;
}

.finds-page .latest-finds,
.finds-page .finds-mini {
  margin-bottom: var(--block-rhythm) !important;
}

.finds-page .finds-cta {
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .find-filters {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .filter-pills {
    grid-template-columns: repeat(6, minmax(54px, 1fr));
  }

  .find-filters label {
    justify-self: stretch;
    width: 100%;
    max-width: 240px;
  }
}

@media (max-width: 560px) {
  .filter-pills {
    grid-template-columns: repeat(3, minmax(64px, 1fr));
  }

  .cta-panel h2,
  .sheet-cta h2,
  .finds-cta h2,
  .qc-ref-cta h2,
  .guide-ref-cta h2,
    .faq-belgium-cta h2,
    .faq-final-cta h2,
    .cta-box h2,
    .info-callout h3 {
    font-size: 18px;
    font-weight: 650;
    line-height: 1.3;
  }

  .cta-panel p,
  .sheet-cta p,
  .finds-cta p,
  .qc-ref-cta p,
  .guide-ref-cta p,
    .faq-belgium-cta p,
    .faq-final-cta p,
    .cta-box p,
    .info-callout p {
    font-size: 14px;
    line-height: 1.55;
  }

  :root {
    --block-rhythm: 20px;
  }
}

/* Final cross-page typography harmonization.
   Keeps hero support copy consistent without changing page layouts. */
.hero-copy,
.sheet-copy > p:not(.hero-badge),
.finds-hero-copy > p:not(.hero-badge),
.qc-lede,
.guide-ref-copy > p:not(.guide-ref-pill),
.faq-intro,
.info-hero > p:not(.info-pill) {
  font-family: var(--font-sans) !important;
  font-size: var(--type-body) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  letter-spacing: 0 !important;
}

.hero-copy {
  max-width: 520px;
}

.finds-hero-copy > p:not(.hero-badge) {
  max-width: 560px;
}

.hero h1,
.sheet-copy h1,
.finds-hero-copy h1,
.qc-ref-copy h1,
.guide-ref-copy h1,
.faq-ref-copy h1,
.info-hero h1 {
  font-family: var(--font-sans) !important;
  font-size: var(--type-h1) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}

@media (max-width: 640px) {
  .hero-copy,
  .sheet-copy > p:not(.hero-badge),
  .finds-hero-copy > p:not(.hero-badge),
  .qc-lede,
  .guide-ref-copy > p:not(.guide-ref-pill),
  .faq-intro,
  .info-hero > p:not(.info-pill) {
    font-size: var(--type-body) !important;
    line-height: 1.6 !important;
  }
}

/* Final text rhythm lock for repeated card and CTA copy. */
.feature-card p,
.sheet-feature p,
.finds-metric p,
.finds-card-body p,
.find-card-meta,
.qc-feature p,
.qc-card-body p,
.guide-feature p,
.guide-tip p,
.guide-step p,
.faq-belgium-card p,
.faq-support-item p,
.trust-card p,
.info-card p,
.cta-panel p,
.sheet-cta p,
.finds-cta p,
.qc-ref-cta p,
.guide-ref-cta p,
.faq-belgium-cta p,
.faq-final-cta p,
.cta-box p,
.info-callout p {
  font-family: var(--font-sans) !important;
  font-size: var(--type-small) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  letter-spacing: 0 !important;
}

.cta-panel h2,
.sheet-cta h2,
.finds-cta h2,
.qc-ref-cta h2,
.guide-ref-cta h2,
.faq-belgium-cta h2,
.faq-final-cta h2,
.cta-box h2,
.info-callout h3 {
  font-family: var(--font-sans) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #0f172a !important;
  letter-spacing: 0 !important;
}

@media (max-width: 640px) {
  .cta-panel h2,
  .sheet-cta h2,
  .finds-cta h2,
  .qc-ref-cta h2,
  .guide-ref-cta h2,
  .faq-belgium-cta h2,
  .faq-final-cta h2,
  .cta-box h2,
  .info-callout h3 {
    font-size: 20px !important;
  }
}

/* Site-wide final polish: typography, spacing, and card rhythm. */
:root {
  --font-sans: "Inter", sans-serif;
  --type-h1: 48px;
  --type-h2: 28px;
  --type-h3: 18px;
  --type-body: 16px;
  --type-small: 14px;
  --type-nav: 14px;
  --type-button: 15px;
  --section-gap: 32px;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-sans) !important;
}

body {
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.7;
  color: #0f172a;
}

.site-nav a,
.nav-link,
.dropdown-toggle,
.lang-toggle,
.dropdown-menu a,
.category-menu a {
  font-size: var(--type-nav) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

.btn,
.cta,
.primary-btn,
.secondary-btn,
.hero-cta,
.sheet-cta a,
.finds-cta a,
.qc-ref-cta a,
.guide-ref-cta a,
.faq-belgium-cta a,
.faq-final-cta a,
.cta-box a {
  font-size: var(--type-button) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.hero h1,
.sheet-copy h1,
.finds-hero-copy h1,
.qc-ref-copy h1,
.guide-ref-copy h1,
.faq-ref-copy h1,
.info-hero h1 {
  font-size: var(--type-h1) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}

.section-title h2,
.section-heading h2,
.categories-section h2,
.workflow h2,
.finds-section-row h2,
.qc-section-row h2,
.guide-section h2,
.guide-tips h2,
.faq-belgium-title h2,
.info-layout h2,
.info-hero h2 {
  font-size: var(--type-h2) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
}

.feature-card h3,
.sheet-feature h3,
.finds-metric h3,
.find-card h3,
.qc-feature h3,
.qc-card-body h3,
.guide-feature h3,
.guide-step h3,
.guide-tip h3,
.faq-belgium-card h3,
.faq-support-item h3,
.trust-card h3,
.info-card h3 {
  font-size: var(--type-h3) !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
}

.hero-copy,
.sheet-copy > p:not(.hero-badge),
.finds-hero-copy > p:not(.hero-badge),
.qc-lede,
.guide-ref-copy > p:not(.guide-ref-pill),
.faq-intro,
.info-hero > p:not(.info-pill) {
  font-size: var(--type-body) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #475569 !important;
}

.feature-card p,
.sheet-feature p,
.finds-metric p,
.finds-card-body p,
.find-card p,
.find-card-meta,
.qc-feature p,
.qc-card-body p,
.guide-feature p,
.guide-tip p,
.guide-step p,
.faq-belgium-card p,
.faq-support-item p,
.trust-card p,
.info-card p {
  font-size: var(--type-small) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: #475569 !important;
}

.cta-panel h2,
.sheet-cta h2,
.finds-cta h2,
.qc-ref-cta h2,
.guide-ref-cta h2,
.faq-belgium-cta h2,
.faq-final-cta h2,
.cta-box h2,
.info-callout h3 {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #0f172a !important;
}

.cta-panel p,
.sheet-cta p,
.finds-cta p,
.qc-ref-cta p,
.guide-ref-cta p,
.faq-belgium-cta p,
.faq-final-cta p,
.cta-box p,
.info-callout p {
  font-size: var(--type-body) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #475569 !important;
}

.categories-section,
.workflow,
.trust-strip,
.find-filters,
.latest-finds,
.qc-latest,
.guide-ref-section,
.guide-benefits,
.guide-section,
.guide-tips,
.sheet-benefits,
.faq-belgium-trust,
.faq-page .faq-trust,
.mini-band,
.finds-mini {
  margin-bottom: var(--section-gap) !important;
}

.categories-section {
  padding-top: 20px !important;
}

.workflow {
  padding-top: 22px !important;
}

.finds-page .latest-finds,
.finds-page .finds-mini,
.qc-page .qc-latest,
.guide-page .guide-section,
.guide-page .guide-tips {
  margin-bottom: var(--section-gap) !important;
}

.cta-panel,
.sheet-cta,
.finds-cta,
.qc-ref-cta,
.guide-ref-cta,
.faq-belgium-cta,
.faq-final-cta,
.cta-box,
.info-callout {
  margin-top: 0 !important;
  margin-bottom: var(--section-gap) !important;
}

.find-card,
.qc-photo-card {
  height: 100%;
  display: flex !important;
  flex-direction: column;
}

.find-card h3 {
  min-height: 44px;
}

/* Compact product cards without changing their shared visual rhythm. */
.find-card {
  min-height: 336px;
}

.find-image {
  height: 178px;
}

.find-card h3 {
  min-height: 40px;
  margin-top: 10px;
  margin-bottom: 4px;
}

.find-card p {
  min-height: 20px;
  margin-bottom: 8px;
}

.find-card strong {
  margin-bottom: 10px;
}

.find-card small {
  margin-bottom: 12px;
}

/* Product names sit in compact cards, so keep them below the shared H3 scale. */
.find-card h3,
.qc-card-body h3 {
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

.qc-card-body h3 {
  min-height: 0;
  margin-bottom: 5px;
}

.qc-card-body {
  padding-top: 10px;
  padding-bottom: 12px;
}

.find-card p {
  min-height: 22px;
}

.find-card small,
.find-card .find-card-meta {
  margin-top: auto;
}

.latest-finds .grid,
.finds-grid,
.qc-grid {
  align-items: stretch;
}

.stats-band {
  margin-top: -58px !important;
  margin-bottom: var(--section-gap) !important;
}

@media (max-width: 900px) {
  :root {
    --section-gap: 26px;
  }
}

@media (max-width: 640px) {
  :root {
    --type-h1: 32px;
    --type-h2: 22px;
    --type-h3: 16px;
    --type-body: 15px;
    --type-small: 14px;
    --type-nav: 14px;
    --type-button: 14px;
    --section-gap: 22px;
  }

  .hero h1,
  .sheet-copy h1,
  .finds-hero-copy h1,
  .qc-ref-copy h1,
  .guide-ref-copy h1,
  .faq-ref-copy h1,
  .info-hero h1 {
    line-height: 1.2 !important;
  }

  .cta-panel h2,
  .sheet-cta h2,
  .finds-cta h2,
  .qc-ref-cta h2,
  .guide-ref-cta h2,
  .faq-belgium-cta h2,
  .faq-final-cta h2,
  .cta-box h2,
  .info-callout h3 {
    font-size: 20px !important;
  }

  .cta-panel p,
  .sheet-cta p,
  .finds-cta p,
  .qc-ref-cta p,
  .guide-ref-cta p,
  .faq-belgium-cta p,
  .faq-final-cta p,
  .cta-box p,
  .info-callout p {
    font-size: 15px !important;
  }

  .find-card h3 {
    min-height: auto;
  }
}

/* Final home/finds bottom rhythm: keep the last content band, CTA, and footer
   spacing consistent with the spreadsheet-style pages. */
.home-layout .workflow {
  margin-bottom: 0 !important;
  padding-bottom: 44px !important;
}

.home-layout .workflow > .mini-band,
.finds-layout .finds-page > .finds-mini {
  margin-bottom: 32px !important;
}

.home-layout .workflow > .cta-panel,
.finds-layout .finds-page > .finds-cta {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.finds-layout .finds-page {
  padding-bottom: 44px !important;
}

@media (max-width: 640px) {
  .home-layout .workflow {
    padding-bottom: 28px !important;
  }

  .home-layout .workflow > .mini-band,
  .finds-layout .finds-page > .finds-mini {
    margin-bottom: 24px !important;
  }

  .finds-layout .finds-page {
    padding-bottom: 28px !important;
  }
}

/* Accessibility and compact navigation hardening. */
[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 7px;
  color: #ffffff;
  background: #062555;
  box-shadow: 0 8px 24px rgba(8, 25, 56, 0.24);
  font-weight: 700;
  transform: translateY(calc(-100% - 20px));
}

.skip-link:focus,
.skip-link:focus-visible {
  outline: 3px solid #ffd31a;
  outline-offset: 3px;
  transform: translateY(0);
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
  display: none;
}

.nav-dropdown.is-open > .dropdown-menu {
  display: block;
}

.find-card > .favorite-button {
  color: #596579;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}

.find-card > .favorite-button:hover,
.find-card > .favorite-button:focus-visible {
  color: #a30f29;
  border-color: #d01632;
  background: #fff0f3;
}

.find-card > .favorite-button.is-favorite,
.find-card > .favorite-button[aria-pressed="true"] {
  color: #d01632;
  border-color: #d01632;
  background: #fff0f3;
}

.find-card > .favorite-button:active {
  transform: scale(0.94);
}

.primary-nav a:focus-visible,
.nav-dropdown > button:focus-visible,
.language-button:focus-visible,
.language-option:focus-visible,
.faq-question:focus-visible,
.find-card > .favorite-button:focus-visible,
.button:focus-visible {
  outline: 3px solid #0b5ed7;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 41px 38px;
    gap: 4px 10px;
    width: calc(100% - 16px);
    min-height: 0;
    padding: 6px 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .language {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .language-button {
    height: 34px;
    min-width: 78px;
    padding: 0 9px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: clamp(12px, 4vw, 20px);
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }

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

  .primary-nav a,
  .nav-dropdown > button {
    min-height: 36px;
    padding: 8px 0;
  }

  .dropdown-menu,
  .dropdown-menu.small {
    position: fixed;
    top: 93px;
    right: 8px;
    left: 8px;
    width: auto;
    max-height: calc(100dvh - 105px);
    overflow-y: auto;
    transform: none;
  }

  .language-menu {
    position: fixed;
    top: 93px;
    right: 8px;
    left: auto;
    max-height: calc(100dvh - 105px);
    overflow-y: auto;
  }
}

@media (max-width: 380px) {
  .site-header {
    width: calc(100% - 12px);
  }

  .primary-nav {
    gap: 12px;
    font-size: 13px;
  }

  .language-button {
    min-width: 72px;
  }
}

/* Keep the first mobile hero content on one shared 24px baseline. */
@media (max-width: 760px) {
  .hero {
    margin-top: 4px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .sheet-page,
  .finds-page,
  .qc-ref-main {
    padding-top: 4px;
  }

  .sheet-hero,
  .finds-hero,
  .qc-ref-hero,
  .guide-ref-hero,
  .info-hero {
    padding-top: 20px;
  }

  .guide-ref-hero,
  .info-hero {
    margin-top: 4px;
  }

  .qc-ref-copy {
    padding-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

