:root {
  --page-bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f7f8fa;
  --line: #e4e7eb;
  --line-strong: #d0d5dd;
  --text: #202939;
  --muted: #667085;
  --brand: #0d77b8;
  --brand-dark: #055c93;
  --accent: #0d7a33;
  --accent-dark: #086128;
  --topbar: #0a5e2a;
  --hero-dark: #41443b;
  --container: 1180px;
  --shadow-soft: 0 10px 30px rgba(16, 24, 40, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background: var(--page-bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

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

.site-topbar {
  background: var(--topbar);
  color: #fff;
  font-size: 12px;
}

.topbar-shell,
.topbar-links,
.header-main,
.category-bar,
.hero-grid,
.catalog-layout,
.product-layout,
.about-process,
.contact-columns,
.footer-shell,
.footer-links,
.trust-logos,
.faq-layout {
  display: flex;
}

.topbar-shell {
  min-height: 32px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-links { gap: 18px; align-items: center; }

.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.header-utility-bar {
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.header-utility-shell {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.header-main {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 12px;
}

.site-header {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
}

.brand-logo {
  width: 148px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.brand-logo + span {
  display: none;
}

.brand strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #17a1eb);
}

.header-search {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 520px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.04);
}

.header-search input {
  flex: 1;
  border: 0;
  padding: 12px 14px;
  min-width: 0;
}

.header-search button {
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
}

.account-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  white-space: nowrap;
}

.account-links a { color: var(--muted); }

.account-links a:hover,
.category-bar a:hover {
  color: var(--brand);
}

.category-bar {
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
}

.category-bar::-webkit-scrollbar {
  height: 6px;
}

.category-bar::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
}

.category-bar a {
  color: var(--text);
  white-space: nowrap;
}

.page { padding-bottom: 72px; }
.section { padding-top: 32px; }

.hero-grid {
  gap: 24px;
  padding-top: 18px;
}

.page {
  background:
    radial-gradient(circle at top right, rgba(13,119,184,0.06), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 18%);
}

.home-hero-v2 {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(56, 127, 201, 0.28), transparent 18%),
    radial-gradient(circle at 76% 55%, rgba(255,255,255,0.10), transparent 22%),
    linear-gradient(90deg, #002d59 0%, #0a4377 100%);
}

.home-hero-v2__media {
  position: absolute;
  inset: 0;
}

.home-hero-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
}

.home-hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,38,74,0.96) 0%, rgba(0,52,101,0.84) 42%, rgba(0,52,101,0.36) 72%, rgba(0,52,101,0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.home-hero-v2__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 72px;
  padding-bottom: 86px;
  max-width: 640px;
}

.home-hero-v2__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
}

.home-hero-v2__aside {
  display: grid;
  gap: 14px;
  padding-bottom: 24px;
}

.home-hero-product {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 48px rgba(0, 22, 45, 0.18);
  backdrop-filter: blur(14px);
}

.home-hero-product a {
  display: grid;
  grid-template-columns: 1fr 112px;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 18px 20px;
}

.home-hero-product__copy .eyebrow {
  color: var(--brand);
}

.home-hero-product__copy h3 {
  margin-top: 8px;
  color: var(--brand-dark);
  font-size: 26px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-hero-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.home-hero-v2__content .eyebrow,
.home-hero-v2__content p {
  color: rgba(255,255,255,0.82);
}

.home-hero-v2__content .eyebrow {
  margin-bottom: 16px;
}

.home-hero-v2__content h1 {
  color: #fff;
  font-size: clamp(52px, 6.3vw, 88px);
  line-height: 0.88;
  max-width: 7.2ch;
  text-wrap: balance;
  letter-spacing: -0.04em;
}

.home-hero-v2__content p {
  max-width: 52ch;
  font-size: 18px;
  margin-top: 22px;
}

.home-hero-v2__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
}

.home-hero-v2__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.home-hero-v2__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-hero-v2__rail a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.home-hero-v2__content .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.home-proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.home-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-proof-card {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 50px rgba(14, 30, 37, 0.08);
  backdrop-filter: blur(10px);
}

.home-proof-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--brand-dark);
}

.home-proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.home-categories-band {
  padding-top: 42px;
  padding-bottom: 18px;
}

.home-categories-band__header {
  align-items: end;
}

.home-category-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.home-category-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #e5edf5;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(18, 38, 63, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-category-links a span {
  color: var(--brand);
  font-weight: 800;
}

.home-category-links a:hover {
  transform: translateY(-2px);
  border-color: #bfd5ea;
  box-shadow: 0 20px 44px rgba(18, 38, 63, 0.08);
}

.home-category-card-grid,
.catalog-group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.home-category-card,
.catalog-group-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.05);
  overflow: hidden;
}

.home-category-card a,
.catalog-group-card a {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
}

.home-category-card h3,
.catalog-group-card h3 {
  margin: 0;
}

.home-category-card p,
.catalog-group-card p {
  margin: 0;
}

.home-category-card__cta,
.catalog-group-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.catalog-group-grid {
  margin: 0 0 22px;
}

.catalog-group-card--active {
  border-color: #b9d7ea;
  background: linear-gradient(180deg, #eef7fd 0%, #ffffff 100%);
}

.catalog-family-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  margin: 0 0 24px;
}

.catalog-family-strip__intro,
.catalog-family-picks {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.05);
}

.catalog-family-strip__intro {
  padding: 24px;
}

.catalog-family-strip__intro h2 {
  margin-bottom: 10px;
}

.catalog-family-strip__intro p {
  margin: 0;
}

