:root {
  --site-max: 1360px;
  --navy: #0b1f3b;
  --navy-2: #102b4f;
  --orange: #ff6a00;
  --orange-dark: #e85c00;
  --blue: #0f67c7;
  --purple: #6e2cc8;
  --bg: #f6f8fb;
  --surface: #fff;
  --text: #071d3b;
  --muted: #314767;
  --line: #dce5f0;
  --green: #16a34a;
  --shadow: 0 16px 38px rgba(11, 31, 59, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--site-max), calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.brand-symbol { width: 40px; height: 40px; object-fit: contain; }
.brand b { color: var(--orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 26px 0 23px;
  color: rgba(255,255,255,.86);
  transition: color .18s ease;
}

.main-nav a:hover,
.main-nav a.active { color: #fff; }

.main-nav > a.active::after,
.main-nav > a:hover::after,
.nav-dropdown:hover > .has-caret::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}

.has-caret::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  margin: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.has-caret {
  padding-right: 16px !important;
}

.nav-dropdown { position: relative; }

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 10px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 100;
  transform: translateX(-50%) translateY(8px);
  width: 310px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0 0 8px 8px;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 7px 6px;
  border-radius: 6px;
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: #fff;
  background: rgba(255,106,0,.18);
}

.dropdown-menu a::after { display: none !important; }

.page-main {
  background: var(--bg);
}

.sub-hero {
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 106, 0, 0.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--line);
}

.sub-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 64px;
  padding: 56px 0;
}

.sub-hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sub-hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.sub-hero p {
  max-width: 560px;
  margin: 0 0 24px;
  color: #374151;
  font-size: 16px;
  line-height: 1.65;
}

.sub-hero-art {
  display: flex;
  justify-content: center;
}

.sub-hero-art img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.hero-search {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  max-width: 560px;
  min-height: 54px;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(11, 31, 59, 0.06);
  overflow: hidden;
}

.hero-search span {
  color: #6b7280;
  text-align: center;
  font-size: 22px;
}

.hero-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  color: var(--navy);
  font: 500 15px/1.2 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.hero-search button {
  height: 42px;
  margin-right: 8px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font: 700 14px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.hero-search button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(255, 106, 0, .24);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 560px;
}

.stat-row article {
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 31, 59, 0.06);
}

.stat-row img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.stat-row b {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 4px;
  color: #374151;
  font-size: 12px;
}

.sub-section {
  padding: 48px 0;
}

.page-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(11,31,59,.04);
  transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.filter:hover {
  transform: translateY(-1px);
  border-color: rgba(255,106,0,.45);
  color: var(--orange);
  box-shadow: 0 14px 28px rgba(255,106,0,.12);
}

.filter.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.table-card,
.side-card,
.find-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,31,59,.06);
}

.sheet-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.sheet-table th,
.sheet-table td {
  padding: 18px 22px;
  border-bottom: 1px solid #edf1f6;
  color: var(--navy);
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}

.sheet-table th {
  font-size: 13px;
  font-weight: 700;
}

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

.sheet-table td:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.sheet-table td img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sheet-table a {
  color: var(--orange);
  font-weight: 700;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}

.status.ok {
  background: #dcf8e8;
  color: #07863c;
}

.status.info {
  background: #e7f0ff;
  color: #0f67c7;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 22px;
}

.side-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.mini-pick {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #edf1f6;
}

.mini-pick:last-child {
  border-bottom: 0;
}

.mini-pick img {
  width: 74px;
  height: 56px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fafc;
}

.mini-pick b {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.mini-pick span,
.mini-pick em {
  display: block;
  margin-top: 4px;
  color: #51617a;
  font-size: 13px;
  font-style: normal;
}

.mini-pick em {
  color: #079447;
  font-weight: 700;
}

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

.find-card {
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.find-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,106,0,.42);
  box-shadow: 0 22px 44px rgba(255,106,0,.12);
}

.find-card img {
  width: 100%;
  height: 190px;
  border-radius: 10px;
  object-fit: contain;
  background: #f8fafc;
}

.find-card .category {
  display: block;
  margin-top: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.find-card h3 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.find-card p {
  margin: 0 0 18px;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.find-card a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: #374151;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.compact-cats a {
  min-height: 112px;
}

.compact-cats img {
  width: 58px;
  height: 58px;
}

@media (max-width: 900px) {
  .sub-hero-grid,
  .page-two-col {
    grid-template-columns: 1fr;
  }

  .sub-hero-grid {
    min-height: auto;
    gap: 30px;
    padding: 42px 0;
  }

  .sub-hero h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  .stat-row,
  .finds-grid {
    grid-template-columns: 1fr;
  }

  .sheet-table {
    min-width: 720px;
  }

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

.hero {
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(246,248,251,.97) 0%, rgba(246,248,251,.88) 30%, rgba(246,248,251,.35) 51%, rgba(246,248,251,.03) 73%),
    url("a53a670b-84f4-47d0-9990-571edfc9da1c.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 34px 0 24px;
}

.hero-copy { width: 610px; max-width: 100%; }

.hero h1 {
  margin: 0 0 13px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.headline-line { display: block; }
.headline-line { white-space: nowrap; }
.hero h1 .headline-line span { color: var(--orange); }

.hero-copy > p {
  max-width: 470px;
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
}

.hero-pills,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.hero-pills { margin-bottom: 13px; }

.hero-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 145px;
  height: 31px;
  padding: 0 12px;
  border: 1px solid rgba(11,31,59,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 18px rgba(11,31,59,.05);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-img-icon { width: 16px; height: 16px; object-fit: contain; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 19px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(11,31,59,.14);
}

.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255,106,0,.2);
}

.primary:hover { background: var(--orange-dark); }

.ghost {
  color: var(--blue);
  border: 1px solid #80b2ea;
  background: rgba(255,255,255,.9);
}

.ghost:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.camera-photo-icon { width: 20px; height: 16px; object-fit: contain; }

.trust-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  max-width: calc(100vw - 80px);
  margin-top: 17px;
}

.trust-row div {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 9px;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
  padding: 0 28px;
}

.trust-row div:first-child { padding-left: 0; }
.trust-row div:last-child { padding-right: 0; }

.trust-row div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 30px;
  background: rgba(11,31,59,.16);
  transform: translateY(-50%);
}
.trust-icon-img { grid-row: 1 / 3; width: 22px; height: 22px; object-fit: contain; }
.trust-row b { font-size: 10.5px; line-height: 1.08; white-space: nowrap; }
.trust-row span { font-size: 9.5px; color: var(--muted); line-height: 1.22; white-space: nowrap; }

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 32px 0 22px;
}

.feature-card {
  position: relative;
  height: 148px;
  overflow: hidden;
  padding: 17px 17px;
  border-radius: 8px;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.feature-card h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 190px;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.feature-card h2 img {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  object-fit: contain;
}

.feature-card p {
  max-width: 142px;
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255,255,255,.95);
}

.feature-card a {
  position: absolute;
  left: 17px;
  bottom: 15px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.feature-card a:hover {
  color: var(--navy);
  border-color: #fff;
  background: #fff;
  transform: translateY(-1px);
}

.feature-card.hot h2 { max-width: 170px; }
.feature-card.hot p { max-width: 132px; }
.feature-card.qc-blue h2,
.feature-card.shipping-blue h2,
.feature-card.purple-card h2 { max-width: 190px; }

.section { padding: 8px 0 22px; }

#guide.section {
  padding-top: 24px;
  padding-bottom: 18px;
}

.section-title {
  position: relative;
  margin: 0 0 18px;
  text-align: center;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 99px;
  background: var(--orange);
}

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

.category-grid a {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: 104px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--orange);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(11,31,59,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background-color .18s ease;
}

.category-grid a::before {
  content: "";
  position: absolute;
  inset: 18px 18px -8px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(255,106,0,.34), rgba(255,106,0,0) 68%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity .18s ease, transform .18s ease;
}

.category-grid a:hover {
  transform: translateY(-2px);
  color: var(--orange);
  border-color: rgba(255,106,0,.22);
  border-bottom-color: var(--orange);
  background: #fff;
  box-shadow:
    12px 18px 32px rgba(255,106,0,.18),
    0 18px 34px rgba(11,31,59,.08);
}

.category-grid a:hover::before {
  opacity: 0;
  transform: none;
}

.category-grid img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  transition: transform .18s ease;
}
.category-grid a:hover img {
  transform: scale(1.06);
  filter: none;
}
.category-grid a:hover img { filter: none; }
.category-grid b {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  transform: translateY(-10px);
}

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

.why-grid article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(11,31,59,.04);
}

.why-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
}

.orange-icon { background: linear-gradient(135deg, #ff7b17, #ff5b00); }
.blue-icon { background: linear-gradient(135deg, #0873d8, #0058ad); }
.purple-icon { background: linear-gradient(135deg, #8b39de, #5927bd); }
.why-icon img { width: 32px; height: 32px; object-fit: contain; }
.why-grid h3 { margin: 0 0 6px; font-size: 13.5px; font-weight: 700; }
.why-grid p { margin: 0; color: var(--muted); font-size: 11.5px; line-height: 1.45; }

.qc-panel {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  align-items: center;
  padding: 15px 20px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(11,31,59,.05);
}

.qc-checklist h2 { margin: 0 0 9px; font-size: 16px; line-height: 1.2; }
.qc-checklist ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.qc-checklist li { position: relative; padding-left: 18px; color: var(--navy); font-size: 11.5px; line-height: 1.35; }
.qc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(22,163,74,.14);
}

.qc-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.qc-gallery article { text-align: center; }
.qc-img { width: 100%; height: 82px; border-radius: 6px; object-fit: cover; box-shadow: 0 4px 10px rgba(11,31,59,.08); }
.qc-gallery b { display: block; margin-top: 8px; font-size: 11px; }
.qc-gallery span { position: relative; display: inline-block; margin-top: 4px; padding-left: 13px; color: var(--muted); font-size: 10px; }
.qc-gallery span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.shipping-panel {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  align-items: center;
}

.shipping-content .section-title {
  margin-bottom: 18px;
  text-align: center;
}

.parcel-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.parcel-illustration img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  mix-blend-mode: normal;
}

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

.tip-grid article {
  position: relative;
  min-height: 168px;
  padding: 20px 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 22px rgba(11,31,59,.04);
}

.tip-grid article > b,
.step-num {
  position: absolute;
  top: 13px;
  left: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 15px;
}

.tip-icon img { width: 52px; height: 52px; margin: 0 auto 11px; object-fit: contain; }
.tip-grid h3 { margin: 0 0 8px; font-size: 12.5px; line-height: 1.25; }
.tip-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.center-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}
.shipping-button { min-width: 240px; }

.steps-section { padding: 6px 0 20px; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(11,31,59,.04);
}

.steps-row article {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 12px 26px;
  overflow: visible;
}

.steps-row article + article::before {
  content: "->";
  position: absolute;
  left: -18px;
  top: 50%;
  color: var(--orange);
  font-size: 21px;
  font-weight: 700;
  transform: translateY(-50%);
  pointer-events: none;
}

.step-icon {
  display: grid;
  width: 62px;
  height: 52px;
  place-items: center;
  overflow: visible;
}

.step-icon img { width: 52px; height: 52px; object-fit: contain; }
.step-num { display: none; }
.steps-row strong { display: block; margin-bottom: 3px; font-size: 12px; }
.steps-row p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.35; }

.disclaimer {
  display: grid;
  grid-template-columns: 78px 1fr 430px;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(255,106,0,.28);
  border-radius: 8px;
  background: #fff;
}

.shield img { width: 55px; height: 55px; object-fit: contain; }
.disclaimer h2 { margin: 0 0 7px; font-size: 15px; }
.disclaimer p { margin: 0; color: var(--navy); font-size: 11.5px; line-height: 1.45; }
.skyline {
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
}

.footer {
  padding: 28px 0 18px;
  color: #d9e5f5;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.25fr;
  gap: 34px;
}

.footer-brand { color: #fff; }
.footer p { max-width: 260px; margin: 12px 0 0; color: #c6d4e6; font-size: 13px; }
.footer h3 { margin: 0 0 10px; color: #fff; font-size: 13px; }
.footer a:not(.brand) { display: block; margin-bottom: 6px; color: #d9e5f5; font-size: 13px; }
.footer a:hover { color: #fff; }

.hero-pills span,
.category-grid a,
.tip-grid article,
.steps-row,
.qc-panel,
.why-grid article,
.disclaimer {
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.shipping-button:hover,
.hero-actions .primary:hover,
.center-btn .primary:hover {
  background: #d94f00;
}

.uk-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}

.uk-card img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.uk-card strong, .uk-card span { display: block; }
.uk-card span { color: #c6d4e6; font-size: 12px; }
.footer .copyright {
  display: block;
  width: 100%;
  max-width: none;
  margin: 22px auto 0;
  text-align: center;
  color: #c6d4e6;
  font-size: 12px;
  white-space: nowrap;
}

/* Shared inner pages */
.inner-hero {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 106, 0, .08), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
  gap: 56px;
  align-items: center;
  min-height: 360px;
  padding: 34px 0 24px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.inner-hero h1 {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.inner-hero p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.inner-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.inner-visual img {
  width: 100%;
  height: auto;
  max-height: 330px;
  display: block;
  object-fit: contain;
  background: transparent;
}

.page-section {
  padding: 34px 0;
}

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

.info-card {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 31, 59, .05);
}

.info-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.wide-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.wide-card img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .12);
}

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

.faq-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
}

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

.info-card,
.faq-item,
.wide-card {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.info-card:hover,
.faq-item:hover,
.wide-card:hover {
  border-color: rgba(255, 106, 0, .38);
  box-shadow: 0 18px 40px rgba(255, 106, 0, .08), 0 12px 28px rgba(11, 31, 59, .06);
  transform: translateY(-2px);
}

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .feature-band, .why-grid, .tip-grid, .steps-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .qc-panel, .shipping-panel, .disclaimer, .footer-grid, .inner-hero-grid, .wide-card { grid-template-columns: 1fr; }
  .page-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 1280px); }
  .hero h1 { font-size: 36px; }
  .inner-hero h1 { font-size: 36px; }
  .hero-grid { min-height: auto; padding: 38px 0 26px; }
  .feature-band, .category-grid, .why-grid, .qc-gallery, .tip-grid, .steps-row, .page-grid-3 { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-row div + div { border-left: 0; padding-left: 0; }
}

/* Finds and QC Photos pages */
.subpage-main { background: var(--bg); }

.sub-hero {
  background: radial-gradient(circle at 84% 18%, rgba(255, 106, 0, .12), transparent 30%), linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}

.sub-hero-grid {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
  align-items: center;
  gap: 64px;
  padding: 34px 0 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sub-hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.sub-hero-copy {
  max-width: 560px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.sub-badges,
.sub-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sub-badges { margin: 24px 0 0; }
.sub-actions { margin: 28px 0 0; }
.filter-row { margin-bottom: 26px; gap: 12px; }

.sub-badge,
.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(11, 31, 59, .04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.sub-badge img,
.sub-badge svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.filter-pill.active,
.filter-pill:hover {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 106, 0, .18);
}

.button-primary,
.button-secondary,
.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.button-primary {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 106, 0, .22);
}

.button-secondary,
.outline-link {
  border: 1px solid rgba(255, 106, 0, .85);
  background: #fff;
  color: var(--orange);
}

.button-primary:hover,
.button-secondary:hover,
.outline-link:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 18px 34px rgba(255, 106, 0, .3);
}

.button-secondary:hover,
.outline-link:hover {
  background: #fff7f1;
  color: var(--orange-dark);
  border-color: var(--orange-dark);
}

.sub-hero-art {
  display: flex;
  justify-content: flex-end;
}

.sub-hero-art img {
  width: min(100%, 620px);
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 22px 42px rgba(11, 31, 59, .12));
}

.sub-section { padding: 34px 0; }
.sub-section:first-of-type { padding-top: 42px; }

.sub-section h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.2px;
}

.section-heading-center { text-align: center; }

.section-heading-center::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 99px;
  background: var(--orange);
}

.content-sidebar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.card-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 31, 59, .05);
}

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

.find-card {
  min-height: 336px;
  overflow: hidden;
  padding: 16px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.find-card:hover,
.qc-card:hover,
.mini-item:hover,
.step-card:hover,
.side-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, .5);
  box-shadow: 0 18px 34px rgba(255, 106, 0, .12);
}

.find-card img {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.find-card .category {
  margin: 14px 0 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.find-card h3,
.side-card h3,
.qc-card h3,
.step-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.find-card p,
.side-card p,
.qc-card p,
.step-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 800;
}

.side-stack { display: grid; gap: 16px; }
.side-card { padding: 18px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.side-card h2 { margin: 0 0 14px; font-size: 19px; }

.pick-item,
.save-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e9eff7;
}

.pick-item:last-child,
.save-item:last-child { border-bottom: 0; }

.pick-item img,
.save-item img {
  width: 70px;
  height: 56px;
  border-radius: 8px;
  background: #f7f9fc;
  object-fit: contain;
}

.pick-item strong,
.save-item strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.pick-item span,
.save-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.mini-item {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mini-item img {
  width: 94px;
  height: 70px;
  object-fit: contain;
}

.mini-item strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.mini-item span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.trust-grid,
.qc-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-card,
.qc-info-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
}

.trust-icon,
.qc-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff3e9;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
}

.community-cta {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 28px;
  border: 1px solid rgba(255, 106, 0, .35);
  border-radius: 10px;
  background: linear-gradient(90deg, #fff7f1 0%, #fff 64%);
}

.community-cta img {
  width: 72px;
  height: 58px;
  object-fit: contain;
}

.qc-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 18px;
}