.catalog-family-metrics {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.catalog-family-metrics div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.catalog-family-metrics span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.catalog-family-guide {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.catalog-family-guide li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.catalog-family-guide li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.catalog-family-picks {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.catalog-family-pick + .catalog-family-pick {
  border-top: 1px solid var(--line);
}

.catalog-family-pick a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.catalog-family-pick img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.catalog-family-pick h3 {
  margin: 4px 0 6px;
}

.catalog-family-pick p,
.catalog-tile-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-tile-copy {
  margin-top: 6px;
  font-size: 12px;
}

.catalog-family-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, #062a4f 0%, #0c467a 100%);
  box-shadow: 0 20px 54px rgba(10, 33, 60, 0.16);
}

.catalog-family-cta__copy {
  max-width: 60ch;
}

.catalog-family-cta__copy .eyebrow,
.catalog-family-cta__copy h2,
.catalog-family-cta__copy p {
  color: #fff;
}

.catalog-family-cta__copy h2 {
  margin-bottom: 10px;
}

.catalog-family-cta__copy p {
  margin: 0;
  opacity: 0.86;
}

.catalog-family-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-family-cta__actions .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

.catalog-sku-strip {
  margin: 0 0 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.05);
}

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

.catalog-sku-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.catalog-sku-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
  border-color: #bad5e8;
}

.catalog-sku-card a {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: inherit;
}

.catalog-sku-card__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.catalog-sku-card__size,
.catalog-sku-card__color {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-sku-card__size {
  color: var(--muted);
}

.catalog-sku-card__color {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f2f7fb;
  color: #19486f;
}

.catalog-sku-card--kraft .catalog-sku-card__color {
  background: #f4ebde;
  color: #7a4b17;
}

.catalog-sku-card h3 {
  margin: 0;
  font-size: 17px;
}

.catalog-sku-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-workflow-band {
  padding-top: 10px;
}

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

.home-workflow-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.05);
}

.home-workflow-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #eef6fb;
  color: var(--brand);
  font-size: 16px;
  font-weight: 800;
}

.home-workflow-card h3 {
  margin-bottom: 8px;
}

.home-workflow-card p {
  margin: 0;
}

.home-main-v2 {
  padding-top: 8px;
}

.home-main-v2 > .container {
  display: block;
}

.home-product-band {
  background: transparent;
}

.home-seller-grid,
.home-feature-grid,
.home-stories-grid,
.home-family-story-grid {
  display: grid;
  gap: 18px;
}

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

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

.home-spotlight-band {
  padding-top: 12px;
}

.home-spotlight-band--secondary {
  padding-top: 0;
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.home-showcase-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #062a4f 0%, #0e497e 100%);
  box-shadow: 0 22px 60px rgba(10, 33, 60, 0.18);
}

.home-showcase-card a {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  min-height: 340px;
}

.home-showcase-card__copy {
  padding: 30px 28px;
  color: #fff;
}

.home-showcase-card__copy .eyebrow,
.home-showcase-card__copy h3,
.home-showcase-card__copy p,
.home-showcase-card__cta {
  color: #fff;
}

.home-showcase-card__copy h3 {
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.home-showcase-card__copy p {
  max-width: 34ch;
  opacity: 0.84;
}

.home-showcase-card__cta {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 700;
}

.home-showcase-card__media {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
}

.home-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

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

.home-spotlight-card {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
  box-shadow: 0 18px 48px rgba(18, 38, 63, 0.08);
}

.home-spotlight-card:first-child {
  grid-column: span 2;
}

.home-spotlight-card a {
  display: grid;
  grid-template-rows: auto 220px;
  min-height: 100%;
}

.home-spotlight-card:first-child a {
  grid-template-columns: minmax(280px, 0.92fr) minmax(260px, 1.08fr);
  grid-template-rows: none;
  min-height: 320px;
}

.home-spotlight-card__copy {
  padding: 26px 26px 18px;
}

.home-spotlight-card__copy h3 {
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.home-spotlight-card__copy p {
  color: var(--muted);
  min-height: 66px;
}

.home-spotlight-card__cta {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  color: var(--brand);
}

.home-spotlight-card__media {
  background:
    radial-gradient(circle at 25% 18%, rgba(0, 112, 201, 0.08), transparent 25%),
    linear-gradient(180deg, #eef4f9 0%, #dfeaf3 100%);
}

.home-spotlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.home-spotlight-card:first-child .home-spotlight-card__media img {
  padding: 26px;
}

.home-editorial-band {
  padding-top: 30px;
}

.home-editorial-band__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
  padding: 30px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
}

.home-editorial-copy {
  padding: 26px 10px 0 0;
}

.home-editorial-copy p {
  max-width: 56ch;
  color: var(--muted);
}

.home-editorial-story-band {
  padding-top: 22px;
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
}

.editorial-panel {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e6edf4;
  box-shadow: 0 18px 48px rgba(18, 38, 63, 0.06);
}

.editorial-panel--dark {
  background: linear-gradient(135deg, #183247 0%, #244763 100%);
  color: #fff;
  border-color: #1e425d;
}

.editorial-panel--dark h2,
.editorial-panel--dark p,
.editorial-panel--dark .eyebrow,
.editorial-panel--dark li {
  color: rgba(255,255,255,0.9);
}

.editorial-panel h2 {
  margin-top: 10px;
}

.editorial-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 18px;
}

.editorial-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.editorial-trust-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.editorial-trust-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.editorial-trust-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

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

.editorial-mini-grid div {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
}

.editorial-mini-grid strong,
.editorial-mini-grid span {
  display: block;
}

.editorial-mini-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.home-seller-card,
.home-feature-card,
.home-story-card {
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 28, 28, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-seller-card a,
.home-feature-card a {
  display: block;
  position: relative;
}

.home-seller-card--large a {
  padding-bottom: 18px;
}

.home-seller-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f7f9fc;
  padding: 20px;
}

.home-seller-card--large img {
  aspect-ratio: 1.1 / 1;
  background: linear-gradient(180deg, #f7f9fc 0%, #edf3f8 100%);
}

.home-feature-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  background: #f3f6fa;
}

.home-seller-card h3,
.home-feature-card h3 {
  padding: 12px 16px 18px;
  font-size: 15px;
  text-align: left;
}

.home-seller-card--large p {
  margin: 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-feature-card h3 {
  font-size: 17px;
}

.home-card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-seller-card:hover,
.home-feature-card:hover,
.home-story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(27, 28, 28, 0.09);
}

.home-quality-band {
  margin-top: 42px;
  padding: 84px 0;
  background: linear-gradient(135deg, #003465 0%, #0c467d 100%);
  color: #fff;
}

.home-quality-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
}

.home-quality-copy h2,
.home-quality-copy p,
.home-quality-copy strong,
.home-quality-copy span {
  color: #fff;
}

.home-quality-copy p {
  max-width: 58ch;
}

.home-quality-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.home-quality-list article {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
}

.home-quality-list strong {
  display: block;
  margin-bottom: 6px;
}

.home-quality-list span {
  color: rgba(255,255,255,0.78);
}

.home-quality-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 44px rgba(6, 21, 38, 0.24);
}

.home-process-band {
  padding-top: 68px;
}

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

.home-process-card {
  padding: 26px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e6edf3;
  box-shadow: 0 14px 40px rgba(18, 38, 63, 0.05);
}

.home-process-card__index {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0d4a81;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.home-process-card h3 {
  margin-top: 16px;
  margin-bottom: 10px;
  font-size: 22px;
}

.home-process-card p {
  color: var(--muted);
  margin: 0;
}

.home-stories-band {
  padding-top: 68px;
}

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

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

.home-family-story-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.06);
}