.qc-checklist { padding: 10px 6px; }
.qc-checklist h2 { margin: 0 0 14px; font-size: 21px; }

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

.qc-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.5;
}

.qc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #e9f8ee;
}

.qc-gallery-page {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.qc-card {
  overflow: hidden;
  padding: 0 0 12px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.qc-card img {
  width: 100%;
  height: 122px;
  object-fit: cover;
}

.qc-card h3 {
  margin-top: 11px;
  font-size: 13px;
}

.qc-card p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.qc-card p::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

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

.step-card {
  position: relative;
  padding: 24px 18px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.step-card img {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.step-no {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .sub-hero-grid,
  .content-sidebar-grid,
  .qc-layout { grid-template-columns: 1fr; }
  .finds-grid,
  .trust-grid,
  .qc-info-grid,
  .qc-gallery-page,
  .step-row,
  .mini-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .sub-hero-grid { min-height: auto; padding: 38px 0; }
  .sub-hero h1 { font-size: 38px; }
  .finds-grid,
  .trust-grid,
  .qc-info-grid,
  .qc-gallery-page,
  .step-row,
  .mini-grid,
  .community-cta { grid-template-columns: 1fr; }
}

/* Typography normalization: premium UK SaaS readability */
:root {
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --heading-color: #111827;
  --body-color: #374151;
  --muted-text: #6b7280;
}

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

body {
  color: var(--body-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1,
.hero h1,
.inner-hero h1,
.sub-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h2,
.section-title,
.section-heading-center,
.why-title,
.shipping-title,
.steps-title,
.sub-section > h2,
.side-card h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h3,
.feature-card h3,
.why-grid h3,
.tip-grid h3,
.step-card h3,
.find-card h3,
.trust-card h3,
.qc-info-card h3,
.card-panel h3,
.qc-card h3,
.footer h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

p,
li,
.hero-lead,
.sub-hero-copy,
.inner-hero p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

small,
.caption,
.tagline,
.sub-badge,
.filter-pill,
.trust-row span,
.qc-gallery span,
.qc-card p,
.side-card p,
.mini-item span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.main-nav {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.main-nav a.active {
  font-weight: 600;
}

.dropdown-menu a {
  font-size: 14px;
  font-weight: 500;
}

.btn,
.button-primary,
.button-secondary,
.shipping-button,
.hero-search button,
.find-card a,
.outline-link,
button,
input[type="button"],
input[type="submit"] {
  min-height: 48px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.feature-card p,
.why-grid p,
.tip-grid p,
.steps-row p,
.disclaimer p,
.find-card p,
.trust-card p,
.qc-info-card p,
.qc-checklist li,
.qc-card p,
.community-cta p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

table,
th,
td,
.finds-table {
  font-variant-numeric: tabular-nums;
}

th,
.finds-table th {
  font-size: 13px;
  font-weight: 600;
}

td,
.finds-table td {
  font-size: 14px;
  font-weight: 400;
}

.footer h3 {
  font-size: 14px;
  font-weight: 600;
}

.footer a:not(.brand),
.footer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.footer .copyright {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  h1,
  .hero h1,
  .inner-hero h1,
  .sub-hero h1 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.03em;
  }

  h2,
  .section-title,
  .section-heading-center,
  .why-title,
  .shipping-title,
  .steps-title,
  .sub-section > h2,
  .side-card h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .btn,
  .button-primary,
  .button-secondary,
  .shipping-button,
  .hero-search button,
  .find-card a,
  .outline-link,
  button,
  input[type="button"],
  input[type="submit"] {
    min-height: 44px;
  }
}

/* Global breathing rhythm */
.hero-grid,
.inner-hero-grid,
.sub-hero-grid {
  min-height: 380px;
  padding-top: 42px;
  padding-bottom: 34px;
}

.feature-band {
  padding-top: 38px;
  padding-bottom: 30px;
  gap: 22px;
}

.section,
.page-section,
.sub-section,
.steps-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.section + .section,
.sub-section + .sub-section,
.page-section + .page-section {
  padding-top: 30px;
}

.section-title,
.section-heading-center,
.why-title,
.shipping-title,
.steps-title,
.sub-section > h2 {
  margin-bottom: 26px;
}

.category-grid,
.why-grid,
.tip-grid,
.steps-row,
.page-grid-3,
.qc-gallery,
.qc-gallery-page,
.filter-row {
  gap: 22px;
}

.category-grid a {
  min-height: 118px;
  padding: 18px 14px 16px;
}

.feature-card,
.info-card,
.card-panel,
.find-card,
.trust-card,
.qc-info-card,
.step-card,
.side-card,
.wide-card,
.disclaimer,
.qc-panel {
  padding: 22px;
}

.feature-card h2,
.feature-card h3,
.info-card h3,
.find-card h3,
.trust-card h3,
.qc-info-card h3,
.step-card h3,
.side-card h3 {
  margin-bottom: 8px;
}

.feature-card p,
.info-card p,
.find-card p,
.trust-card p,
.qc-info-card p,
.step-card p,
.side-card p {
  margin-top: 8px;
}

.btn,
.button-primary,
.button-secondary,
.shipping-button,
.outline-link,
button,
input[type="button"],
input[type="submit"] {
  gap: 10px;
  padding-left: 22px;
  padding-right: 22px;
}

.hero-actions,
.sub-actions,
.inner-actions {
  gap: 16px;
  margin-top: 22px;
}

.hero-pills,
.sub-badges {
  gap: 14px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.qc-panel {
  gap: 30px;
}

.shipping-panel {
  gap: 34px;
}

.footer {
  padding-top: 34px;
  padding-bottom: 22px;
}

.footer-grid {
  gap: 40px;
}

@media (max-width: 900px) {
  .hero-grid,
  .inner-hero-grid,
  .sub-hero-grid {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .feature-band,
  .section,
  .page-section,
  .sub-section,
  .steps-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .category-grid,
  .why-grid,
  .tip-grid,
  .steps-row,
  .page-grid-3,
  .qc-gallery,
  .qc-gallery-page {
    gap: 16px;
  }
}

/* Final site spacing polish */
:root {
  --site-section-y: 48px;
  --site-section-y-tight: 36px;
  --site-card-pad: 24px;
  --site-card-gap: 24px;
}

.hero-grid,
.inner-hero-grid,
.sub-hero-grid {
  min-height: 390px;
  padding-top: 44px;
  padding-bottom: 38px;
}

.feature-band {
  padding-top: 42px;
  padding-bottom: 34px;
  gap: var(--site-card-gap);
}

.section,
.page-section,
.sub-section,
.steps-section {
  padding-top: var(--site-section-y);
  padding-bottom: var(--site-section-y);
}

.section + .section,
.page-section + .page-section,
.sub-section + .sub-section {
  padding-top: var(--site-section-y-tight);
}

.section-title,
.section-heading-center,
.why-title,
.shipping-title,
.steps-title,
.sub-section > h2 {
  margin-bottom: 28px;
}

.section-title::after,
.section-heading-center::after,
.shipping-title::after,
.steps-title::after {
  margin-top: 10px;
}

.category-grid,
.why-grid,
.tip-grid,
.steps-row,
.page-grid-3,
.qc-gallery,
.qc-gallery-page,
.filter-row,
.sub-grid,
.trust-grid {
  gap: var(--site-card-gap);
}

.category-grid a {
  min-height: 132px;
  padding: 22px 16px 20px;
  gap: 10px;
  align-content: center;
}

.category-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 2px;
}

.feature-card,
.info-card,
.card-panel,
.find-card,
.trust-card,
.qc-info-card,
.step-card,
.side-card,
.wide-card,
.disclaimer,
.qc-panel,
.shipping-panel {
  padding: var(--site-card-pad);
}

.feature-card {
  min-height: 150px;
}

.feature-card h2,
.feature-card h3,
.info-card h3,
.find-card h3,
.trust-card h3,
.qc-info-card h3,
.step-card h3,
.side-card h3,
.qc-card h3 {
  margin-bottom: 9px;
}

.feature-card p,
.info-card p,
.find-card p,
.trust-card p,
.qc-info-card p,
.step-card p,
.side-card p,
.qc-card p {
  margin-top: 8px;
}

.btn,
.button-primary,
.button-secondary,
.shipping-button,
.outline-link,
.find-card a,
button,
input[type="button"],
input[type="submit"] {
  min-height: 46px;
  gap: 10px;
  padding-left: 24px;
  padding-right: 24px;
}

.feature-card a {
  margin-top: 16px;
}

.hero-pills,
.sub-badges {
  gap: 16px;
  margin-top: 22px;
  margin-bottom: 18px;
}

.hero-actions,
.sub-actions,
.inner-actions {
  gap: 18px;
  margin-top: 24px;
}

.hero-copy > p,
.sub-hero-copy,
.inner-hero p {
  margin-bottom: 0;
}

.why-grid,
.qc-panel,
.shipping-panel,
.steps-row,
.disclaimer {
  margin-top: 0;
}

.qc-panel {
  gap: 34px;
}

.qc-checklist ul,
.qc-gallery-page,
.side-stack {
  gap: 14px;
}

.shipping-panel {
  gap: 38px;
}

.center-btn {
  margin-top: 26px;
}

.footer {
  padding-top: 40px;
  padding-bottom: 24px;
}

.footer-grid {
  gap: 44px;
}

@media (max-width: 900px) {
  :root {
    --site-section-y: 38px;
    --site-section-y-tight: 30px;
    --site-card-pad: 20px;
    --site-card-gap: 18px;
  }

  .hero-grid,
  .inner-hero-grid,
  .sub-hero-grid {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .category-grid a {
    min-height: 118px;
  }

  .category-grid img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 700px) {
  .section,
  .page-section,
  .sub-section,
  .steps-section,
  .feature-band {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .btn,
  .button-primary,
  .button-secondary,
  .shipping-button,
  .outline-link,
  .find-card a,
  button,
  input[type="button"],
  input[type="submit"] {
    min-height: 44px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Sitewide breathing pass */
:root {
  --rhythm-section: 52px;
  --rhythm-section-compact: 40px;
  --rhythm-gap: 24px;
  --rhythm-card-pad: 24px;
}

.wrap {
  width: min(var(--site-max), calc(100% - 48px));
}

.hero,
.inner-hero,
.sub-hero {
  margin-bottom: 0;
}

.hero-grid,
.inner-hero-grid,
.sub-hero-grid {
  min-height: 400px;
  padding-top: 48px;
  padding-bottom: 44px;
}

.feature-band,
.section,
.page-section,
.sub-section,
.steps-section {
  padding-top: var(--rhythm-section);
  padding-bottom: var(--rhythm-section);
}

.feature-band {
  gap: 24px;
}

.section-title,
.section-heading-center,
.why-title,
.shipping-title,
.steps-title,
.sub-section > h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

.section-title::after,
.section-heading-center::after,
.why-title::after,
.shipping-title::after,
.steps-title::after {
  margin-top: 10px;
}

.category-grid,
.why-grid,
.page-grid-3,
.tip-grid,
.steps-row,
.qc-gallery,
.qc-gallery-page,
.trust-grid,
.sub-grid {
  gap: var(--rhythm-gap);
}

.category-grid a {
  min-height: 132px;
  padding: 22px 16px 18px;
  gap: 8px;
  justify-items: center;
  align-content: center;
}

.category-grid img {
  width: 62px;
  height: 62px;
  margin: 0;
}

.feature-card,
.info-card,
.trust-card,
.qc-card,
.step-card,
.find-card,
.card-panel,
.qc-panel,
.shipping-panel,
.disclaimer {
  padding: var(--rhythm-card-pad);
}

.feature-card {
  min-height: 154px;
}

.feature-card h2,
.feature-card h3,
.info-card h3,
.trust-card h3,
.qc-card h3,
.step-card h3,
.find-card h3 {
  margin: 0 0 10px;
}

.feature-card p,
.info-card p,
.trust-card p,
.qc-card p,
.step-card p,
.find-card p {
  margin: 0;
}

.feature-card a,
.find-card a,
.text-link,
.outline-link {
  margin-top: 16px;
}

.btn,
.button-primary,
.button-secondary,
.shipping-button,
.outline-link,
button,
input[type="button"],
input[type="submit"] {
  min-height: 46px;
  padding: 0 24px;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.hero-pills,
.sub-badges {
  gap: 16px;
  margin-top: 22px;
}

.hero-actions,
.sub-actions,
.inner-actions {
  gap: 18px;
  margin-top: 24px;
}

.hero-trust,
.benefit-strip {
  gap: 22px;
  margin-top: 24px;
}

.qc-panel {
  gap: 34px;
  align-items: center;
}

.shipping-panel {
  gap: 38px;
  align-items: center;
}

.center-btn {
  margin-top: 28px;
}

.footer {
  margin-top: 0;
  padding-top: 44px;
  padding-bottom: 26px;
}

.footer-grid {
  gap: 44px;
}

@media (max-width: 900px) {
  :root {
    --rhythm-section: 40px;
    --rhythm-section-compact: 32px;
    --rhythm-gap: 18px;
    --rhythm-card-pad: 20px;
  }

  .wrap {
    width: min(100% - 32px, var(--site-max));
  }

  .hero-grid,
  .inner-hero-grid,
  .sub-hero-grid {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .category-grid a {
    min-height: 122px;
  }

  .category-grid img {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 640px) {
  .feature-band,
  .section,
  .page-section,
  .sub-section,
  .steps-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .btn,
  .button-primary,
  .button-secondary,
  .shipping-button,
  .outline-link,
  button,
  input[type="button"],
  input[type="submit"] {
    min-height: 44px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Feature card text collision fix */
.feature-card {
  height: 154px;
}

.feature-card h2 {
  margin-bottom: 7px;
}

.feature-card p {
  max-width: 158px;
  line-height: 1.35;
}

.feature-card.hot p {
  max-width: 164px;
  line-height: 1.28;
}

.feature-card a {
  bottom: 14px;
  min-height: 30px;
}

.feature-card.hot a {
  bottom: 15px;
}

@media (max-width: 1100px) {
  .feature-card p {
    max-width: 145px;
    font-size: 10.5px;
  }

  .feature-card.hot p {
    max-width: 152px;
  }
}

/* Clean replacement pages */
.clean-page {
  background: var(--bg);
  color: var(--navy);
}

.clean-hero {
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 106, 0, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--line);
}

.clean-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  align-items: center;
  gap: 64px;
  padding: 56px 0;
}

.clean-hero h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.clean-hero p {
  max-width: 560px;
  margin: 0 0 22px;
  color: #374151;
  font-size: 16px;
  line-height: 1.65;
}

.clean-hero-img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.clean-actions {
  margin-top: 18px;
}

.clean-search {
  max-width: 560px;
  min-height: 54px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(11, 31, 59, 0.06);
  overflow: hidden;
}

.clean-search span {
  color: #64748b;
  text-align: center;
  font-size: 22px;
}

.clean-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--navy);
  font: 500 15px/1.2 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.clean-search button {
  height: 42px;
  margin-right: 8px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.clean-search button:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
  transform: translateY(-1px);
}

.clean-stats {
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.clean-stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 31, 59, 0.06);
}

.clean-stats b {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.05;
}

.clean-stats span {
  display: block;
  margin-top: 6px;
  color: #51617a;
  font-size: 13px;
}

.clean-section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 10px 0 0;
  color: #51617a;
  font-size: 15px;
  line-height: 1.6;
}

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

.clean-category-grid a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--orange);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 26px rgba(11, 31, 59, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.clean-category-grid a:hover {
  color: var(--orange);
  border-color: rgba(255, 106, 0, 0.6);
  box-shadow: 0 20px 42px rgba(255, 106, 0, 0.14);
  transform: translateY(-2px);
}

.clean-category-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.clean-three,
.clean-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.clean-three article,
.clean-steps article,
.clean-qc,
.clean-faq article,
.clean-products article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 31, 59, 0.06);
}

.clean-three article {
  min-height: 150px;
  padding: 24px;
}

.clean-three img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.clean-three h3,
.clean-products h3,
.clean-steps b {
  display: block;
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.clean-three p,
.clean-products p,
.clean-steps p,
.clean-faq p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

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

.clean-products article {
  padding: 18px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.clean-products article:hover {
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 22px 44px rgba(255, 106, 0, 0.12);
  transform: translateY(-3px);
}

.clean-products img {
  width: 100%;
  height: 190px;
  border-radius: 10px;
  object-fit: contain;
  background: #f8fafc;
}

.clean-products small {
  display: block;
  margin-top: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.clean-products a {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.clean-qc {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.clean-qc h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.clean-qc ul {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  font-size: 14px;
  line-height: 1.8;
}

.clean-qc-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.clean-qc-gallery figure {
  margin: 0;
  text-align: center;
}

.clean-qc-gallery img {
  width: 100%;
  height: 104px;
  border-radius: 8px;
  object-fit: cover;
}

.clean-qc-gallery figcaption {
  margin-top: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.clean-steps article {
  min-height: 180px;
  padding: 22px;
  text-align: center;
}

.clean-steps img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.clean-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.clean-faq article {
  padding: 24px;
}

.clean-faq h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .clean-hero-grid,
  .clean-qc {
    grid-template-columns: 1fr;
  }

  .clean-category-grid,
  .clean-products,
  .clean-three,
  .clean-steps,
  .clean-qc-gallery,
  .clean-faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .clean-hero-grid {
    min-height: auto;
    gap: 28px;
    padding: 40px 0;
  }

  .clean-hero h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  .clean-section {
    padding: 38px 0;
  }

  .clean-search,
  .clean-stats,
  .clean-category-grid,
  .clean-products,
  .clean-three,
  .clean-steps,
  .clean-qc-gallery,
  .clean-faq {
    grid-template-columns: 1fr;
  }
}

/* Regenerated inner pages - final styles */
.fresh-page {
  background: #f6f8fb;
  color: var(--navy);
}

.fresh-hero,
.fresh-simple-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--line);
}

.fresh-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 70px;
  padding: 58px 0;
}

.fresh-copy > span,
.fresh-simple-hero span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.fresh-hero h1,
.fresh-simple-hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.fresh-hero p,
.fresh-simple-hero p {
  max-width: 560px;
  margin: 0 0 24px;
  color: #374151;
  font-size: 16px;
  line-height: 1.65;
}

.fresh-hero-grid > img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.fresh-simple-hero .wrap {
  padding: 64px 0 54px;
}

.fresh-search {
  max-width: 560px;
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
  padding: 6px 6px 6px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(11,31,59,.06);
}

.fresh-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--navy);
  font: 500 15px/1.2 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.fresh-search button,
.fresh-page .btn.primary {
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.fresh-search button {
  height: 42px;
  padding: 0 24px;
  cursor: pointer;
}

.fresh-search button:hover,
.fresh-page .btn.primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(255,106,0,.2);
  transform: translateY(-1px);
}

.fresh-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 560px;
}

.fresh-metrics b {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
  box-shadow: 0 10px 28px rgba(11,31,59,.06);
}

.fresh-metrics small {
  display: block;
  margin-top: 6px;
  color: #51617a;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
}

.fresh-section {
  padding: 56px 0;
}

.fresh-title {
  max-width: 680px;
  margin: 0 auto 26px;
  text-align: center;
}

.fresh-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fresh-title p {
  margin: 10px 0 0;
  color: #51617a;
  font-size: 15px;
  line-height: 1.6;
}

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

.fresh-category-grid a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--orange);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 26px rgba(11,31,59,.04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.fresh-category-grid a:hover {
  color: var(--orange);
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 22px 42px rgba(255,106,0,.14);
  transform: translateY(-2px);
}

.fresh-category-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.fresh-info-strip,
.fresh-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fresh-info-strip article,
.fresh-check-grid article,
.fresh-product-grid article,
.fresh-faq-list article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,31,59,.06);
}

.fresh-info-strip article,
.fresh-check-grid article,
.fresh-faq-list article {
  padding: 24px;
}

.fresh-info-strip h3,
.fresh-check-grid h2,
.fresh-faq-list h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.fresh-info-strip p,
.fresh-check-grid p,
.fresh-faq-list p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.65;
}

.fresh-check-grid b {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
}

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

.fresh-product-grid article {
  padding: 18px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fresh-product-grid article:hover {
  border-color: rgba(255,106,0,.45);
  box-shadow: 0 22px 44px rgba(255,106,0,.12);
  transform: translateY(-3px);
}

.fresh-product-grid img {
  width: 100%;
  height: 190px;
  border-radius: 10px;
  object-fit: contain;
  background: #f8fafc;
}

.fresh-product-grid span {
  display: block;
  margin-top: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.fresh-product-grid h3 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.fresh-product-grid p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.fresh-product-grid a {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.fresh-qc-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,31,59,.06);
}

.fresh-qc-strip img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
}

.fresh-guide-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
}

.fresh-guide-layout > img {
  width: 100%;
  object-fit: contain;
}

.fresh-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .fresh-hero-grid,
  .fresh-guide-layout {
    grid-template-columns: 1fr;
  }

  .fresh-category-grid,
  .fresh-product-grid,
  .fresh-info-strip,
  .fresh-check-grid,
  .fresh-qc-strip,
  .fresh-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fresh-hero-grid {
    min-height: auto;
    gap: 28px;
    padding: 40px 0;
  }

  .fresh-hero h1,
  .fresh-simple-hero h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  .fresh-section {
    padding: 38px 0;
  }

  .fresh-category-grid,
  .fresh-product-grid,
  .fresh-info-strip,
  .fresh-check-grid,
  .fresh-qc-strip,
  .fresh-faq-list,
  .fresh-metrics {
    grid-template-columns: 1fr;
  }
}

/* Secondary pages redesign - final unified layer */
.secondary-page {
  background: #f7f9fc;
  color: #10243e;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.secondary-hero {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--line);
}

.secondary-hero-grid {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 72px;
  align-items: center;
  padding: 64px 0;
}

.secondary-hero-grid > img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.secondary-hero h1 {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.035em;
}

.secondary-hero p {
  max-width: 560px;
  margin: 0 0 26px;
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
}

.secondary-section {
  padding: 56px 0;
}

.secondary-section.compact-top {
  padding-top: 20px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -.02em;
}

.section-heading p {
  margin: 10px auto 0;
  color: #51617a;
  font-size: 16px;
  line-height: 1.6;
}

.resource-search {
  width: min(100%, 620px);
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 26px 0 0;
  padding: 6px 6px 6px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(11, 31, 59, .06);
}

.resource-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--navy);
  font: 500 15px/1.2 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.resource-search button,
.secondary-page .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.resource-search button {
  height: 42px;
  min-height: 42px;
  padding: 0 24px;
  border: 0;
  background: var(--orange);
  color: #fff;
}

.resource-search button:hover,
.secondary-page .btn.primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(255, 106, 0, .2);
  transform: translateY(-1px);
}

.secondary-page .btn.ghost:hover {
  border-color: rgba(255, 106, 0, .55);
  color: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 106, 0, .12);
  transform: translateY(-1px);
}

.resource-cards,
.simple-list,
.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.resource-cards article,
.simple-list article,
.step-cards article,
.find-card-grid article,
.qc-card-grid article,
.guide-card-grid article,
.faq-card-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 31, 59, .06);
}

.resource-cards article,
.guide-card-grid article,
.faq-card-grid article {
  padding: 24px;
}

.resource-cards img,
.guide-card-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
}

.resource-cards h3,
.simple-list h3,
.step-cards h3,
.find-card-grid h3,
.qc-card-grid h3,
.guide-card-grid h3,
.faq-card-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.resource-cards p,
.simple-list p,
.step-cards p,
.find-card-grid p,
.qc-card-grid p,
.guide-card-grid p,
.faq-card-grid p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.filter-pills a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(11, 31, 59, .04);
  transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.filter-pills a:hover {
  border-color: rgba(255, 106, 0, .5);
  color: var(--orange);
  box-shadow: 0 18px 34px rgba(255, 106, 0, .12);
  transform: translateY(-1px);
}

.simple-list article {
  padding: 24px;
}

.simple-list span,
.find-card-grid span,
.faq-card-grid span {
  display: block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.simple-list b {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9f8ee;
  color: #099246;
  font-size: 12px;
}

.simple-list a,
.find-card-grid a,
.guide-card-grid a {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

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

.step-cards article {
  position: relative;
  padding: 24px;
  text-align: center;
}

.step-cards strong {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.step-cards img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 14px auto 12px;
}

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

.find-card-grid article {
  padding: 18px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.find-card-grid article:hover {
  border-color: rgba(255, 106, 0, .5);
  box-shadow: 0 22px 44px rgba(255, 106, 0, .12);
  transform: translateY(-3px);
}

.find-card-grid img {
  width: 100%;
  height: 190px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

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

.qc-card-grid article {
  padding: 16px;
  text-align: center;
}

.qc-card-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

.faq-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-card-grid article {
  padding: 24px;
}

.secondary-category-grid {
  margin-top: 0;
}

.secondary-category-grid a {
  min-height: 138px;
}

.secondary-category-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .secondary-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .resource-cards,
  .simple-list,
  .find-card-grid,
  .qc-card-grid,
  .guide-card-grid,
  .faq-card-grid,
  .step-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .secondary-hero-grid {
    min-height: auto;
    padding: 42px 0;
  }

  .secondary-hero h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  .secondary-hero p {
    font-size: 16px;
  }

  .secondary-section {
    padding: 40px 0;
  }

  .resource-cards,
  .simple-list,
  .find-card-grid,
  .qc-card-grid,
  .guide-card-grid,
  .faq-card-grid,
  .step-cards {
    grid-template-columns: 1fr;
  }

  .resource-search {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .resource-search button {
    width: 100%;
  }
}

/* Secondary pages quality pass */
.secondary-page .wrap {
  max-width: 1180px;
}

.secondary-page .site-width {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.secondary-hero-grid {
  min-height: 500px;
}

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

.secondary-page .btn {
  min-width: 170px;
  padding: 0 22px;
  text-decoration: none;
}

.secondary-page .btn.primary {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
}

.secondary-page .btn.ghost {
  border: 1px solid #2d7ff9;
  background: #fff;
  color: #065ec6;
}

.secondary-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
  color: #24364f;
  font-size: 14px;
  font-weight: 600;
}

.secondary-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secondary-trust-row span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: inset 0 0 0 2px #e9f8ee;
}

.secondary-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 620px);
  margin-top: 28px;
}

.secondary-metrics article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(11,31,59,.06);
}