.home-family-story-card h2 {
  margin-bottom: 12px;
}

.home-family-story-card p {
  margin: 0;
}

.home-family-story-list {
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.home-family-story-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.home-family-story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.home-story-card {
  padding: 26px;
  background: #fbfbfc;
}

.home-story-card p {
  margin-top: 0;
}

.home-story-card strong {
  display: inline-block;
  margin-top: 10px;
}

.home-newsletter-band {
  margin-top: 44px;
  padding: 68px 0 76px;
  background: linear-gradient(180deg, #f2f4f7 0%, #eceef2 100%);
}

.home-newsletter-band__inner {
  text-align: center;
  max-width: 760px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  padding: 34px 34px 38px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(20, 40, 65, 0.08);
}

.home-newsletter-band__inner p {
  max-width: 62ch;
  margin: 10px auto 20px;
}

.home-newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.home-newsletter-form input {
  width: min(420px, 100%);
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.home-newsletter-form button {
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
}

.home-cta-band {
  padding: 0 0 76px;
  background: linear-gradient(180deg, #eceef2 0%, #ffffff 100%);
}

.home-cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 40px 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, #022e59 0%, #0d4d84 100%);
  box-shadow: 0 20px 60px rgba(15, 45, 78, 0.18);
}

.home-cta-band__inner h2,
.home-cta-band__inner .eyebrow {
  color: #fff;
}

.home-cta-band__inner .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

.hero-sidebar {
  width: 240px;
  flex: 0 0 240px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(14, 30, 37, 0.03);
}

.hero-sidebar h2,
.section-header h2,
.trust-panel h2,
.faq-sidebar h2 {
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.04em;
}

.sidebar-heading,
.hero-content-card,
.section-card,
.trust-panel,
.support-card,
.faq-sidebar,
.faq-content,
.contact-card,
.contact-form-shell,
.product-summary,
.spec-card,
.about-card,
.about-timeline,
.plain-page {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.sidebar-heading,
.section-header,
.contact-hero,
.faq-hero,
.about-hero-copy,
.plain-page {
  padding: 24px;
}

.category-list {
  margin: 0;
  padding: 0 0 8px;
  list-style: none;
}

.category-list li + li { border-top: 1px solid var(--line); }
.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
}

.hero-main { flex: 1; min-width: 0; }

.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
}

h2 { font-size: 32px; line-height: 1.05; font-family: "Work Sans", sans-serif; font-weight: 800; }
h3 { margin: 0; font-size: 20px; line-height: 1.2; font-family: "Work Sans", sans-serif; font-weight: 800; }
p {
  color: var(--muted);
  line-height: 1.7;
}

.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.button,
.button-secondary,
.quote-button,
.contact-form-shell button,
.product-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-weight: 700;
}

.button,
.contact-form-shell button,
.product-upload {
  background: var(--accent);
  color: #fff;
}

.button-secondary,
.quote-button {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line-strong);
}

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

.product-grid,
.catalog-tile-grid,
.mini-grid,
.support-steps,
.about-checks,
.contact-info-grid,
.faq-cards {
  display: grid;
  gap: 18px;
}

.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.catalog-tile-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px 16px; }
.mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.support-steps,
.faq-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.product-card,
.mini-card,
.support-card,
.faq-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(14, 30, 37, 0.04);
}

.catalog-tile {
  text-align: center;
  padding: 6px 0 14px;
}

.catalog-tile a {
  display: block;
  color: inherit;
}

.catalog-tile-thumb {
  width: min(100%, 126px);
  margin: 0 auto;
  aspect-ratio: 1.05 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  filter: none;
  border-radius: 6px;
}

.catalog-tile h3 {
  margin: 10px 0 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #344054;
}

.catalog-sku,
.product-sku {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #8a97a3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-sku {
  opacity: 0.65;
}

.catalog-tile-grid--home {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 8px;
}

.storefront-catalog {
  padding-top: 26px;
}

.product-sku {
  margin: 8px 0 4px;
}

.product-thumb,
.mini-card img,
.about-hero-media img,
.about-card img,
.product-photo-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-alt);
}

.product-thumb--placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.92) 12%, rgba(255,255,255,0.06) 12.5%),
    linear-gradient(135deg, #0d77b8 0%, #17a1eb 48%, #d9edf7 48.5%, #f7f9fb 100%);
  color: #fff;
}

.product-thumb--placeholder span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.product-thumb--placeholder strong {
  font-size: 22px;
  line-height: 1.05;
  max-width: 170px;
}

.product-card-body,
.mini-card-body,
.support-card,
.faq-card,
.contact-card {
  padding: 16px;
}

.product-card-body {
  min-height: 150px;
}