.secondary-metrics img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.secondary-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.02em;
}

.secondary-metrics span {
  display: block;
  margin-top: 4px;
  color: #51617a;
  font-size: 13px;
  line-height: 1.3;
}

.secondary-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(11,31,59,.06);
}

.secondary-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
}

.curated-table {
  overflow: hidden;
}

.curated-table .row {
  display: grid;
  grid-template-columns: 150px 1.35fr 130px 1.2fr 90px;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid #e7edf5;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.curated-table .row:first-child {
  border-top: 0;
  color: #132640;
  font-size: 13px;
  font-weight: 700;
}

.curated-table .status {
  justify-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f8ee;
  color: #078b42;
  font-size: 12px;
  font-weight: 700;
}

.curated-table .status.info {
  background: #eaf3ff;
  color: #0966d8;
}

.curated-table .status.warn {
  background: #fff2cf;
  color: #a56300;
}

.curated-table a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.side-panel {
  padding: 22px;
}

.side-panel h2,
.side-panel h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.highlight-list {
  display: grid;
  gap: 16px;
}

.highlight-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7edf5;
}

.highlight-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.highlight-item img {
  width: 72px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
}

.highlight-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.highlight-item span {
  display: block;
  margin-top: 4px;
  color: #51617a;
  font-size: 13px;
}

.highlight-item b {
  display: inline-block;
  margin-top: 6px;
  color: #0f9d4a;
  font-size: 12px;
}

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

.rich-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,31,59,.06);
}

.rich-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
}

.rich-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.rich-card p,
.rich-card li {
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}

.rich-card p,
.rich-card ul {
  margin: 0;
}

.rich-card ul {
  padding-left: 18px;
}

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

.guide-path article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,31,59,.05);
}

.guide-path strong {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
}

.guide-path img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 12px;
}

.guide-path h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.guide-path p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
}

.note-band {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255,106,0,.28);
  border-radius: 14px;
  background: linear-gradient(90deg, #fff7ef 0%, #fff 52%, #f7fbff 100%);
  box-shadow: 0 14px 34px rgba(11,31,59,.05);
}

.note-band img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.note-band h2,
.note-band h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
}

.note-band p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}

.note-band .btn {
  min-width: 150px;
}

/* Secondary page rebuild polish */
.secondary-page .secondary-hero {
  border-bottom: 1px solid #dbe5f0;
  background:
    radial-gradient(circle at 78% 34%, rgba(255,106,0,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.secondary-page .secondary-hero-grid > img {
  max-height: 360px;
  justify-self: end;
  filter: drop-shadow(0 24px 42px rgba(11,31,59,.12));
}

.resource-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: min(100%, 520px);
  margin-top: 24px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11,31,59,.07);
}

.resource-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: var(--navy);
  font: inherit;
}

.resource-search button {
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.resource-search button:hover {
  background: #e95600;
  box-shadow: 0 12px 24px rgba(255,106,0,.2);
  transform: translateY(-1px);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.filter-pills a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(11,31,59,.04);
  transition: border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.filter-pills a:hover,
.filter-pills a.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255,106,0,.18);
  transform: translateY(-1px);
}

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

.find-card-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,31,59,.06);
}

.find-card-grid article > img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  border-radius: 10px;
  background: #f8fafc;
}

.find-card-grid span {
  display: block;
  margin-top: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.find-card-grid h3 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.find-card-grid p {
  margin: 0;
  min-height: 46px;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
}

.find-card-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.find-card-grid a:hover {
  color: #d94f00;
}

.block-link {
  width: 100%;
  margin-top: 20px;
}

.qc-preview-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.qc-checklist h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 20px;
}

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

.qc-checklist li {
  position: relative;
  padding-left: 22px;
  color: #24344f;
  font-size: 14px;
  line-height: 1.45;
}

.qc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
}

.qc-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.qc-mini-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.qc-mini-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.qc-mini-grid h3 {
  margin: 10px 8px 4px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
}

.qc-mini-grid span {
  display: block;
  margin: 0 8px 12px;
  color: #52627a;
  font-size: 12px;
  text-align: center;
}

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

.faq-card-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,31,59,.05);
}

.faq-card-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-card-grid h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.faq-card-grid p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.65;
}

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

.simple-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,31,59,.05);
}

.simple-list span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.simple-list h3 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 17px;
}

.simple-list b {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f8ee;
  color: #078b42;
  font-size: 12px;
}

.simple-list p {
  margin: 0 0 14px;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}

.simple-list a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.category-grid.secondary-category-grid a {
  transition: border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.category-grid.secondary-category-grid a:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 16px 34px rgba(255,106,0,.12), 0 16px 34px rgba(11,31,59,.06);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .secondary-grid-2 {
    grid-template-columns: 1fr;
  }

  .guide-path,
  .rich-card-grid,
  .faq-card-grid,
  .find-card-grid,
  .simple-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .secondary-page .site-width {
    width: min(100% - 28px, 1180px);
  }

  .secondary-metrics,
  .guide-path,
  .rich-card-grid,
  .faq-card-grid,
  .find-card-grid,
  .simple-list,
  .qc-mini-grid {
    grid-template-columns: 1fr;
  }

  .resource-search {
    grid-template-columns: 1fr;
  }

  .curated-table .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .note-band {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* Secondary pages final alignment: keep the home page untouched while making
   Spreadsheet, Finds, Categories, QC, Guides and FAQ feel like one site. */
.secondary-page {
  --secondary-max: var(--site-max);
  --secondary-gap: 28px;
  background: #f6f8fb;
}

.secondary-page .wrap,
.secondary-page .site-width,
.secondary-page > .wrap {
  width: min(100% - 48px, var(--secondary-max));
  max-width: var(--secondary-max);
  margin-inline: auto;
}

.secondary-page .secondary-hero {
  border-bottom: 1px solid #dce5ef;
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 106, 0, .10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.secondary-page .secondary-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(360px, .9fr);
  gap: 58px;
  align-items: center;
  min-height: 460px;
  padding: 72px 0 66px;
}

.secondary-page .secondary-hero-grid > div {
  max-width: 590px;
}

.secondary-page .secondary-hero-grid > img {
  width: 100%;
  max-width: 520px;
  max-height: 340px;
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(11, 31, 59, .10));
}

.secondary-page .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.secondary-page .secondary-hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--navy);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.secondary-page .secondary-hero p {
  max-width: 610px;
  margin: 18px 0 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.65;
}

.secondary-page .secondary-section {
  margin-top: 56px;
}

.secondary-page .secondary-section.compact-top {
  margin-top: 28px;
}

.secondary-page .section-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.secondary-page .section-heading h2,
.secondary-page .secondary-section > h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.secondary-page .section-heading h2::after,
.secondary-page .secondary-section > h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.secondary-page .section-heading p {
  margin: 12px auto 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.secondary-page .secondary-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.secondary-page .secondary-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d9e3ef;
  border-radius: 10px;
  background: rgba(255,255,255,.88);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(11,31,59,.04);
}

.secondary-page .secondary-trust-row span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.85);
}

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

.secondary-page .btn,
.secondary-page button,
.secondary-page .filter-pills a {
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.secondary-page .btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

.secondary-page .btn.primary:hover,
.secondary-page button:hover {
  background: #e85f00;
  box-shadow: 0 16px 30px rgba(255,106,0,.20);
  transform: translateY(-1px);
}

.secondary-page .btn.ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff7f1;
  box-shadow: 0 12px 26px rgba(255,106,0,.10);
  transform: translateY(-1px);
}

.secondary-page .resource-search {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
  max-width: 560px;
  margin-top: 24px;
  padding: 7px;
  border: 1px solid #d9e3ef;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11,31,59,.06);
}

.secondary-page .resource-search input {
  min-width: 0;
  height: 42px;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--navy);
  font: inherit;
}

.secondary-page .resource-search button {
  height: 42px;
  border: 0;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.secondary-page .secondary-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 22px;
}

.secondary-page .secondary-metrics article {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-height: 84px;
  padding: 16px;
  border: 1px solid #d9e3ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11,31,59,.05);
}

.secondary-page .secondary-metrics img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  grid-row: span 2;
}

.secondary-page .secondary-metrics strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.secondary-page .secondary-metrics span {
  color: #475569;
  font-size: 13px;
}

.secondary-page .filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.secondary-page .filter-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d9e3ef;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(11,31,59,.04);
}

.secondary-page .filter-pills a:hover,
.secondary-page .filter-pills a.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255,106,0,.18);
}

.secondary-page .secondary-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: stretch;
}

.secondary-page .secondary-panel,
.secondary-page .rich-card,
.secondary-page .faq-card-grid article,
.secondary-page .simple-list article {
  border: 1px solid #d9e3ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11,31,59,.05);
}

.secondary-page .curated-table {
  overflow: hidden;
}

.secondary-page .curated-table .row {
  display: grid;
  grid-template-columns: 1.15fr 1.8fr 1fr 1.5fr .7fr;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid #e7edf5;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.secondary-page .curated-table .row:first-child {
  min-height: 54px;
  background: #fbfdff;
  font-size: 13px;
  font-weight: 700;
}