.product-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #c9d9e5;
  box-shadow: 0 16px 34px rgba(14, 30, 37, 0.08);
}

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

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.mini-card-body span,
.product-card-body span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-panel {
  padding: 24px;
  background: linear-gradient(180deg, #f7faf7 0%, #fff 100%);
}

.home-editorial-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.editorial-panel {
  padding: 24px;
}

.editorial-panel--dark {
  background: linear-gradient(135deg, #183247 0%, #244763 100%);
  color: #fff;
  border-color: #1e425d;
}

.editorial-panel--dark p,
.editorial-panel--dark .eyebrow,
.editorial-panel--dark li {
  color: rgba(255,255,255,0.82);
}

.editorial-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.mini-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.mini-feature-item {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.mini-feature-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.mini-feature-item span {
  color: var(--muted);
  line-height: 1.6;
}

.process-band {
  padding-top: 20px;
}

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

.process-card {
  padding: 22px;
}

.process-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #eef6fb;
  color: var(--brand);
  font-size: 16px;
  font-weight: 800;
}

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

.quick-quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  margin-top: 10px;
  background: linear-gradient(180deg, #f9fcff 0%, #fff 100%);
}

.trust-logos {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust-logos span {
  min-width: 110px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  color: var(--muted);
  background: #fff;
  font-weight: 700;
}

.catalog-layout,
.product-layout,
.contact-columns,
.faq-layout {
  align-items: start;
  gap: 24px;
}

.contact-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef6fb;
  border: 1px solid #d4e6f2;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
}

.contact-b2b-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.contact-b2b-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}

.contact-b2b-card h3 {
  margin-bottom: 10px;
}

.contact-b2b-card p {
  margin: 0;
  color: var(--muted);
}

.contact-process-mini {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-process-mini article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.contact-process-mini strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef6fb;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.contact-process-mini h3 {
  margin: 12px 0 8px;
}

.contact-process-mini p {
  margin: 0;
  color: var(--muted);
}

.catalog-sidebar,
.faq-sidebar {
  width: 280px;
  flex: 0 0 280px;
}

.catalog-sidebar--dense {
  display: grid;
  gap: 14px;
}

.catalog-sidebar-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.catalog-sidebar-card h2 {
  margin-bottom: 10px;
}

.catalog-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.catalog-nav-list li + li {
  border-top: 1px solid var(--line);
}

.catalog-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
}

.catalog-content,
.faq-content {
  flex: 1;
  min-width: 0;
}

.catalog-headline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 14px;
}

.catalog-title {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 0.96;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px;
}

.mini-chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
  background: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
}

.white-bag-page {
  max-width: 1180px;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-breadcrumbs strong {
  color: var(--brand);
}

.product-builder-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.product-builder-shell:not(.product-builder-shell--white-ref) {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.product-builder-shell--white-ref {
  padding: 20px;
  border-radius: 6px;
  box-shadow: none;
}

.product-gallery {
  min-width: 0;
}

.product-gallery:not(.product-gallery--white-ref) {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-gallery--white-ref {
  min-width: 0;
}

.product-photo-main {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.05);
}

.product-gallery--white-ref .product-photo-main {
  border-radius: 2px;
}

.product-photo-main img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 88px));
  gap: 12px;
  margin-top: 16px;
}

.product-gallery--white-ref .product-thumbs {
  grid-template-columns: repeat(3, minmax(0, 78px));
  justify-content: start;
}

.product-thumbs span {
  display: block;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-feature-bullets {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.product-feature-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text);
}

.product-feature-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.product-gallery-note {
  margin-top: 20px;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6fb 100%);
  border: 1px solid #d8e7f2;
}

.product-gallery--white-ref .product-gallery-note {
  padding: 14px 16px;
  border-radius: 4px;
  background: #f5f9fc;
}

.product-gallery-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.product-gallery-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-gallery-sidecard {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-gallery-sidecard h3 {
  margin-bottom: 14px;
}

.product-gallery-meta {
  display: grid;
  gap: 0;
}

.product-gallery-meta div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.product-gallery-meta div:first-child {
  border-top: 0;
  padding-top: 0;
}

.product-gallery-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-gallery-meta strong {
  max-width: 56%;
  text-align: right;
  font-size: 13px;
  line-height: 1.5;
}

.product-gallery-sidecard .template-badges {
  margin-top: 14px;
}

.product-program-strip {
  padding-top: 18px;
}

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

.product-program-grid--1 {
  grid-template-columns: minmax(0, 1fr);
}

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

.product-program-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}

.product-program-grid--secondary {
  margin-top: 18px;
}

.product-program-card--secondary {
  background: #fff;
}

.product-program-card h3 {
  margin-bottom: 10px;
}

.product-program-card p {
  margin: 0;
}

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

.product-program-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.product-program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.product-summary {
  min-width: 0;
  padding: 28px;
}

.product-summary--white-ref {
  padding: 10px 0 0 26px;
  border-left: 1px solid var(--line);
}

.product-summary--white-ref h1 {
  font-size: 38px;
  line-height: 0.95;
}

.product-summary--white-ref > p {
  margin: 10px 0 16px;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.65;
}

.product-rating-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.product-rating-inline strong {
  color: var(--text);
  font-size: 18px;
}

.product-rating-inline a {
  color: var(--brand);
  font-weight: 700;
}

.product-summary .price {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  font-size: 34px;
  color: var(--accent);
  font-weight: 800;
}

.product-summary:not(.product-summary--white-ref) {
  display: grid;
  gap: 14px;
  align-content: start;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
}

.product-summary:not(.product-summary--white-ref) h1 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 0.94;
}

.product-summary:not(.product-summary--white-ref) > p {
  margin: 0;
  max-width: 58ch;
}

.product-summary--white-ref .price {
  margin: 0 0 14px;
  font-size: 36px;
}

.product-order-now-label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.product-summary .price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.product-summary--white-ref .product-highlights {
  margin: 0 0 16px;
  gap: 7px;
}

.product-summary--white-ref .product-highlights li {
  font-size: 13px;
}

.product-highlights li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.product-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.product-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.product-summary--white-ref .product-meta-strip {
  margin-top: 16px;
  gap: 10px;
}

.product-meta-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.product-summary--white-ref .product-meta-strip div {
  padding: 12px;
  border-radius: 3px;
  background: #f7f7f7;
}

.product-meta-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-meta-strip strong {
  display: block;
  line-height: 1.5;
}

.product-builder-embed {
  margin-top: 24px;
}

.product-summary:not(.product-summary--white-ref) .product-highlights {
  margin-top: 2px;
}

.product-summary:not(.product-summary--white-ref) .button-row {
  margin-top: 4px;
}

.product-summary:not(.product-summary--white-ref) .product-builder-embed {
  margin-top: 6px;
}

.product-summary:not(.product-summary--white-ref) .spec-card {
  margin-top: 0;
}

.product-summary--white-ref .product-builder-embed {
  margin-top: 18px;
}

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

.option-grid label,
.contact-form-grid label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.option-grid select,
.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
}

.contact-form-grid textarea { min-height: 160px; resize: vertical; }

.spec-card,
.review-card,
.about-timeline {
  margin-top: 24px;
  padding: 24px;
}

.product-summary--white-ref .spec-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 3px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.rich-content,
.about-copy {
  color: var(--muted);
  line-height: 1.75;
}

.product-tab-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.product-tab-strip span,
.template-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.white-bag-page + .container .product-tab-strip span,
.product-tab-strip span {
  border-radius: 2px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 24px;
  margin-bottom: 24px;
}

.product-detail-layout--white-ref {
  grid-template-columns: minmax(0, 1.6fr) minmax(250px, 0.6fr);
}

.product-detail-layout--white-ref .plain-page,
.product-detail-layout--white-ref .spec-card {
  border-radius: 3px;
}

.product-side-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}

.product-copy-section + .product-copy-section {
  margin-top: 22px;
}

.product-copy-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.template-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.related-strip-header {
  margin-bottom: 10px;
}

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

.product-template-panel {
  margin-bottom: 24px;
}