.secondary-page .curated-table .row:last-child {
  border-bottom: 0;
}

.secondary-page .curated-table .status {
  justify-self: start;
  padding: 5px 10px;
  border-radius: 8px;
  background: #e7f8ed;
  color: #078b42;
  font-weight: 700;
  white-space: nowrap;
}

.secondary-page .curated-table .status.info {
  background: #eaf3ff;
  color: #0969da;
}

.secondary-page .curated-table .status.warn {
  background: #fff1d6;
  color: #b77900;
}

.secondary-page .curated-table a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.secondary-page .side-panel {
  padding: 22px;
}

.secondary-page .side-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.secondary-page .highlight-list {
  display: grid;
  gap: 14px;
}

.secondary-page .highlight-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #e7edf5;
  color: var(--navy);
  text-decoration: none;
}

.secondary-page .highlight-item:last-child {
  border-bottom: 0;
}

.secondary-page .highlight-item img {
  width: 78px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fafc;
}

.secondary-page .highlight-item strong,
.secondary-page .highlight-item b {
  display: block;
}

.secondary-page .highlight-item span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.secondary-page .highlight-item strong {
  color: var(--navy);
  font-size: 14px;
}

.secondary-page .highlight-item b {
  margin-top: 3px;
  color: #078b42;
  font-size: 12px;
}

.secondary-page .category-grid.secondary-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.secondary-page .category-grid.secondary-category-grid a {
  display: flex;
  min-height: 118px;
  padding: 18px 12px 14px;
  border: 1px solid #d9e3ef;
  border-bottom: 4px solid var(--orange);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(11,31,59,.04);
}

.secondary-page .category-grid.secondary-category-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 8px;
}

.secondary-page .category-grid.secondary-category-grid b {
  font-size: 14px;
  line-height: 1.2;
}

.secondary-page .category-grid.secondary-category-grid a:hover {
  border-color: rgba(255,106,0,.55);
  border-bottom-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 18px 34px rgba(255,106,0,.13), 0 16px 34px rgba(11,31,59,.06);
  transform: translateY(-2px);
}

.secondary-page .rich-card-grid,
.secondary-page .faq-card-grid,
.secondary-page .simple-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.secondary-page .rich-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.secondary-page .rich-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.secondary-page .rich-card h3,
.secondary-page .faq-card-grid h3,
.secondary-page .simple-list h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.secondary-page .rich-card p,
.secondary-page .faq-card-grid p,
.secondary-page .simple-list p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.secondary-page .find-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.secondary-page .find-card-grid article {
  overflow: hidden;
  border: 1px solid #d9e3ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11,31,59,.05);
}

.secondary-page .find-card-grid article > img {
  width: 100%;
  height: 170px;
  padding: 18px;
  object-fit: contain;
  background: #fff;
}

.secondary-page .find-card-grid span,
.secondary-page .find-card-grid h3,
.secondary-page .find-card-grid p,
.secondary-page .find-card-grid a {
  margin-left: 18px;
  margin-right: 18px;
}

.secondary-page .find-card-grid span {
  display: block;
  margin-top: 2px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.secondary-page .find-card-grid h3 {
  margin-top: 7px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.secondary-page .find-card-grid p {
  min-height: 44px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.secondary-page .find-card-grid a {
  margin-top: 12px;
  margin-bottom: 18px;
}

.secondary-page .qc-preview-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
}

.secondary-page .qc-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.secondary-page .qc-mini-grid img {
  height: 104px;
  object-fit: cover;
}

.secondary-page .guide-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.secondary-page .guide-path article {
  position: relative;
  min-height: 178px;
  padding: 24px 20px 20px;
  border: 1px solid #d9e3ef;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 34px rgba(11,31,59,.05);
}

.secondary-page .guide-path strong {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
}

.secondary-page .guide-path img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 4px auto 14px;
}

.secondary-page .guide-path h3 {
  margin: 0 0 8px;
}

.secondary-page .note-band {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid rgba(255,106,0,.34);
  border-radius: 14px;
  background: #fffdfb;
  box-shadow: 0 16px 34px rgba(11,31,59,.04);
}

.secondary-page .note-band > img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.secondary-page .note-band h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.secondary-page .note-band p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .secondary-page .secondary-hero-grid,
  .secondary-page .secondary-grid-2 {
    grid-template-columns: 1fr;
  }

  .secondary-page .secondary-hero-grid > img {
    justify-self: start;
  }

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

  .secondary-page .find-card-grid,
  .secondary-page .rich-card-grid,
  .secondary-page .faq-card-grid,
  .secondary-page .simple-list,
  .secondary-page .guide-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .secondary-page .qc-preview-row {
    grid-template-columns: 1fr;
  }

  .secondary-page .qc-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .secondary-page .wrap,
  .secondary-page .site-width,
  .secondary-page > .wrap {
    width: min(100% - 28px, var(--secondary-max));
  }

  .secondary-page .secondary-hero-grid {
    min-height: auto;
    padding: 48px 0;
    gap: 28px;
  }

  .secondary-page .secondary-hero h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  .secondary-page .secondary-hero p {
    font-size: 16px;
  }

  .secondary-page .resource-search,
  .secondary-page .secondary-metrics,
  .secondary-page .category-grid.secondary-category-grid,
  .secondary-page .find-card-grid,
  .secondary-page .rich-card-grid,
  .secondary-page .faq-card-grid,
  .secondary-page .simple-list,
  .secondary-page .guide-path,
  .secondary-page .qc-mini-grid,
  .secondary-page .note-band {
    grid-template-columns: 1fr;
  }

  .secondary-page .curated-table .row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px 18px;
  }
}

/* Categories opens the external category menu without leaving the current page. */
.main-nav .nav-category-trigger {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 26px 16px 23px 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255,255,255,.86);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.01em;
  cursor: pointer;
}

.main-nav .nav-category-trigger:hover,
.main-nav .nav-category-trigger:focus-visible,
.main-nav .nav-category-trigger.active {
  color: #fff;
  outline: none;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.main-nav .nav-category-trigger.active {
  font-weight: 600;
}

.main-nav .nav-category-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 13px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: transparent;
}

.nav-dropdown:hover > .nav-category-trigger::after,
.nav-dropdown:focus-within > .nav-category-trigger::after,
.main-nav .nav-category-trigger.active::after {
  background: var(--orange);
}

.nav-dropdown::after {
  top: calc(100% - 1px);
  height: 14px;
}

.dropdown-menu {
  top: 100%;
  gap: 4px 12px;
  padding: 16px;
  overflow: visible;
  transform: translateX(-50%) translateY(8px);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  line-height: 1.3;
  white-space: normal;
}