.template-download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.template-download-card {
  min-height: 92px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.product-template-panel {
  border-radius: 3px;
}

.template-download-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf5ed;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.rich-content h2,
.about-copy h2 {
  font-size: 28px;
  color: var(--text);
  margin: 28px 0 10px;
}

.rich-content h3,
.about-copy h3 {
  margin: 22px 0 10px;
}

.review-card {
  background: #fafafa;
}

.review-card--white-ref {
  margin-bottom: 24px;
  background: #f7f7f4;
  border-radius: 3px;
}

.review-summary--white-ref {
  display: grid;
  grid-template-columns: 110px minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.review-overall-copy p strong {
  color: var(--text);
  font-size: 28px;
  margin-right: 6px;
}

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

.review-mini-list article {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.review-overall-copy h3 {
  margin-top: 0;
}

.related-strip-header p {
  margin: 6px 0 0;
  max-width: 62ch;
}

.catalog-tile-grid--related .catalog-tile {
  text-align: left;
}

.catalog-tile-grid--related .catalog-tile-thumb {
  width: 100%;
  max-width: none;
  aspect-ratio: 1.12 / 1;
  margin: 0 0 10px;
  object-fit: cover;
  filter: none;
  border-radius: 3px;
  background: #f7f7f7;
}

.catalog-tile-grid--related h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.review-mini-list article:last-child {
  border-bottom: 0;
}

.review-mini-list strong,
.review-mini-list span {
  display: block;
}

.review-mini-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.review-mini-list p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.review-summary {
  display: flex;
  gap: 28px;
  align-items: center;
}

.score-box {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.about-hero,
.contact-hero,
.faq-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.about-hero-copy {
  background: var(--hero-dark);
  color: #fff;
}

.about-hero-copy p,
.about-hero-copy h1 {
  color: #fff;
}

.about-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.about-hero-media img,
.contact-hero img,
.faq-hero img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.about-process {
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}

.about-process-media {
  width: 320px;
  flex: 0 0 320px;
  display: grid;
  gap: 16px;
}

.about-card { overflow: hidden; }
.about-card img { aspect-ratio: 16 / 10; }

.about-process-copy {
  flex: 1;
  min-width: 0;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.process-list strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5fb;
  color: var(--brand);
}

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

.timeline-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fcfcfd;
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 800;
  color: var(--brand);
}

.contact-columns > * { flex: 1; min-width: 0; }

.contact-card h3,
.faq-card h3,
.timeline-item h3 {
  margin-bottom: 8px;
}

.contact-form-shell {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.contact-form-shell > p {
  color: var(--muted);
  line-height: 1.75;
}

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

.contact-form-plugin-shell p {
  margin: 0 0 14px;
}

.contact-form-plugin-shell label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form-plugin-shell .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.contact-form-plugin-shell input,
.contact-form-plugin-shell textarea,
.contact-form-plugin-shell select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form-plugin-shell textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-plugin-shell input[type="submit"] {
  width: auto;
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(17, 130, 59, 0.18);
}

.contact-form-plugin-shell .wpcf7-spinner {
  display: inline-flex;
  vertical-align: middle;
}

.contact-form-grid .full { grid-column: 1 / -1; }

.faq-layout {
  margin-top: 28px;
}

.faq-menu {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.faq-menu li + li { margin-top: 10px; }
.faq-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

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

.faq-item + .faq-item { margin-top: 16px; }

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.plain-page {
  margin-top: 28px;
}

.footer {
  padding: 44px 0 64px;
  border-top: 1px solid #1f2937;
  background: #222327;
  color: #f4f4f5;
}

.footer-trust {
  padding-bottom: 28px;
}

.footer-trust h2 {
  color: #fff;
  margin-bottom: 0;
}

.footer-shell {
  justify-content: space-between;
  align-items: start;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
}

.footer-branding { max-width: 360px; }

.footer .brand {
  color: #fff;
}

.footer .brand small,
.footer-meta,
.footer-links a,
.footer-links h3,
.footer .trust-logos span {
  color: rgba(255,255,255,0.72);
}

.footer .trust-logos span {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.footer-links {
  gap: 48px;
}

.footer-links > div {
  display: grid;
  gap: 10px;
  min-width: 140px;
}

.footer-links h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-meta { margin-top: 14px; }

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .product-grid,
  .catalog-tile-grid,
  .support-steps,
  .faq-cards,
  .catalog-family-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid,
  .catalog-layout,
  .product-layout,
  .about-process,
  .contact-columns,
  .faq-layout,
  .about-hero,
  .contact-hero,
  .faq-hero {
    display: block;
  }
  .hero-sidebar,
  .catalog-sidebar,
  .faq-sidebar,
  .about-process-media {
    width: auto;
    flex: none;
    margin-bottom: 24px;
  }
  .home-main-v2__grid,
  .home-seller-grid,
  .home-feature-grid,
  .home-proof-strip__grid,
  .home-category-links,
  .home-category-card-grid,
  .contact-b2b-strip,
  .catalog-group-grid,
  .catalog-sku-grid,
  .home-workflow-grid,
  .home-showcase-grid,
  .home-spotlight-grid,
  .home-editorial-band__grid,
  .home-editorial-grid,
  .home-family-story-grid,
  .home-process-grid,
  .home-quality-band__grid,
  .home-stories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-hero-v2__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-main-v2__grid,
  .home-seller-grid,
  .home-feature-grid,
  .home-proof-strip__grid,
  .home-category-links,
  .home-category-card-grid,
  .catalog-group-grid,
  .catalog-sku-grid,
  .home-workflow-grid,
  .home-showcase-grid,
  .home-spotlight-grid,
  .home-editorial-band__grid,
  .home-editorial-grid,
  .home-family-story-grid,
  .home-process-grid,
  .home-quality-band__grid,
  .home-stories-grid,
  .home-newsletter-form {
    grid-template-columns: 1fr;
    display: grid;
  }
  .home-cta-band__inner {
    display: grid;
    justify-content: stretch;
  }
  .home-hero-v2__aside {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }
  .home-hero-v2 {
    min-height: 420px;
  }
    .catalog-family-pick a {
      grid-template-columns: 72px minmax(0, 1fr);
    }
    .catalog-sku-strip {
      padding: 22px;
    }
  }

@media (max-width: 760px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .topbar-shell,
  .header-main,
  .footer-shell,
  .footer-links {
    display: block;
  }
  .brand {
    width: 100%;
    justify-content: flex-start;
  }
  .brand-logo {
    width: 42px;
    height: 42px;
  }
  .brand span strong {
    font-size: 28px;
    line-height: 1;
  }
  .brand span small {
    display: block;
    margin-top: 2px;
  }
  .topbar-links,
  .account-links {
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .header-search {
    margin: 14px 0;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .header-search input {
    min-height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: #fff;
  }
  .header-search button {
    width: 100%;
    min-height: 46px;
    border-radius: var(--radius-sm);
  }
  .account-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .account-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
  }
  .category-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 0 14px;
  }
  .category-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font-size: 13px;
    line-height: 1.2;
  }
  .product-grid,
  .catalog-tile-grid,
  .catalog-tile-grid--related,
  .catalog-family-strip,
  .mini-grid,
  .support-steps,
  .contact-info-grid,
  .faq-cards,
  .product-thumbs,
  .product-meta-strip,
  .contact-b2b-strip,
  .about-timeline,
  .contact-form-grid,
  .option-grid {
      grid-template-columns: 1fr;
    }
  .catalog-family-cta {
    display: grid;
    justify-content: stretch;
  }
  .catalog-layout {
    display: flex;
    flex-direction: column;
  }
  .catalog-content {
    order: 1;
  }
  .catalog-sidebar {
    order: 2;
    margin-top: 18px;
  }
  .catalog-sidebar-card {
    display: none;
  }
  .catalog-nav-list {
    border-radius: 16px;
  }
  .catalog-nav-list a {
    padding: 14px 16px;
    font-size: 15px;
  }
  .home-category-links a,
  .home-category-card a,
  .catalog-group-card a,
  .catalog-family-strip__intro,
  .catalog-family-pick a,
  .catalog-family-cta {
    padding: 18px;
  }
  .catalog-group-grid {
    gap: 12px;
  }
  .catalog-group-card a {
    gap: 8px;
  }
  .catalog-headline p,
  .catalog-family-strip__intro p,
  .catalog-family-pick p,
  .catalog-tile-copy {
    font-size: 14px;
    line-height: 1.55;
  }
  .catalog-family-pick a {
    grid-template-columns: 1fr;
  }
    .catalog-family-pick img {
      width: 84px;
    }
    .catalog-sku-strip {
      padding: 18px;
    }
    .catalog-sku-card a {
      padding: 16px;
    }
    .product-gallery-meta div {
      display: grid;
      gap: 6px;
  }
  .product-gallery-meta strong {
    max-width: none;
    text-align: left;
  }
  .product-program-card,
  .home-workflow-card {
    padding: 20px;
  }
  .catalog-family-cta__actions {
      display: grid;
      grid-template-columns: 1fr;
    }
  .home-hero-v2__content {
      padding-top: 28px;
      padding-bottom: 28px;
    }
  .home-hero-v2__content .button-row,
  .catalog-headline,
  .home-categories-band__header,
  .section-header {
      display: grid;
      align-items: stretch;
    }
  .home-hero-v2__content .button-row,
  .catalog-headline,
  .home-categories-band__header {
      gap: 12px;
    }
  .home-hero-v2__content .button-row a,
  .catalog-headline .quote-button,
  .home-categories-band__header .quote-button,
  .section-header .quote-button {
      width: 100%;
      justify-content: center;
    }
  .home-hero-v2__meta {
      gap: 8px;
    }
  .contact-hero-tags {
      gap: 8px;
    }
  .home-hero-v2__rail {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
  .home-hero-v2__rail a {
      width: 100%;
      justify-content: center;
      text-align: center;
      min-height: 44px;
      padding-inline: 10px;
    }
  .home-proof-strip {
      margin-top: 0;
      padding-top: 18px;
    }
  .home-categories-band {
      padding-top: 28px;
  }
  .home-hero-product a {
    grid-template-columns: 1fr 88px;
    padding: 16px;
  }
  .home-hero-product__copy h3 {
    font-size: 22px;
  }
  .editorial-mini-grid {
    grid-template-columns: 1fr;
  }
  .editorial-trust-grid article {
    padding: 16px;
  }
  .home-showcase-card a,
  .home-spotlight-card:first-child a {
    grid-template-columns: 1fr;
    grid-template-rows: auto 220px;
    min-height: auto;
  }
  .home-showcase-card__copy h3 {
    font-size: 32px;
  }
  .home-hero-v2__content h1 {
      font-size: 42px;
    }
  .product-breadcrumbs {
      gap: 6px;
      margin-bottom: 12px;
      font-size: 11px;
    }
  .product-layout {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
  .product-summary {
      order: 1;
    }
  .product-gallery {
      order: 2;
    }
  .product-summary--white-ref {
      padding: 18px 0 0;
      border-left: 0;
      border-top: 1px solid var(--line);
    }
  .product-summary--white-ref h1,
  .product-summary:not(.product-summary--white-ref) h1 {
      font-size: 34px;
    }
  .product-thumbs {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      align-items: start;
    }
  .product-gallery--white-ref .product-thumbs {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  .product-thumbs span {
      max-width: none;
    }
  .product-photo-main,
  .product-gallery-note,
  .product-gallery-sidecard {
      border-radius: 14px;
    }
  .product-feature-bullets {
      gap: 10px;
    }
  .product-meta-strip div {
      padding: 14px;
    }
  .product-detail-layout {
      grid-template-columns: 1fr;
    }
  .product-tab-strip {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }
  .product-tab-strip span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 8px 10px;
      text-align: center;
      border-radius: 12px;
    }
  .hero-content-card,
  .section-header,
  .sidebar-heading,
  .section-card,
  .support-card,
  .faq-card,
  .faq-item,
  .contact-card,
  .contact-form-shell,
  .product-summary,
  .spec-card,
  .review-card,
  .about-card,
  .about-timeline,
    .plain-page,
    .about-hero-copy {
      padding: 18px;
    }
  .catalog-sidebar-card,
  .catalog-family-strip__intro,
  .catalog-family-picks,
  .catalog-family-cta,
  .home-category-card,
  .catalog-group-card {
      border-radius: 18px;
    }
  h2 { font-size: 26px; }
}

@media (max-width: 520px) {
  .topbar-message,
  .header-utility-bar {
    display: none;
  }
  .brand span strong {
    font-size: 24px;
  }
  .category-bar {
    grid-template-columns: 1fr 1fr;
  }
  .home-hero-v2__content h1 {
    font-size: 38px;
    max-width: none;
  }
  .home-hero-v2__content p {
    font-size: 15px;
  }
  .home-hero-v2__rail {
    grid-template-columns: 1fr;
  }
  .home-hero-product a {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-hero-product img {
    width: 100%;
    max-width: 120px;
    justify-self: start;
  }
  .catalog-family-metrics {
    gap: 10px;
  }
  .catalog-family-metrics div {
    padding: 12px 14px;
  }
  .catalog-sku-card__top {
    gap: 6px;
  }
  .product-summary--white-ref h1,
  .product-summary:not(.product-summary--white-ref) h1 {
    font-size: 30px;
  }
  .product-summary .price,
  .product-summary--white-ref .price {
    font-size: 30px;
  }
}

@media (min-width: 901px) {
  .catalog-sidebar--dense {
    position: sticky;
    top: 112px;
    align-self: start;
  }

  .catalog-family-strip {
    align-items: start;
  }

  .catalog-family-picks {
    padding: 14px;
  }

  .catalog-family-pick {
    min-height: 132px;
  }

  .catalog-family-pick a {
    min-height: 100%;
  }

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

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

  .catalog-tile {
    display: flex;
  }

  .catalog-tile > a {
    display: grid;
    grid-template-rows: 148px auto auto 1fr;
    min-height: 100%;
    width: 100%;
  }

  .catalog-tile-thumb,
  .product-thumb--placeholder {
    min-height: 148px;
  }

  .product-layout {
    align-items: start;
  }

  .product-gallery {
    position: sticky;
    top: 108px;
  }

  .product-summary:not(.product-summary--white-ref),
  .product-summary--white-ref {
    box-shadow: 0 18px 36px rgba(16, 24, 40, 0.06);
  }

  .product-detail-layout {
    align-items: start;
  }

  .product-side-stack {
    position: sticky;
    top: 108px;
  }
}

.catalog-family-pick img,
.catalog-tile-thumb {
  object-fit: contain;
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
}

.catalog-tile > a {
  border-radius: 18px;
}

.catalog-tile h3 {
  line-height: 1.15;
}

.catalog-tile-copy {
  color: var(--muted);
  line-height: 1.55;
}

.catalog-sku-card h3 {
  line-height: 1.12;
}

.product-gallery-note,
.product-gallery-sidecard,
.product-program-card,
.catalog-family-cta,
.catalog-group-card,
.catalog-family-strip__intro,
.catalog-family-picks,
.catalog-sku-strip {
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.05);
}

.product-copy-section p,
.plain-page.rich-content p {
  max-width: 72ch;
}

.product-copy-list li,
.product-program-list li,
.catalog-family-guide li {
  line-height: 1.55;
}

.review-mini-list article {
  min-height: 110px;
}

/* ===================================================
   GOPRINT ENHANCEMENTS — v3.0
   About, FAQ, Contact, Mobile, Accessibility
   =================================================== */

/* --- About: Stats strip --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--surface, #f5f8fc);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin: 2rem 0 3rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand, #1a56db);
  line-height: 1;
}
.stat-item span {
  display: block;
  font-size: 0.875rem;
  color: var(--muted, #6b7280);
  margin-top: 0.4rem;
}

/* --- About: Values grid --- */
.about-values .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}
.value-icon {
  color: var(--brand, #1a56db);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--muted, #6b7280);
  line-height: 1.6;
}

/* --- About / FAQ: CTA box --- */
.cta-box {
  background: var(--brand, #1a56db);
  color: #fff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
}
.cta-box h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #fff;
}
.cta-box p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.btn-primary {
  background: #fff;
  color: var(--brand, #1a56db);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* --- FAQ: search --- */
.faq-search-wrap {
  margin: 2rem 0;
}
.faq-search input {
  width: 100%;
  max-width: 560px;
  padding: 0.85rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.15s;
}
.faq-search input:focus {
  border-color: var(--brand, #1a56db);
  outline: none;
}
.faq-no-results {
  margin-top: 0.75rem;
  color: var(--muted, #6b7280);
  font-size: 0.95rem;
}

/* --- FAQ: accordion details/summary --- */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.faq-item summary {
  font-weight: 600;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand, #1a56db);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.95rem;
  color: var(--muted, #6b7280);
  line-height: 1.7;
  margin: 0;
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--brand, #1a56db);
  outline-offset: -2px;
}

/* FAQ category titles */
.faq-category-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand, #1a56db);
  color: var(--heading, #111827);
}

/* FAQ sidebar contact box */
.faq-contact-box {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--surface, #f5f8fc);
  border-radius: 10px;
  text-align: center;
}
.faq-contact-box p {
  font-size: 0.9rem;
  color: var(--muted, #6b7280);
  margin-bottom: 0.75rem;
}
.faq-cta { margin-top: 4rem; }

/* --- Contact: response badge --- */
.contact-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

/* --- Contact: improved form --- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading, #111827);
}
.contact-form-grid label.full {
  grid-column: 1 / -1;
}
.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.15s;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
}
.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
  border-color: var(--brand, #1a56db);
  outline: none;
}
.contact-form-grid textarea {
  min-height: 120px;
  resize: vertical;
}
.form-privacy-note {
  font-size: 0.8rem;
  color: var(--muted, #6b7280);
  margin-top: 0.75rem;
}
.button-row .btn-primary {
  background: var(--brand, #1a56db);
  color: #fff;
}
.button-row .btn-primary:focus-visible {
  outline: 3px solid var(--brand, #1a56db);
  outline-offset: 3px;
}

/* ===================================================
   MOBILE FIXES — all breakpoints
   =================================================== */

/* Touch targets — 44×44px minimum */
a, button, [role="button"], summary,
input[type="submit"], input[type="button"] {
  min-height: 44px;
  touch-action: manipulation;
}
nav a, .faq-menu a {
  padding: 0.5rem 0;
  display: block;
}

/* No horizontal scroll */
html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1023px) {
  .about-stats,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .stat-item strong { font-size: 2rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2rem 1.25rem; }
  .cta-box h2 { font-size: 1.4rem; }
  .faq-layout {
    flex-direction: column;
  }
  .faq-sidebar {
    width: 100%;
    margin-bottom: 2rem;
  }
  .about-process {
    flex-direction: column;
  }
  .about-process-media {
    flex-direction: row;
    gap: 1rem;
  }
}

@media (max-width: 479px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat-item strong { font-size: 1.75rem; }
}

/* ===================================================
   ACCESSIBILITY
   =================================================== */
:focus-visible {
  outline: 3px solid var(--brand, #1a56db);
  outline-offset: 3px;
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand, #1a56db);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }


/* ===================================================
   PRODUCT PAGE ENHANCEMENTS
   =================================================== */

/* Breadcrumbs — on all product pages */
.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted, #6b7280);
  padding: 1rem 0 0.5rem;
  flex-wrap: wrap;
}
.product-breadcrumbs a {
  color: var(--muted, #6b7280);
  text-decoration: none;
  min-height: auto;
}
.product-breadcrumbs a:hover { color: var(--brand, #1a56db); }
.product-breadcrumbs strong { color: var(--heading, #111827); }
.product-breadcrumbs span[aria-hidden] { color: #d1d5db; }

/* Who is this for */
.product-for-whom { margin: 3rem 0; }
.product-for-whom__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.for-whom-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
}
.for-whom-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.for-whom-card p {
  font-size: 0.875rem;
  color: var(--muted, #6b7280);
  line-height: 1.6;
}

/* Product FAQ */
.product-faq { margin: 3rem 0; }
.product-faq__list { margin-top: 1.5rem; }
.product-faq__more {
  margin-top: 1rem;
  font-size: 0.9rem;
}
.product-faq__more a {
  color: var(--brand, #1a56db);
  text-decoration: none;
  font-weight: 600;
  min-height: auto;
}

/* Proof strip — 4 columns */
.home-proof-strip__grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1023px) {
  .product-for-whom__grid { grid-template-columns: repeat(2, 1fr); }
  .home-proof-strip__grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 599px) {
  .product-for-whom__grid { grid-template-columns: 1fr; }
  .home-proof-strip__grid { grid-template-columns: 1fr 1fr !important; }
}

/* --- Catalog search bar --- */
.catalog-search-bar {
  margin: 1rem 0 1.5rem;
}
.catalog-search-bar input {
  width: 100%;
  max-width: 480px;
  padding: 0.85rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.15s;
}
.catalog-search-bar input:focus {
  border-color: var(--brand, #1a56db);
  outline: none;
}

/* --- Catalog tile: price + CTA --- */
.catalog-tile-price {
  font-size: 0.875rem;
  color: var(--muted, #6b7280);
  margin: 0.25rem 0;
}
.catalog-tile-price strong {
  color: var(--brand, #1a56db);
  font-size: 1rem;
}
.catalog-tile-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand, #1a56db);
}