/* Mobile adaptation v1 — final overrides */
.mobile-menu-toggle{display:none}
@media (max-width:1050px){
  html,body{max-width:100%;overflow-x:hidden}
  .site-header{position:sticky;top:0;z-index:1000}
  .nav{position:relative;min-height:68px;height:auto}
  .mobile-menu-toggle{display:grid;place-items:center;width:44px;height:44px;min-height:44px;padding:10px;border:1px solid rgba(255,255,255,.18);border-radius:9px;background:rgba(255,255,255,.07);box-shadow:none;cursor:pointer}
  .mobile-menu-toggle span{display:block;width:22px;height:2px;margin:2.5px 0;border-radius:99px;background:#fff;transition:transform .18s ease,opacity .18s ease}
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .main-nav{position:absolute;top:calc(100% + 1px);right:0;left:0;display:none;max-height:calc(100vh - 82px);overflow-y:auto;padding:10px;border:1px solid rgba(255,255,255,.12);border-radius:0 0 14px 14px;background:#071d3a;box-shadow:0 20px 40px rgba(5,22,45,.28)}
  .main-nav.is-open{display:flex;flex-direction:column;align-items:stretch;gap:2px}
  .main-nav>a,.main-nav .nav-category-trigger{display:flex;width:100%;min-height:46px;align-items:center;margin:0;padding:0 14px!important;border-radius:8px;color:#fff;font-size:15px}
  .main-nav>a::after,.main-nav .nav-category-trigger::after{display:none}
  .main-nav>a.active,.main-nav>a:hover,.main-nav .nav-category-trigger:hover,.main-nav .nav-category-trigger.active{background:rgba(255,106,0,.16);color:#fff}
  .nav-dropdown{width:100%}
  .nav-dropdown::after{display:none}
  .dropdown-menu{position:static;display:none;width:100%;grid-template-columns:repeat(2,minmax(0,1fr));gap:4px;margin:2px 0 8px;padding:8px;transform:none;border-radius:9px;box-shadow:none;background:#0d294d}
  .nav-dropdown.is-open .dropdown-menu{display:grid;opacity:1;visibility:visible;transform:none}
  .dropdown-menu a{min-width:0;min-height:40px;padding:8px 10px;font-size:13px;white-space:normal}
}
@media (max-width:680px){
  :root{--rhythm-section:34px;--rhythm-section-compact:28px;--rhythm-gap:14px;--rhythm-card-pad:18px}
  .wrap,.secondary-page .wrap,.secondary-page .site-width,.secondary-page>.wrap{width:calc(100% - 28px);max-width:none}
  .nav{width:calc(100% - 28px);min-height:64px}
  .brand{min-width:0;font-size:20px;white-space:nowrap}
  .brand-symbol{width:36px;height:36px}
  .hero{background-image:linear-gradient(90deg,rgba(246,248,251,.98) 0%,rgba(246,248,251,.93) 58%,rgba(246,248,251,.72) 100%),url("a53a670b-84f4-47d0-9990-571edfc9da1c.png");background-position:62% center}
  .hero-grid,.inner-hero-grid,.sub-hero-grid{min-height:auto;padding:32px 0 28px}
  .hero-copy{width:100%;max-width:100%;min-width:0}
  .hero h1,.inner-hero h1,.sub-hero h1{max-width:100%;font-size:clamp(31px,9vw,38px);line-height:1.12;overflow-wrap:anywhere}
  .headline-line{white-space:normal}
  .hero-copy>p,.hero-lead,.inner-hero p,.sub-hero-copy{max-width:100%;font-size:15px;line-height:1.55}
  .hero-pills{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:9px;margin:18px 0 14px}
  .hero-pills span{width:100%;min-width:0;height:auto;min-height:34px;padding:7px 8px;font-size:10px;white-space:normal;text-align:center}
  .hero-actions,.sub-actions,.inner-actions,.page-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:10px;margin-top:16px}
  .hero-actions .btn,.sub-actions>a,.inner-actions>a,.page-actions>a{width:100%;min-width:0;min-height:46px;padding:0 10px;text-align:center}
  .trust-row{display:grid;width:100%;max-width:none;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;margin-top:18px}
  .trust-row div{min-width:0;padding:11px 8px!important;grid-template-columns:24px minmax(0,1fr);column-gap:8px}
  .trust-row div:not(:last-child)::after{display:none}
  .trust-row b,.trust-row span{white-space:normal;overflow-wrap:anywhere}
  .trust-row b{font-size:10.5px}.trust-row span{font-size:9.5px}
  .feature-band{grid-template-columns:1fr;gap:16px;padding:28px 0}
  .feature-card{width:100%;height:154px;min-height:154px;padding:18px;border-radius:10px;background-position:center}
  .feature-card h2,.feature-card p{max-width:48%}
  .feature-card a{left:18px}
  .section,.page-section,.sub-section,.steps-section{padding-top:34px;padding-bottom:34px}
  .category-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  .why-grid,.tip-grid,.steps-row,.page-grid-3,.qc-gallery,.qc-gallery-page,.trust-grid,.sub-grid,.footer-grid{grid-template-columns:1fr!important;gap:14px}
  .qc-panel,.shipping-panel,.disclaimer,.wide-card{grid-template-columns:1fr!important;gap:20px}
  .shipping-button{width:100%;min-width:0}
  .footer{padding:34px 0 22px}.footer-grid{gap:28px}.footer p{max-width:100%}
  .secondary-page .page-hero .wrap{grid-template-columns:1fr;min-height:auto;padding:34px 0;gap:22px}
  .secondary-page .page-hero h1{font-size:32px;line-height:1.16}
  .secondary-page .page-hero-visual{min-height:0;order:-1}
  .secondary-page .page-hero-visual img{width:min(100%,360px);max-height:240px}
  .secondary-page .page-badges{display:grid;grid-template-columns:1fr;gap:8px}
  .secondary-page .filter-row{gap:8px}
  .secondary-page .filter-row a{flex:1 1 auto;min-height:40px;padding:0 12px}
  .secondary-page .product-grid,.secondary-page .finds-grid,.secondary-page .grid-3,.secondary-page .grid-4,.secondary-page .two-column,.secondary-page .overview-grid{grid-template-columns:1fr!important}
  .secondary-page .product-card,.secondary-page .card{min-width:0}
  .secondary-page .product-media{height:auto;min-height:190px}
  .secondary-page .product-media img{width:100%;height:auto;max-height:260px;object-fit:contain}
  .secondary-page .page-cta{grid-template-columns:1fr!important;text-align:center}
  .secondary-page .page-cta>a{width:100%;min-width:0}
  .secondary-page .data-panel,.secondary-page .table-card{max-width:100%;overflow-x:auto}
}
@media (max-width:390px){
  .brand{font-size:18px}.brand-symbol{width:32px;height:32px}
  .hero h1,.inner-hero h1,.sub-hero h1,.secondary-page .page-hero h1{font-size:29px}
  .hero-actions,.sub-actions,.inner-actions,.page-actions{grid-template-columns:1fr}
  .trust-row{grid-template-columns:1fr}
  .trust-row div{padding:8px 4px!important}
  .dropdown-menu{grid-template-columns:1fr}
}

/* Mobile interaction target refinements */
@media (max-width: 680px) {
  .feature-card a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
  .footer-grid > div:not(:first-child) > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
  .dropdown-menu a { min-height: 44px; }
  .secondary-page .filter-row button {
    flex: 1 1 auto;
    min-height: 44px;
    padding: 0 12px;
  }
}
/* Responsive home hero artwork and section transition */
.home-page .hero {
  --hero-art-right: max(24px, calc((100vw - var(--site-max)) / 2 - 24px));
  --hero-content-left: max(24px, calc((100vw - var(--site-max)) / 2));
  position: relative;
  isolation: isolate;
  background: #f6f8fb;
  box-shadow: none;
}
.home-page .hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
  right: var(--hero-art-right);
  top: 12px;
  bottom: auto;
  /* Fit the complete composition inside the hero, including the clock tower.
     A viewport-driven width previously made the image taller than its container. */
  height: calc(100% - 24px);
  max-height: 480px;
  width: auto;
  aspect-ratio: 1916 / 821;
  background: url("a53a670b-84f4-47d0-9990-571edfc9da1c.png") center / contain no-repeat;
  /* Feather only the perimeter; do not wash out the flag or main subjects. */
  -webkit-mask-image:
    linear-gradient(90deg, transparent, #000 12%, #000 calc(100% - 24px), transparent),
    linear-gradient(0deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
  mask-image:
    linear-gradient(90deg, transparent, #000 12%, #000 calc(100% - 24px), transparent),
    linear-gradient(0deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, #f6f8fb,
    rgba(246,248,251,.98) calc(var(--hero-content-left) + 340px),
    rgba(246,248,251,.85) calc(var(--hero-content-left) + 500px),
    rgba(246,248,251,0) calc(var(--hero-content-left) + 750px));
}

/* The modest desktop height cap keeps the full image visible without a tall banner. */
.home-page .hero .hero-grid {
  min-height: clamp(440px, 30vw, 500px);
}

.feature-band {
  position: relative;
  z-index: 2;
  padding-top: clamp(30px, 2.2vw, 42px);
}

@media (max-width: 680px) {
  .home-page .hero .hero-grid { min-height: 0; }
  .feature-band { padding-top: 28px; }
}

/* UK discovery layout: wide grids, readable cards, bounded media. */
.home-page .feature-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-top: 32px;
  padding-bottom: 24px;
}

.home-page .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  height: auto;
  min-height: 200px;
  padding: 20px;
  isolation: isolate;
  border-radius: 12px;
  background-position: right center;
}

.home-page .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(6,23,46,.78) 0%, rgba(6,23,46,.64) 62%, rgba(6,23,46,.08) 100%);
  pointer-events: none;
}

.home-page .feature-card.hot::before {
  background: linear-gradient(90deg, rgba(76,28,0,.76) 0%, rgba(76,28,0,.64) 62%, rgba(76,28,0,.06) 100%);
}

.home-page .feature-card h2 {
  max-width: 100%;
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.home-page .feature-card p {
  max-width: min(190px, 74%);
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.home-page .feature-card a {
  position: static;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 44px;
  margin: auto 0 0;
  padding: 9px 14px;
  border-color: rgba(255,255,255,.8);
  background: rgba(6,23,46,.5);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.home-page .feature-card a:hover {
  border-color: #fff;
  background: #fff;
  color: #0b1f3b;
}

.home-page .feature-card a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.home-page #categories.section {
  padding-top: 24px;
  padding-bottom: 48px;
}

.home-page .category-grid {
  gap: 20px;
}

.home-page .category-grid a {
  min-width: 0;
  min-height: 128px;
  padding: 18px 12px;
  gap: 10px;
}

.home-page .category-grid b {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .home-page .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .home-page .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-page .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-page .category-grid a {
    min-height: 120px;
    padding: 16px 10px;
  }

  .home-page #categories.section {
    padding-top: 16px;
    padding-bottom: 34px;
  }
}

@media (max-width: 600px) {
  .home-page .feature-band {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding-top: 24px;
  }
}
