:root {
  --green: #9fca2b;
  --blue: #28a9df;
  --pink: #ec008c;
  --orange: #ff7f18;
  --forest: #102018;
  --ink: #111815;
  --text: #29352f;
  --muted: #68756f;
  --line: #d9e5df;
  --paper: #f7faf8;
  --cream: #fffdf8;
  --white: #fff;
  --shadow: 0 22px 60px rgba(18, 28, 24, .10);
  --page-bg:
    linear-gradient(120deg, rgba(255, 255, 255, .86), rgba(247, 250, 248, .92)),
    radial-gradient(circle at 8% 14%, rgba(159, 202, 43, .18), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(40, 169, 223, .15), transparent 28%),
    radial-gradient(circle at 76% 86%, rgba(236, 0, 140, .10), transparent 24%),
    #fffdf8;
  --card-bg: #fff;
  --header-bg: rgba(255, 253, 248, .91);
  --soft-bg: #f2f7f4;
}

/* v92 uploader and ad-ready landing polish */
.enhanced-uploader {
  position: relative;
  display: grid;
  gap: 12px;
  cursor: pointer;
}

.enhanced-uploader input[type="file"] {
  width: 100%;
  min-height: 46px;
  padding: 10px;
  border: 1px solid rgba(16, 32, 24, .16);
  border-radius: 10px;
  background: #fff;
  color: #102018;
  cursor: pointer;
}

.upload-ui {
  display: grid;
  gap: 10px;
}

.upload-drop-copy {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 18px;
  border: 1px dashed rgba(20, 134, 83, .45);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(239,247,243,.9)),
    linear-gradient(90deg, rgba(159,202,43,.12), rgba(40,169,223,.12));
  align-content: center;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.upload-drop-copy strong {
  color: #0b3f2b;
  font-size: 1.08rem;
}

.upload-drop-copy span {
  color: #42574c;
  font-size: .92rem;
  line-height: 1.45;
}

.upload-drop-copy em {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(20, 134, 83, .1);
  color: #0e6f45;
  font-style: normal;
  font-weight: 900;
  font-size: .82rem;
}

.enhanced-uploader.is-dragover .upload-drop-copy {
  border-color: #148653;
  box-shadow: 0 18px 45px rgba(20, 134, 83, .16);
  transform: translateY(-1px);
}

.upload-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 32, 24, .08);
}

.upload-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9fca2b, #28a9df, #148653);
  transition: width .32s ease;
}

.enhanced-uploader.is-upload-warning .upload-progress span {
  background: linear-gradient(90deg, #f97316, #be123c);
}

.upload-file-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.upload-file-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 32, 24, .1);
  border-radius: 10px;
  background: rgba(255,255,255,.78);
}

.upload-file-list strong {
  min-width: 0;
  overflow: hidden;
  color: #102018;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-file-list span {
  flex: 0 0 auto;
  color: #0e6f45;
  font-weight: 900;
}

.upload-file-list button {
  flex: 0 0 auto;
  min-height: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 32, 24, .08);
  color: #102018;
  font-size: .76rem;
  box-shadow: none;
}

.upload-file-list button:hover {
  background: rgba(190, 18, 60, .1);
  color: #9f1239;
}

.upload-file-list li > div:first-child {
  min-width: 0;
}

.upload-file-list em {
  display: block;
  margin-top: 3px;
  color: #68756f;
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
}

.upload-file-list li.is-uploading em {
  color: #1c78a8;
}

.upload-file-list li.is-done em {
  color: #0e6f45;
}

.upload-file-list li.is-error {
  border-color: rgba(190, 18, 60, .35);
  background: rgba(190, 18, 60, .06);
}

.upload-file-list li.is-error em,
.upload-file-list li.is-error span {
  color: #9f1239;
}

.upload-item-progress {
  grid-column: 1 / -1;
  flex-basis: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 32, 24, .08);
}

.upload-item-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #28a9df, #148653);
  transition: width .24s ease;
}

.upload-file-list li.is-error .upload-item-progress i {
  background: linear-gradient(90deg, #f97316, #be123c);
}

.hero {
  border: 1px solid rgba(207, 221, 214, .9);
  border-radius: 18px;
  background:
    linear-gradient(108deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 48%, rgba(232,246,239,.78) 100%),
    url("img/hero-production.svg") right 6% center / min(46vw, 560px) no-repeat;
  box-shadow: 0 22px 70px rgba(18, 28, 24, .09);
}

.hero::before {
  height: 6px;
  border-radius: 999px 999px 0 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: #2d4036;
}

.hero-actions .button {
  min-height: 48px;
  padding-inline: 22px;
}

.hero-actions .button:first-child {
  background: linear-gradient(135deg, #148653, #0f6f48);
  box-shadow: 0 16px 34px rgba(20, 134, 83, .22);
}

.quick-quote-panel {
  border-color: rgba(20, 134, 83, .22);
  background: rgba(255,255,255,.88);
}

.quick-quote-panel > span {
  max-width: 62ch;
}

.hero-visual {
  filter: saturate(1.05);
}

.visual-main {
  border-radius: 18px;
  transform: rotate(-1deg);
}

.visual-small {
  border-radius: 12px;
}

.print-job-launcher {
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(18, 28, 24, .08);
}

.print-job-launcher .section-heading p:not(.eyebrow) {
  max-width: 70ch;
}

.print-job-grid a {
  border-top: 0;
  border-left-width: 5px;
  box-shadow: 0 12px 28px rgba(18, 28, 24, .06);
}

.print-job-grid a:hover {
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 28, 24, .12);
}

@media (max-width: 1100px) {
  .hero {
    background:
      linear-gradient(108deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 100%),
      url("img/hero-production.svg") right 20px bottom 20px / 280px no-repeat;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --forest: #d8f2e5;
    --ink: #f4faf6;
    --text: #e8f0ec;
    --muted: #afbeb7;
    --line: rgba(222, 236, 229, .20);
    --paper: #13221b;
    --cream: #0d1511;
    --white: #14231c;
    --shadow: 0 22px 60px rgba(0, 0, 0, .34);
    --page-bg:
      linear-gradient(120deg, rgba(13, 21, 17, .96), rgba(16, 31, 24, .94)),
      radial-gradient(circle at 8% 14%, rgba(159, 202, 43, .14), transparent 26%),
      radial-gradient(circle at 88% 10%, rgba(40, 169, 223, .14), transparent 28%),
      radial-gradient(circle at 76% 86%, rgba(236, 0, 140, .10), transparent 24%),
      #0d1511;
    --card-bg: #14231c;
    --header-bg: rgba(13, 21, 17, .90);
    --soft-bg: #101c16;
  }
}

:root[data-theme="dark"] {
  --forest: #d8f2e5;
  --ink: #f4faf6;
  --text: #e8f0ec;
  --muted: #afbeb7;
  --line: rgba(222, 236, 229, .20);
  --paper: #13221b;
  --cream: #0d1511;
  --white: #14231c;
  --shadow: 0 22px 60px rgba(0, 0, 0, .34);
  --page-bg:
    linear-gradient(120deg, rgba(13, 21, 17, .96), rgba(16, 31, 24, .94)),
    radial-gradient(circle at 8% 14%, rgba(159, 202, 43, .14), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(40, 169, 223, .14), transparent 28%),
    radial-gradient(circle at 76% 86%, rgba(236, 0, 140, .10), transparent 24%),
    #0d1511;
  --card-bg: #14231c;
  --header-bg: rgba(13, 21, 17, .90);
  --soft-bg: #101c16;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page-bg);
  background-attachment: fixed;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 32, 24, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 24, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.70), transparent 75%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); line-height: 1.65; margin: 0 0 16px; }
h1, h2, h3 { letter-spacing: 0; color: var(--ink); }
h1 { font-size: 68px; line-height: .95; margin: 0 0 22px; max-width: 820px; }
h2 { font-size: 34px; line-height: 1.08; margin: 0 0 14px; }
h3 { font-size: 19px; margin: 0 0 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px 5vw;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(217, 229, 223, .85);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  font-weight: 900;
  color: var(--forest);
}
.brand img { width: 116px; height: auto; }
.brand span {
  display: block;
  max-width: 130px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 900; }
nav a { color: var(--text); }
:root[data-theme="dark"] nav a,
:root[data-theme="dark"] .brand,
:root[data-theme="dark"] .lang-link { color: var(--ink); }
.lang-link {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--forest);
}
.nav-cta {
  min-height: 40px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
}
.nav-login {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(159, 202, 43, .35);
  border-radius: 999px;
  background: rgba(159, 202, 43, .12);
  color: #11633f;
}
:root[data-theme="dark"] .nav-login {
  background: rgba(159, 202, 43, .18);
  color: #d8f2e5;
}

main { min-height: 74vh; }
.eyebrow {
  color: #15734c;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.button,
button {
  border: 0;
  border-radius: 8px;
  min-height: 46px;
  padding: 13px 20px;
  background: #148653;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(20, 134, 83, .18);
}
.button.secondary {
  background: #eef5f1;
  color: #17382a;
  box-shadow: none;
}
.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.shop-proof-grid,
.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.shop-proof-grid div,
.conversion-strip div {
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  padding: 13px;
}
.conversion-strip div {
  background: var(--soft);
}
.shop-proof-grid strong,
.conversion-strip strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}
.shop-proof-grid span,
.conversion-strip span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
}
.quick-quote-panel {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 34px rgba(24, 37, 31, .08);
}
.quick-quote-panel strong {
  font-size: 1.06rem;
}
.quick-quote-panel span {
  color: var(--muted);
  line-height: 1.45;
}
.quick-quote-panel div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.order-readiness-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.order-readiness-strip article {
  min-height: 96px;
  padding: 15px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--soft);
}
.order-readiness-strip strong {
  display: block;
  margin-bottom: 6px;
}
.order-readiness-strip span {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.42;
}
.sales-handoff-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
  align-items: stretch;
}
.sales-handoff-strip > div,
.sales-handoff-strip article {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.sales-handoff-strip > div {
  background: var(--soft);
}
.sales-handoff-strip h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}
.sales-handoff-strip span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(20, 134, 83, .12);
  color: #148653;
  font-size: 12px;
  font-weight: 900;
}
.sales-handoff-strip strong,
.sales-handoff-strip small {
  display: block;
}
.sales-handoff-strip strong {
  margin-bottom: 6px;
  color: var(--ink);
}
.sales-handoff-strip small {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}
.product-sales-handoff {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 20px;
}
.trust-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--card-bg);
  color: var(--ink);
  font: inherit;
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-search {
  width: min(100%, 760px);
  margin-top: 24px;
}
.top-search {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, .88);
  border-color: rgba(184, 209, 197, .90);
  box-shadow: 0 18px 46px rgba(18, 28, 24, .10);
}
:root[data-theme="dark"] .top-search {
  background: rgba(20, 35, 28, .86);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  gap: 54px;
  min-height: 720px;
  padding: 86px 5vw 70px;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .96) 0%, rgba(255, 253, 248, .88) 54%, rgba(245, 250, 247, .78) 100%),
    radial-gradient(circle at 12% 16%, rgba(159, 202, 43, .18), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(40, 169, 223, .16), transparent 30%),
    var(--cream);
}
:root[data-theme="dark"] .hero {
  background:
    linear-gradient(110deg, rgba(13, 21, 17, .96) 0%, rgba(14, 28, 22, .90) 58%, rgba(18, 35, 28, .82) 100%),
    radial-gradient(circle at 12% 16%, rgba(159, 202, 43, .15), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(40, 169, 223, .15), transparent 30%),
    var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--pink), var(--orange));
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy p:not(.eyebrow) {
  font-size: 20px;
  max-width: 720px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
  margin-top: 34px;
}
.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
}
.hero-metrics strong { display: block; font-size: 22px; color: var(--forest); }
.hero-metrics span { color: var(--muted); font-size: 13px; font-weight: 800; }
.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.visual-card {
  border: 1px solid rgba(217, 229, 223, .92);
  border-radius: 12px;
  background: rgba(255, 255, 255, .90);
  box-shadow: var(--shadow);
}
.visual-main {
  width: min(470px, 100%);
  padding: 34px;
}
.visual-main img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 16px;
}
.visual-main span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}
.visual-small {
  position: absolute;
  display: grid;
  gap: 5px;
  min-width: 190px;
  padding: 16px;
}
.visual-small strong { font-size: 16px; }
.visual-small span { color: var(--muted); font-size: 13px; }
.visual-small.one { top: 36px; right: 0; border-top: 4px solid var(--green); }
.visual-small.two { bottom: 54px; left: 0; border-top: 4px solid var(--blue); }
.visual-small.three { right: 38px; bottom: 6px; border-top: 4px solid var(--pink); }

.intro-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 22px 5vw;
  background: var(--forest);
  color: #fff;
}
.intro-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 900;
}

.section-band,
.split-section,
.workflow-section,
.product-hero,
.request-layout,
.designer-page,
.result-page {
  padding: 58px 5vw;
}
.section-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.86)),
    radial-gradient(circle at 94% 12%, rgba(255,127,24,.10), transparent 26%);
}
.product-card,
.price-card,
.request-form,
.summary-card,
.login-card,
.split-section > article,
.split-section > div,
.workflow-grid div,
.visual-card,
.product-visual-card,
.designer-grid div {
  background: var(--card-bg);
}
.section-heading { max-width: 820px; margin-bottom: 30px; }
.section-heading p:not(.eyebrow) { max-width: 720px; }
.search-box {
  width: min(100%, 620px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: 0 14px 34px rgba(18, 28, 24, .06);
}
.search-box span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.search-box input {
  min-height: 48px;
  padding-left: 44px;
  background:
    radial-gradient(circle at 18px 50%, transparent 0 6px, var(--muted) 6px 7px, transparent 7px),
    linear-gradient(45deg, transparent 0 52%, var(--muted) 52% 57%, transparent 57%),
    var(--field-bg);
  background-size: 28px 28px, 24px 24px, auto;
  background-position: 7px center, 20px 19px, 0 0;
  background-repeat: no-repeat;
}
.no-results {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card-bg);
  font-weight: 900;
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}
.category-filter button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card-bg);
  color: var(--text);
  box-shadow: none;
}
.category-filter button.active {
  border-color: rgba(20, 134, 83, .28);
  background: #148653;
  color: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card,
.price-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card-bg);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--pink), var(--orange));
  opacity: .82;
}
.product-card:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: #b8d1c5;
  box-shadow: var(--shadow);
}
.product-thumb {
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(248,251,249,.96), rgba(238,246,242,.92));
}
.product-thumb img {
  max-height: 74px;
  width: 100%;
  object-fit: contain;
}
.product-card span,
.price-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.product-card strong,
.price-card strong { font-size: 21px; }
.product-card p { margin: 0; font-size: 14px; }
.product-card[hidden] { display: none; }
.price-row { display: grid; gap: 5px; margin-top: auto; }
.price-row small {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f7f4;
  color: #17382a;
  font-weight: 900;
}

.workflow-section { background: var(--soft-bg); }
.visual-story {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  gap: 28px;
  align-items: center;
  padding: 48px 5vw;
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(247,250,248,.86)),
    radial-gradient(circle at 14% 84%, rgba(40,169,223,.12), transparent 26%);
}
.visual-story h2 { max-width: 620px; }
.visual-story p { max-width: 620px; }
.process-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-card {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: 0 14px 34px rgba(18, 28, 24, .07);
  overflow: hidden;
}
.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green);
}
.process-card.accent-blue::before { background: var(--blue); }
.process-card.accent-pink::before { background: var(--pink); }
.process-card img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(248,251,249,.96), rgba(238,246,242,.92));
}
.process-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
}
.process-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
}
.process-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.workflow-grid div {
  min-height: 190px;
  padding: 22px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--line);
}
.workflow-grid strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: transparent;
}
.split-section > article,
.split-section > div {
  min-height: 320px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px;
  box-shadow: 0 16px 40px rgba(18, 28, 24, .06);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 38px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .90), rgba(242, 247, 244, .92)),
    var(--paper);
}
.product-hero h1 { font-size: 58px; }
.product-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.product-prices span {
  padding: 10px 13px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}
.product-prices strong { color: var(--ink); }
.price-vat-note {
  flex-basis: 100%;
  max-width: 780px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
.pricing-note-box,
.catalogue-pricing-note {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 134, 83, .20);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 247, 239, .92), rgba(255, 255, 255, .88));
}
.pricing-note-box strong,
.catalogue-pricing-note strong {
  color: var(--green-dark);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-note-box span,
.catalogue-pricing-note span,
.catalogue-pricing-note p,
.catalogue-price small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.catalogue-pricing-note {
  grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr);
  align-items: center;
}
.product-visual-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}
.product-visual-card-large { padding: 0; overflow: hidden; }
.product-visual-card img {
  width: 230px;
  height: 190px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.product-visual-card span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}
.live-product-preview {
  display: grid;
  gap: 0;
}
.preview-stage {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 25% 18%, rgba(159, 202, 43, .20), transparent 25%),
    radial-gradient(circle at 84% 22%, rgba(40, 169, 223, .18), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(232,242,236,.94));
}
.preview-stage::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(16,32,24,.10);
  border-radius: 18px;
}
.preview-sheet {
  position: relative;
  z-index: 1;
  width: 220px;
  min-height: 150px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(18, 28, 24, .16);
  transform: rotate(-4deg) translateX(-26px);
}
.preview-sheet img {
  width: 100px;
  height: 82px;
  object-fit: contain;
  margin: 0;
}
.preview-brand {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: #102018;
  font-size: 12px;
  letter-spacing: .12em;
}
.preview-sheet-alt {
  position: absolute;
  right: 34px;
  bottom: 42px;
  width: 190px;
  min-height: 122px;
  align-content: center;
  gap: 10px;
  padding: 20px;
  transform: rotate(5deg);
}
.preview-sheet-alt strong {
  color: #102018;
  font-size: 18px;
  line-height: 1.1;
}
.preview-sheet-alt span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef6f2;
  color: #143326;
  font-size: 12px;
}
.preview-details {
  display: grid;
  gap: 10px;
  padding: 24px;
}
.preview-details strong { font-size: 22px; }
.preview-details span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
}
.preview-details b { color: var(--ink); }
.preview-details em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
  text-align: right;
}
.preview-details small {
  color: var(--muted);
  line-height: 1.5;
}
.product-preview-business-cards .preview-sheet {
  width: 260px;
  min-height: 158px;
}
.product-preview-flyers .preview-sheet,
.product-preview-posters .preview-sheet {
  width: 205px;
  min-height: 284px;
}
.product-preview-stickers .preview-sheet {
  width: 210px;
  min-height: 210px;
  border-radius: 50%;
}
.product-preview-roll-up-banners .preview-sheet {
  width: 154px;
  min-height: 300px;
}
.product-preview-signs .preview-sheet {
  width: 300px;
  min-height: 110px;
  background: #102018;
}
.product-preview-signs .preview-brand { color: #fff; }
.product-preview-clothing-prints .preview-sheet {
  width: 230px;
  min-height: 260px;
  clip-path: polygon(28% 0, 72% 0, 94% 22%, 78% 40%, 78% 100%, 22% 100%, 22% 40%, 6% 22%);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 24px;
  align-items: start;
}
.request-form {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 18px 46px rgba(18, 28, 24, .07);
}
.form-title {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 900;
  color: #26332e;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  outline-color: #31a970;
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; margin-top: 16px; }
.choice-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 20px 0;
  padding: 16px;
  background: rgba(251, 253, 251, .72);
}
legend { padding: 0 8px; font-weight: 900; }
.specs-callout {
  display: grid;
  gap: 8px;
  margin: 18px 0 26px;
  padding: 18px;
  border: 1px solid rgba(255, 127, 24, .28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 127, 24, .10), rgba(159, 202, 43, .08)),
    var(--card-bg);
}
.specs-callout strong { font-size: 18px; }
.specs-callout p { margin: 0; }
.specs-callout a {
  width: fit-content;
  color: #148653;
  font-weight: 900;
}
.check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(217, 229, 223, .75);
}
.check-row:last-child { border-bottom: 0; }
.check-row input { width: auto; }
.check-row span { color: var(--muted); font-size: 13px; font-weight: 800; }
.summary-card,
.login-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
  padding: 26px;
  box-shadow: var(--shadow);
}
.summary-card {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
}
.summary-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.summary-card .summary-total {
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(20, 134, 83, .24);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(159, 202, 43, .13), rgba(40, 169, 223, .08));
}
.summary-total strong {
  color: #148653;
  font-size: 20px;
}
.result-summary.compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.result-summary.compact div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.result-summary.compact span {
  display: block;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 4px;
}
.result-summary.compact strong {
  color: var(--ink);
}
.muted { color: var(--muted); }

.reseller-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.price-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.designer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
  padding: 72px 5vw 58px;
  background:
    linear-gradient(110deg, rgba(250, 253, 251, .96), rgba(238, 246, 242, .92)),
    radial-gradient(circle at 84% 18%, rgba(236, 0, 140, .12), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(40, 169, 223, .12), transparent 28%);
}
.designer-hero h1 { font-size: 58px; }
.designer-preview {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.canvas-frame {
  position: relative;
  width: min(100%, 330px);
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.canvas-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(20, 134, 83, .45);
  border-radius: 12px;
}
.canvas-frame span {
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--pink), var(--orange));
}
.canvas-frame strong {
  font-size: 72px;
  color: var(--ink);
}
.canvas-frame em {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.canvas-chip {
  position: absolute;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card-bg);
  box-shadow: 0 12px 28px rgba(18, 28, 24, .10);
  color: var(--ink);
  font-weight: 900;
}
.canvas-chip.one { top: 28px; left: 0; }
.canvas-chip.two { top: 84px; right: 18px; }
.canvas-chip.three { bottom: 36px; left: 34px; }
.designer-page { max-width: 1180px; }
.designer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.designer-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  display: grid;
  gap: 8px;
}
.designer-grid-rich div {
  position: relative;
  min-height: 135px;
  overflow: hidden;
}
.designer-grid-rich div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--pink), var(--orange));
}
.designer-grid span { color: var(--muted); }
.designer-request-layout {
  padding-top: 24px;
}
.alert {
  padding: 12px;
  background: #fff3e8;
  color: #8c3d00;
  border-radius: 8px;
  margin-bottom: 12px;
}
.result-page { max-width: 760px; }
.specs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: center;
  padding: 72px 5vw 54px;
  background: var(--hero-bg);
}
.specs-hero h1 { font-size: 56px; }
.specs-notice {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(20, 134, 83, .22);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}
.specs-notice strong { font-size: 20px; }
.specs-notice span {
  width: fit-content;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-weight: 900;
}
.specs-page { padding: 58px 5vw; }
.specs-alt { background: var(--section-bg); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.specs-grid article,
.steps-list div,
.approval-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: 0 14px 34px rgba(18, 28, 24, .06);
}
.specs-grid article {
  min-height: 240px;
  padding: 22px;
}
.specs-grid span {
  color: #148653;
  font-weight: 900;
  letter-spacing: .10em;
}
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.steps-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
}
.steps-list strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep-bg);
  color: var(--deep-text);
}
.approval-box {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 30px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 5vw;
  background: var(--forest);
  color: #fff;
}
.site-footer div { display: grid; gap: 5px; }
.site-footer span { color: rgba(255, 255, 255, .7); }

@media (max-width: 1100px) {
  .hero,
  .visual-story,
  .product-hero,
  .designer-hero,
  .request-layout,
  .specs-hero,
  .approval-box { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 420px; }
  .product-grid,
  .workflow-grid,
  .specs-grid,
  .steps-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-proof-grid,
  .conversion-strip,
  .sales-handoff-strip,
  .product-sales-handoff,
  .order-readiness-strip,
  .result-summary.compact { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}
@media (max-width: 760px) {
  .site-header,
  nav { align-items: flex-start; flex-direction: column; }
  nav { gap: 12px; }
  h1 { font-size: 42px; }
  h2 { font-size: 28px; }
  .hero { padding-top: 54px; }
  .hero-metrics,
  .process-mini,
  .product-grid,
  .workflow-grid,
  .specs-grid,
  .steps-list,
  .split-section,
  .price-table,
  .designer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .visual-small { position: static; margin-top: 12px; width: 100%; }
  .hero-visual { display: block; min-height: 0; }
  .visual-main { width: 100%; }
  .designer-preview { min-height: 300px; }
  .canvas-chip { position: static; margin-top: 10px; width: fit-content; }
  .process-card { min-height: 0; }
  .site-footer { flex-direction: column; }
}

/* Final theme contrast layer */
:root {
  --deep-bg: #0f2118;
  --deep-text: #ffffff;
  --section-bg: linear-gradient(135deg, rgba(250, 253, 251, .94), rgba(235, 243, 238, .92));
  --hero-bg:
    linear-gradient(110deg, rgba(250, 253, 251, .96) 0%, rgba(239, 247, 242, .94) 58%, rgba(225, 235, 229, .92) 100%),
    radial-gradient(circle at 15% 18%, rgba(159, 202, 43, .18), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(40, 169, 223, .16), transparent 28%),
    radial-gradient(circle at 78% 84%, rgba(236, 0, 140, .10), transparent 28%);
  --story-bg:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(238,246,242,.94)),
    radial-gradient(circle at 14% 84%, rgba(40,169,223,.12), transparent 26%);
  --field-bg: #ffffff;
  --soft-panel: rgba(255, 255, 255, .76);
  --pill-bg: #eef6f2;
  --pill-text: #143326;
  --secondary-bg: #eef5f1;
  --secondary-text: #17382a;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --deep-bg: #07120d;
    --deep-text: #f7fff9;
    --section-bg:
      linear-gradient(135deg, rgba(10, 20, 15, .96), rgba(14, 29, 22, .94)),
      radial-gradient(circle at 88% 10%, rgba(40, 169, 223, .12), transparent 30%);
    --hero-bg:
      linear-gradient(110deg, rgba(8, 17, 12, .98) 0%, rgba(12, 25, 19, .96) 58%, rgba(17, 35, 27, .94) 100%),
      radial-gradient(circle at 15% 18%, rgba(159, 202, 43, .16), transparent 30%),
      radial-gradient(circle at 85% 18%, rgba(40, 169, 223, .14), transparent 28%),
      radial-gradient(circle at 78% 84%, rgba(236, 0, 140, .12), transparent 28%);
    --story-bg:
      linear-gradient(135deg, rgba(9, 18, 13, .96), rgba(15, 31, 24, .94)),
      radial-gradient(circle at 14% 84%, rgba(40,169,223,.12), transparent 26%);
    --field-bg: #0f2018;
    --soft-panel: rgba(255, 255, 255, .06);
    --pill-bg: rgba(232, 250, 239, .10);
    --pill-text: #effff5;
    --secondary-bg: rgba(255, 255, 255, .10);
    --secondary-text: #f4fff8;
  }
}

:root[data-theme="dark"] {
  --deep-bg: #07120d;
  --deep-text: #f7fff9;
  --section-bg:
    linear-gradient(135deg, rgba(10, 20, 15, .96), rgba(14, 29, 22, .94)),
    radial-gradient(circle at 88% 10%, rgba(40, 169, 223, .12), transparent 30%);
  --hero-bg:
    linear-gradient(110deg, rgba(8, 17, 12, .98) 0%, rgba(12, 25, 19, .96) 58%, rgba(17, 35, 27, .94) 100%),
    radial-gradient(circle at 15% 18%, rgba(159, 202, 43, .16), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(40, 169, 223, .14), transparent 28%),
    radial-gradient(circle at 78% 84%, rgba(236, 0, 140, .12), transparent 28%);
  --story-bg:
    linear-gradient(135deg, rgba(9, 18, 13, .96), rgba(15, 31, 24, .94)),
    radial-gradient(circle at 14% 84%, rgba(40,169,223,.12), transparent 26%);
  --field-bg: #0f2018;
  --soft-panel: rgba(255, 255, 255, .06);
  --pill-bg: rgba(232, 250, 239, .10);
  --pill-text: #effff5;
  --secondary-bg: rgba(255, 255, 255, .10);
  --secondary-text: #f4fff8;
}

.hero,
:root[data-theme="dark"] .hero {
  background: var(--hero-bg);
}

.section-band,
.product-hero,
.designer-page,
.result-page,
.request-layout {
  background: var(--section-bg);
}

.visual-story {
  background: var(--story-bg);
}

.intro-strip,
.site-footer,
.nav-cta,
.workflow-grid strong {
  background: var(--deep-bg);
  color: var(--deep-text);
}

.button.secondary,
.nav-cta.button.secondary {
  background: var(--secondary-bg);
  color: var(--secondary-text);
}

.hero-metrics div,
.visual-card,
.product-card,
.price-card,
.request-form,
.summary-card,
.login-card,
.split-section > article,
.split-section > div,
.workflow-grid div,
.product-visual-card,
.designer-grid div {
  background: var(--card-bg);
  color: var(--ink);
}

.product-thumb,
.choice-panel {
  background: var(--soft-panel);
}

input,
select,
textarea {
  background: var(--field-bg);
  color: var(--ink);
  border-color: var(--line);
}

.price-row small,
.product-prices span,
.lang-link {
  background: var(--pill-bg);
  color: var(--pill-text);
}

.brand,
.brand span,
nav a,
.section-heading p,
.hero-copy p,
.visual-story p,
.workflow-grid p,
.split-section p,
.product-card p,
.price-card span,
.product-card span,
.check-row span,
.muted,
.site-footer span {
  opacity: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(159, 202, 43, .08) 35% 35.4%, transparent 35.4% 100%),
    linear-gradient(45deg, transparent 0 62%, rgba(40, 169, 223, .08) 62% 62.4%, transparent 62.4% 100%);
}

.catalogue-hero,
.fees-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  padding: 72px 5vw 52px;
  background: var(--hero-bg);
}
.catalogue-hero h1,
.fees-hero h1 {
  font-size: 56px;
  max-width: 880px;
}
.catalogue-hero p:not(.eyebrow),
.fees-hero p:not(.eyebrow) {
  max-width: 780px;
  font-size: 19px;
}
.catalogue-search {
  width: 100%;
}
.catalogue-page,
.fees-page {
  display: grid;
  gap: 28px;
  padding: 48px 5vw 64px;
  background: var(--section-bg);
}
.catalogue-nav {
  margin: 0;
}
.catalogue-group {
  display: grid;
  gap: 16px;
}
.catalogue-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.catalogue-group-head h2 {
  margin: 0;
}
.catalogue-group-head span {
  color: var(--muted);
  font-weight: 900;
}
.catalogue-list {
  display: grid;
  gap: 12px;
}
.catalogue-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 170px auto;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 14px 34px rgba(18, 28, 24, .06);
  cursor: pointer;
}
.catalogue-item:hover,
.catalogue-item:focus-visible {
  border-color: rgba(159, 202, 43, .48);
  box-shadow: 0 20px 54px rgba(18, 28, 24, .14);
  transform: translateY(-2px);
  outline: none;
}
.catalogue-item[hidden] {
  display: none;
}
.catalogue-thumb {
  display: grid;
  place-items: center;
  width: 104px;
  height: 92px;
  border-radius: 12px;
  background: var(--soft-panel);
}
.catalogue-thumb img {
  max-height: 64px;
  object-fit: contain;
}
.catalogue-info {
  display: grid;
  gap: 6px;
}
.catalogue-info span,
.catalogue-info small,
.catalogue-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.catalogue-info h3 {
  margin: 0;
  font-size: 22px;
}
.catalogue-info p {
  margin: 0;
  font-size: 14px;
}
.catalogue-price {
  display: grid;
  justify-items: start;
  gap: 6px;
}
.catalogue-price strong {
  color: var(--ink);
  font-size: 20px;
}
.fees-hero-card {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,246,242,.88)),
    radial-gradient(circle at 82% 18%, rgba(159,202,43,.26), transparent 28%);
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .fees-hero-card {
  background:
    linear-gradient(135deg, rgba(20,35,28,.96), rgba(14,29,22,.94)),
    radial-gradient(circle at 82% 18%, rgba(159,202,43,.20), transparent 28%);
}
.fees-hero-card strong {
  font-size: 64px;
  line-height: .9;
  color: var(--ink);
}
.fees-hero-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.fees-panel,
.fees-notes article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 16px 36px rgba(18, 28, 24, .07);
}
.fees-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}
.fee-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.fee-row:last-child {
  border-bottom: 0;
}
.fee-row span {
  color: var(--ink);
  font-weight: 900;
}
.fee-row strong {
  white-space: nowrap;
  color: #148653;
}
.fee-row small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 900;
}
.fees-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fees-notes article {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
  min-height: 260px;
  padding: 28px;
}
.result-rich {
  display: grid;
  gap: 22px;
}
.result-status {
  display: grid;
  gap: 8px;
  width: fit-content;
  min-width: min(100%, 360px);
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 16px 36px rgba(18, 28, 24, .07);
}
.result-status.success {
  border-color: rgba(20, 134, 83, .30);
  background:
    linear-gradient(135deg, rgba(159, 202, 43, .12), rgba(40, 169, 223, .08)),
    var(--card-bg);
}
.result-status.warning {
  border-color: rgba(255, 127, 24, .30);
  background:
    linear-gradient(135deg, rgba(255, 127, 24, .12), rgba(236, 0, 140, .07)),
    var(--card-bg);
}
.result-status span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.result-status strong {
  color: var(--ink);
  font-size: 26px;
}
.result-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.result-summary div {
  display: grid;
  gap: 7px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
}
.result-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.result-summary strong {
  color: var(--ink);
  font-size: 18px;
  word-break: break-word;
}
.admin-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 64px 5vw 42px;
  background: var(--hero-bg);
}
.admin-hero div {
  max-width: 860px;
}
.admin-hero h1 {
  font-size: 54px;
}
.admin-page {
  display: grid;
  gap: 22px;
  padding: 42px 5vw 64px;
  background: var(--section-bg);
}
.admin-login {
  width: min(100%, 520px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.admin-kpis article,
.admin-list,
.admin-detail {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 16px 36px rgba(18, 28, 24, .07);
}
.admin-kpis article {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 20px;
}
.admin-kpis span,
.admin-list-head span,
.admin-request-row span,
.admin-detail-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.admin-kpis strong {
  color: var(--ink);
  font-size: 26px;
  word-break: break-word;
}
.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}
.admin-list,
.admin-detail {
  padding: 18px;
}
.admin-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.admin-list-head h2 {
  margin: 0;
}
.admin-filters {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(130px, .55fr) minmax(110px, .45fr) auto auto auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.admin-filters label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.admin-filters input,
.admin-filters select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field-bg);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.admin-filters .button,
.admin-filters button {
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}
.admin-request-row {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 10px;
}
.admin-request-row + .admin-request-row {
  margin-top: 8px;
}
.admin-request-row:hover,
.admin-request-row.active {
  border-color: rgba(20, 134, 83, .26);
  background: var(--soft-panel);
}
.admin-request-row strong {
  color: var(--ink);
  line-height: 1.25;
}
.admin-request-row small {
  color: var(--muted);
}
.admin-detail {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}
.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.admin-detail-grid div,
.admin-files div,
.admin-empty {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft-panel);
}
.admin-detail-grid div {
  display: grid;
  gap: 6px;
  padding: 14px;
}
.admin-detail-grid strong {
  color: var(--ink);
  word-break: break-word;
}
.admin-pre {
  max-height: 340px;
  overflow: auto;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--field-bg);
  color: var(--ink);
  white-space: pre-wrap;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
}
.admin-files {
  display: grid;
  gap: 8px;
}
.admin-files div {
  display: grid;
  gap: 4px;
  padding: 12px;
}
.admin-files strong {
  color: var(--ink);
}
.admin-files span {
  color: var(--muted);
  font-size: 13px;
}
.admin-empty {
  padding: 18px;
  color: var(--muted);
  font-weight: 900;
}

.reseller-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  padding: 72px 5vw 54px;
  background:
    linear-gradient(110deg, rgba(250, 253, 251, .96), rgba(236, 245, 240, .94)),
    radial-gradient(circle at 12% 18%, rgba(159, 202, 43, .18), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(236, 0, 140, .12), transparent 26%);
}
:root[data-theme="dark"] .reseller-hero {
  background:
    linear-gradient(110deg, rgba(8, 17, 12, .98), rgba(14, 29, 22, .95)),
    radial-gradient(circle at 12% 18%, rgba(159, 202, 43, .16), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(236, 0, 140, .13), transparent 26%);
}
.reseller-hero h1 {
  font-size: 56px;
  max-width: 880px;
}
.reseller-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 19px;
}
.reseller-hero-card {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,246,242,.88)),
    radial-gradient(circle at 82% 18%, rgba(40,169,223,.28), transparent 28%);
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .reseller-hero-card {
  background:
    linear-gradient(135deg, rgba(20,35,28,.96), rgba(14,29,22,.94)),
    radial-gradient(circle at 82% 18%, rgba(40,169,223,.22), transparent 28%);
}
.reseller-hero-card strong {
  font-size: 24px;
  color: var(--ink);
}
.reseller-hero-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}
.reseller-page {
  color: #102018;
  display: grid;
  gap: 24px;
}
.reseller-page h1,
.reseller-page h2,
.reseller-page h3,
.reseller-page strong,
.reseller-page b {
  color: #102018;
}
.reseller-page p,
.reseller-page small {
  color: #34473d;
  opacity: 1;
}
.reseller-page .reseller-topbar,
.reseller-page .reseller-kpis article,
.reseller-page .reseller-note,
.reseller-page .reseller-price-card,
.reseller-page .reseller-price-lines div {
  border-color: rgba(16, 32, 24, .14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,246,.98));
}
.reseller-login {
  width: min(100%, 540px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.reseller-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: 0 14px 34px rgba(18, 28, 24, .06);
}
.reseller-topbar div {
  display: grid;
  gap: 4px;
}
.reseller-topbar span,
.reseller-kpis span,
.reseller-card-head span,
.reseller-price-lines span,
.reseller-margin small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.reseller-topbar strong {
  color: var(--ink);
  font-size: 22px;
}
.reseller-topbar small {
  color: var(--muted);
  font-weight: 800;
}
.reseller-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.reseller-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.reseller-kpis article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: 0 14px 34px rgba(18, 28, 24, .06);
}
.reseller-kpis strong {
  color: var(--ink);
  font-size: 30px;
}
.reseller-tools {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.reseller-search {
  width: 100%;
  margin: 0;
}
.reseller-filter {
  margin: 0;
  align-content: start;
}
.reseller-note {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(20, 134, 83, .22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(159, 202, 43, .10), rgba(40, 169, 223, .08)),
    var(--card-bg);
}
.reseller-note strong {
  color: var(--ink);
  font-size: 20px;
}
.reseller-note p {
  margin: 0;
}
.reseller-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.reseller-price-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 360px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 16px 36px rgba(18, 28, 24, .07);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.reseller-price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 134, 83, .30);
  box-shadow: var(--shadow);
}
.reseller-price-card[hidden] {
  display: none;
}
.reseller-card-head {
  display: grid;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.reseller-card-head strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
}
.reseller-price-card p {
  min-height: 68px;
  margin: 0;
  font-size: 14px;
}
.reseller-price-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.reseller-price-lines div {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft-panel);
}
.reseller-price-lines strong {
  color: var(--ink);
  font-size: 18px;
}
.reseller-margin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 13px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(159, 202, 43, .12), rgba(236, 0, 140, .07));
}
.margin-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: #148653;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}
.margin-pill.quote {
  background: var(--pill-bg);
  color: var(--pill-text);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  padding: 72px 5vw 54px;
  background:
    linear-gradient(110deg, rgba(250, 253, 251, .96), rgba(236, 245, 240, .94)),
    radial-gradient(circle at 12% 18%, rgba(159, 202, 43, .18), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(40, 169, 223, .12), transparent 26%);
}
:root[data-theme="dark"] .profile-hero {
  background:
    linear-gradient(110deg, rgba(8, 17, 12, .98), rgba(14, 29, 22, .95)),
    radial-gradient(circle at 12% 18%, rgba(159, 202, 43, .16), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(40, 169, 223, .13), transparent 26%);
}
.profile-hero h1 {
  font-size: 56px;
  max-width: 900px;
}
.profile-hero p:not(.eyebrow) {
  max-width: 780px;
  font-size: 19px;
}
.profile-page {
  color: #102018;
  display: grid;
  gap: 24px;
}
.profile-page h1,
.profile-page h2,
.profile-page h3,
.profile-page strong,
.profile-page b {
  color: #102018;
}
.profile-page p,
.profile-page small {
  color: #34473d;
  opacity: 1;
}
.profile-page .profile-detail-grid article,
.profile-page .profile-card,
.profile-page .order-insight-grid article,
.profile-page .portal-empty-state,
.profile-page .loyalty-rules article {
  border-color: rgba(16, 32, 24, .14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,246,.98));
}
.loyalty-wallet {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,246,242,.88)),
    radial-gradient(circle at 82% 18%, rgba(236,0,140,.18), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(159,202,43,.20), transparent 32%);
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .loyalty-wallet {
  background:
    linear-gradient(135deg, rgba(20,35,28,.96), rgba(14,29,22,.94)),
    radial-gradient(circle at 82% 18%, rgba(236,0,140,.20), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(159,202,43,.18), transparent 32%);
}
.loyalty-wallet span,
.profile-detail-grid span,
.profile-card .eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.loyalty-wallet strong {
  color: var(--ink);
  font-size: 28px;
  word-break: break-word;
}
.loyalty-wallet em {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: #148653;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}
.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.profile-detail-grid article,
.profile-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 16px 36px rgba(18, 28, 24, .07);
}
.profile-detail-grid article {
  display: grid;
  gap: 8px;
  min-height: 110px;
  padding: 18px;
}
.profile-detail-grid strong {
  color: var(--ink);
  font-size: 18px;
  word-break: break-word;
}
.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.profile-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 24px;
}
.profile-card h2 {
  margin: 0;
  font-size: 26px;
}
.profile-card p {
  margin: 0;
}
.loyalty-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(20, 134, 83, .22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(159, 202, 43, .10), rgba(40, 169, 223, .08)),
    var(--card-bg);
}
.loyalty-pill {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .reseller-hero,
  .profile-hero,
  .catalogue-hero,
  .fees-hero,
  .reseller-tools {
    grid-template-columns: 1fr;
  }
  .reseller-kpis,
  .reseller-price-grid,
  .profile-detail-grid,
  .profile-card-grid,
  .fees-grid,
  .fees-notes,
  .result-summary,
  .admin-kpis,
  .order-help-grid,
  .admin-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-detail {
    position: static;
  }
  .admin-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalogue-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .catalogue-price,
  .catalogue-item .button {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .reseller-hero h1,
  .catalogue-hero h1,
  .fees-hero h1 {
    font-size: 40px;
  }
  .reseller-kpis,
  .reseller-price-grid,
  .reseller-price-lines,
  .profile-detail-grid,
  .profile-card-grid,
  .fees-grid,
  .fees-notes,
  .result-summary,
  .admin-kpis,
  .admin-layout,
  .order-help-grid,
  .admin-detail-grid {
    grid-template-columns: 1fr;
  }
  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-filters {
    grid-template-columns: 1fr;
  }
  .catalogue-item {
    grid-template-columns: 1fr;
  }
  .catalogue-pricing-note {
    grid-template-columns: 1fr;
  }
  .catalogue-thumb {
    width: 100%;
  }
  .catalogue-price,
  .catalogue-item .button {
    grid-column: auto;
  }
  .reseller-topbar,
  .reseller-margin {
    align-items: flex-start;
    flex-direction: column;
  }
  .profile-hero h1 {
    font-size: 40px;
  }
}

/* v18 readability, cleaner catalogue and mobile polish */
.section-band,
.catalogue-page,
.fees-page,
.request-layout,
.designer-page,
.result-page,
.admin-page,
.profile-page {
  color: var(--ink);
}
.section-band p,
.catalogue-page p,
.fees-page p,
.request-layout p,
.designer-page p,
.result-page p,
.admin-page p,
.profile-page p,
.product-card p,
.catalogue-info p,
.workflow-grid p,
.reseller-price-card p {
  color: #31463c;
  opacity: 1;
}
:root[data-theme="dark"] .section-band p,
:root[data-theme="dark"] .catalogue-page p,
:root[data-theme="dark"] .fees-page p,
:root[data-theme="dark"] .request-layout p,
:root[data-theme="dark"] .designer-page p,
:root[data-theme="dark"] .result-page p,
:root[data-theme="dark"] .admin-page p,
:root[data-theme="dark"] .profile-page p,
:root[data-theme="dark"] .product-card p,
:root[data-theme="dark"] .catalogue-info p,
:root[data-theme="dark"] .workflow-grid p,
:root[data-theme="dark"] .reseller-price-card p {
  color: #e8f7ef;
}
.hero-search,
.catalogue-search,
.reseller-search {
  border: 1px solid rgba(20, 134, 83, .22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(243,250,246,.96));
  box-shadow: 0 22px 60px rgba(18, 28, 24, .16);
}
:root[data-theme="dark"] .hero-search,
:root[data-theme="dark"] .catalogue-search,
:root[data-theme="dark"] .reseller-search {
  background:
    linear-gradient(135deg, rgba(20,35,28,.98), rgba(14,29,22,.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
}
.top-search input,
.catalogue-search input,
.reseller-search input {
  min-height: 54px;
  font-size: 18px;
  font-weight: 800;
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .58);
}
:root[data-theme="dark"] .category-filter {
  background: rgba(255, 255, 255, .05);
}
.category-filter button {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card-bg);
  color: var(--ink);
  box-shadow: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .01em;
  cursor: pointer;
}
.category-filter button.active {
  border-color: rgba(20, 134, 83, .34);
  background: #148653;
  color: #fff;
}
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.product-card {
  min-height: 330px;
}
.product-card strong,
.catalogue-info h3,
.reseller-card-head strong {
  color: var(--ink);
}
.product-card span,
.catalogue-info span,
.catalogue-info small,
.catalogue-price span {
  color: #577064;
}
:root[data-theme="dark"] .product-card span,
:root[data-theme="dark"] .catalogue-info span,
:root[data-theme="dark"] .catalogue-info small,
:root[data-theme="dark"] .catalogue-price span {
  color: #b9d2c5;
}
.catalogue-group[hidden] {
  display: none;
}
.catalogue-item {
  grid-template-columns: 92px minmax(0, 1fr) minmax(120px, 160px) auto;
  min-height: 116px;
  border-radius: 12px;
}
.catalogue-thumb {
  width: 92px;
  height: 82px;
}
.catalogue-thumb img {
  max-height: 58px;
}
.catalogue-group-head {
  align-items: center;
}
.catalogue-group-head h2 {
  font-size: 30px;
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
  .site-header {
    position: relative;
    padding: 16px 5vw;
  }
  .brand img {
    max-width: 150px;
  }
  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  nav a,
  .nav-cta,
  .lang-link {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card-bg);
    color: var(--ink);
    text-align: center;
  }
  .hero,
  .catalogue-hero,
  .fees-hero,
  .designer-hero,
  .product-hero,
  .profile-hero,
  .reseller-hero {
    padding: 40px 5vw;
  }
  h1,
  .catalogue-hero h1,
  .fees-hero h1,
  .profile-hero h1,
  .reseller-hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }
  .hero-copy p,
  .catalogue-hero p:not(.eyebrow),
  .fees-hero p:not(.eyebrow),
  .profile-hero p:not(.eyebrow),
  .reseller-hero p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero-visual {
    min-height: 0;
  }
  .visual-small {
    position: static;
    width: 100%;
  }
  .intro-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 5vw;
  }
  .category-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: thin;
  }
  .category-filter button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .catalogue-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }
  .catalogue-thumb {
    width: 76px;
    height: 70px;
  }
  .catalogue-price,
  .catalogue-item .button {
    grid-column: 1 / -1;
  }
  .request-layout {
    padding: 28px 5vw;
  }
  .summary-card {
    position: static;
  }
}

@media (max-width: 520px) {
  nav {
    grid-template-columns: 1fr;
  }
  h1,
  .catalogue-hero h1,
  .fees-hero h1,
  .profile-hero h1,
  .reseller-hero h1 {
    font-size: 32px;
  }
  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button,
  button {
    width: 100%;
  }
  .category-filter button {
    width: auto;
  }
  .product-card,
  .reseller-price-card {
    min-height: 0;
  }
  .product-thumb {
    min-height: 108px;
  }
}

/* v20 printable flipbook catalogues */
.flipbook-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 64px 5vw 34px;
}
.flipbook-hero h1 {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 14px;
}
.flipbook-hero p:not(.eyebrow) {
  max-width: 820px;
  font-size: 18px;
}
.flipbook-actions,
.catalogue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.flipbook-shell {
  display: grid;
  gap: 18px;
  padding: 0 5vw 64px;
}
.flipbook-controls {
  position: sticky;
  top: 92px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 42px rgba(18, 28, 24, .10);
  backdrop-filter: blur(14px);
}
:root[data-theme="dark"] .flipbook-controls {
  background: rgba(20, 35, 28, .82);
}
.flipbook-controls span {
  min-width: 88px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}
.flipbook-controls button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.flipbook-page {
  display: none;
  min-height: 720px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(242,248,245,.94)),
    radial-gradient(circle at 92% 10%, rgba(159,202,43,.14), transparent 25%),
    radial-gradient(circle at 12% 92%, rgba(40,169,223,.12), transparent 26%);
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .flipbook-page {
  background:
    linear-gradient(135deg, rgba(20,35,28,.98), rgba(14,29,22,.96)),
    radial-gradient(circle at 92% 10%, rgba(159,202,43,.13), transparent 25%),
    radial-gradient(circle at 12% 92%, rgba(40,169,223,.12), transparent 26%);
}
.flipbook-page.is-active {
  display: grid;
  animation: flipIn .28s ease;
}
@keyframes flipIn {
  from { opacity: 0; transform: translateY(14px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cover-page {
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cover-page::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236,0,140,.20), rgba(40,169,223,.18));
  z-index: 0;
}
.cover-page > * {
  position: relative;
  z-index: 1;
}
.cover-mark {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
:root[data-theme="dark"] .cover-mark {
  background: rgba(255,255,255,.05);
}
.cover-mark img {
  max-width: 230px;
}
.cover-page h2 {
  max-width: 780px;
  font-size: 54px;
  line-height: 1;
}
.cover-page p:not(.eyebrow) {
  max-width: 700px;
  font-size: 19px;
}
.cover-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}
.flipbook-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.flipbook-page-head span {
  color: var(--muted);
  font-weight: 900;
}
.flipbook-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.flipbook-product {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  min-height: 162px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-bg);
}
.flipbook-product-img {
  display: grid;
  place-items: center;
  min-height: 116px;
  border-radius: 14px;
  background: var(--soft-bg);
}
.flipbook-product-img img {
  max-width: 86px;
  max-height: 80px;
}
.flipbook-product span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.flipbook-product h3 {
  margin-bottom: 8px;
}
.flipbook-product p {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.45;
}
.flipbook-product small {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-weight: 900;
}
.white-label {
  --green: #83b735;
  --blue: #2878b8;
  --pink: #6d7380;
  --orange: #d7a642;
  --forest: #17211b;
  --ink: #17211b;
  --text: #27332c;
  --muted: #64726b;
  --page-bg:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(242,246,244,.94)),
    radial-gradient(circle at 12% 14%, rgba(131,183,53,.14), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(40,120,184,.10), transparent 26%);
}
.white-label-symbol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
  min-height: 340px;
  padding: 46px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.white-label-symbol span {
  display: block;
  border-radius: 18px;
  background: var(--green);
}
.white-label-symbol span:nth-child(1) { height: 110px; }
.white-label-symbol span:nth-child(2) { height: 190px; background: var(--blue); }
.white-label-symbol span:nth-child(3) { height: 260px; background: #d7a642; }
.white-label-book .flipbook-product small {
  background: #edf4ef;
  color: #31463c;
}

@media (max-width: 900px) {
  .flipbook-hero {
    grid-template-columns: 1fr;
    padding: 42px 5vw 24px;
  }
  .flipbook-hero h1,
  .cover-page h2 {
    font-size: 38px;
  }
  .flipbook-page {
    min-height: 0;
    padding: 24px;
  }
  .cover-page,
  .flipbook-products {
    grid-template-columns: 1fr;
  }
  .cover-mark,
  .white-label-symbol {
    min-height: 220px;
  }
  .flipbook-product {
    grid-template-columns: 82px minmax(0, 1fr);
  }
  .flipbook-product-img {
    min-height: 90px;
  }
  .flipbook-product-img img {
    max-width: 64px;
    max-height: 62px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }
  body {
    background: #fff !important;
    color: #111 !important;
  }
  .site-header,
  .site-footer,
  .no-print,
  .flipbook-hero {
    display: none !important;
  }
  .flipbook-shell {
    display: block;
    padding: 0;
  }
  .flipbook-page,
  .flipbook-page.is-active {
    display: grid !important;
    min-height: 270mm;
    page-break-after: always;
    border: 1px solid #d8d8d8;
    box-shadow: none;
    background: #fff !important;
  }
  .flipbook-product {
    break-inside: avoid;
    background: #fff !important;
  }
  .flipbook-product p,
  .cover-page p,
  .flipbook-product span,
  .flipbook-product small {
    color: #333 !important;
  }
}

/* v21 product finder polish */
.hero-search {
  width: min(100%, 560px);
  margin-top: 22px;
}
.search-box {
  display: grid;
  gap: 9px;
}
.hero-search,
.catalogue-search,
.reseller-search {
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(159, 202, 43, .38);
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.07)),
    rgba(10, 24, 17, .72);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.hero-search .search-box,
.catalogue-search,
.reseller-search {
  color: #fff;
}
.hero-search .search-box span,
.catalogue-search span,
.reseller-search span {
  padding: 4px 8px 0;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: .10em;
}
.hero-search .search-box input,
.catalogue-search input,
.reseller-search input {
  min-height: 56px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  background:
    radial-gradient(circle at 22px 50%, transparent 0 6px, rgba(255,255,255,.82) 6px 7px, transparent 7px),
    linear-gradient(45deg, transparent 0 52%, rgba(255,255,255,.82) 52% 57%, transparent 57%),
    rgba(255,255,255,.08);
  background-size: 30px 30px, 24px 24px, auto;
  background-position: 9px center, 24px 22px, 0 0;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: inset 0 1px 8px rgba(0,0,0,.18);
}
.hero-search .search-box input::placeholder,
.catalogue-search input::placeholder,
.reseller-search input::placeholder {
  color: rgba(255,255,255,.62);
}
.catalogue-hero .catalogue-search {
  align-self: end;
  width: min(100%, 560px);
}
.product-finder {
  display: grid;
  grid-template-columns: minmax(210px, 290px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin: 4px 0 28px;
  padding: 14px;
  border: 1px solid rgba(159, 202, 43, .24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    rgba(13, 31, 22, .72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .18);
}
.finder-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(159,202,43,.20), rgba(40,169,223,.10));
}
.finder-copy span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.finder-copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.12;
}
.product-finder .category-filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.product-finder .category-filter button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  justify-content: center;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.15;
  white-space: normal;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.product-finder .category-filter button:hover {
  border-color: rgba(159, 202, 43, .45);
  color: #fff;
}
.product-finder .category-filter button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), #148653);
  color: #07150f;
  box-shadow: 0 12px 26px rgba(159, 202, 43, .20);
}
.product-grid {
  gap: 20px;
}
.product-card {
  min-height: 350px;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(18, 39, 28, .96);
  border-color: rgba(255,255,255,.10);
}
.product-card::before {
  height: 3px;
  opacity: 1;
}
.product-thumb {
  height: 126px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 18%, rgba(159,202,43,.20), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,241,236,.92));
}
.product-thumb img {
  max-height: 86px;
}
.product-card span {
  color: rgba(185, 210, 197, .86);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.product-card strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.08;
}
.product-card p {
  color: rgba(232, 247, 239, .78) !important;
  font-size: 14px;
  line-height: 1.45;
}
.price-row small {
  padding: 8px 11px;
  background: rgba(255,255,255,.10);
  color: #fff;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(159, 202, 43, .38);
  box-shadow: 0 24px 62px rgba(0,0,0,.26);
}
.home-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 24px;
}
.home-category-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card-bg);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}
.home-category-strip a:hover,
.home-category-strip a.is-strong {
  border-color: rgba(20, 134, 83, .28);
  background: #148653;
  color: #fff;
}
.business-needs-strip,
.business-needs-panel {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 0 0 28px;
  padding: 14px;
  border: 1px solid rgba(159, 202, 43, .24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    rgba(13, 31, 22, .72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .16);
}
.business-needs-strip > div,
.business-needs-panel .finder-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(159,202,43,.20), rgba(236,0,140,.10));
}
.business-needs-strip > div {
  grid-row: 1 / span 3;
}
.business-needs-strip h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.18;
}
.business-needs-strip .eyebrow {
  margin: 0;
}
.business-needs-strip > a,
.business-need-buttons button {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  color: #fff;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.business-needs-strip > a:hover,
.business-need-buttons button:hover {
  border-color: rgba(159, 202, 43, .50);
  transform: translateY(-2px);
}
.business-needs-strip strong {
  color: #fff;
  font-size: 16px;
}
.business-needs-strip span {
  color: rgba(232, 247, 239, .72);
  font-size: 13px;
  line-height: 1.35;
}
.business-need-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}
.business-need-buttons button {
  min-height: 64px;
  justify-content: start;
  font-size: 13px;
}
.popular-product-strip {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 0 0 24px;
  padding: 14px;
  border: 1px solid rgba(40, 169, 223, .28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(40,169,223,.10), rgba(159,202,43,.06)),
    rgba(13, 31, 22, .72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .14);
}
.popular-product-strip .finder-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(40,169,223,.18), rgba(159,202,43,.12)),
    rgba(17, 39, 28, .84);
}
.popular-product-strip .finder-copy span {
  color: #8ff0b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.popular-product-strip .finder-copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.18;
}
.popular-product-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.popular-product-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  align-content: center;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    rgba(17, 39, 28, .98);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.popular-product-links a:hover {
  border-color: rgba(159, 202, 43, .54);
  transform: translateY(-2px);
}
.popular-product-links span {
  grid-column: 1 / -1;
  color: #8ff0b8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.popular-product-links strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.16;
}
.popular-product-links small {
  justify-self: end;
  align-self: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}
.featured-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.featured-product-card {
  min-height: 286px;
}

@media (max-width: 900px) {
  .product-finder {
    grid-template-columns: 1fr;
  }
  .business-needs-strip,
  .business-needs-panel,
  .popular-product-strip {
    grid-template-columns: 1fr;
  }
  .business-needs-strip > div {
    grid-row: auto;
  }
  .product-finder .category-filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .popular-product-links {
    grid-template-columns: 1fr;
  }
  .product-finder .category-filter button {
    flex: 0 0 auto;
    min-width: 150px;
    white-space: normal;
  }
  .catalogue-hero .catalogue-search,
  .hero-search {
    width: 100%;
  }
  .featured-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-search,
  .catalogue-search,
  .reseller-search,
  .product-finder {
    border-radius: 16px;
  }
  .finder-copy {
    min-height: 0;
  }
  .product-card {
    min-height: 0;
  }
  .featured-product-grid {
    grid-template-columns: 1fr;
  }
}

/* v22 trust pages, clickable feature strip and footer */
.intro-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .90);
  font-size: 13px;
  font-weight: 900;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.intro-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(159,202,43,.55);
  background: rgba(255,255,255,.07);
}
.trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 64px 5vw 40px;
  background:
    linear-gradient(135deg, rgba(8,19,13,.96), rgba(18,42,30,.94)),
    radial-gradient(circle at 86% 18%, rgba(159,202,43,.16), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(40,169,223,.13), transparent 28%);
  color: #fff;
}
.trust-hero h1 {
  max-width: 900px;
  color: #fff;
  font-size: 54px;
}
.trust-hero p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-page,
.legal-page {
  padding: 56px 5vw;
  background: var(--section-bg);
}
.trust-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.payment-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.trust-grid article,
.payment-grid article,
.trust-card,
.legal-page article,
.trust-note {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: 0 18px 46px rgba(18, 28, 24, .08);
}
.trust-grid article span,
.payment-grid article span,
.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 12px;
  font-weight: 900;
}
.trust-grid article a,
.footer-links a,
.footer-social a {
  color: rgba(255,255,255,.78);
  font-weight: 800;
}
.trust-grid article a {
  color: #148653;
}
.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 22px;
  align-items: start;
}
.trust-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}
.trust-form .full-span,
.trust-form button {
  grid-column: 1 / -1;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.order-detail-list {
  display: grid;
  gap: 10px;
}
.order-detail-list div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 12px;
  background: var(--soft-bg);
}
.order-detail-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.muted-pill {
  background: rgba(40,169,223,.13);
}
.legal-page {
  display: grid;
  gap: 16px;
}
.legal-page article {
  max-width: 980px;
}
.trust-note {
  margin-top: 20px;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-row a {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-weight: 900;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, .7fr)) minmax(230px, .95fr);
  gap: 26px;
  align-items: start;
  padding: 42px 5vw;
}
.site-footer div,
.site-footer form {
  display: grid;
  gap: 8px;
}
.site-footer strong {
  color: #fff;
}
.site-footer span,
.site-footer a {
  color: rgba(255,255,255,.72);
}
.site-footer a:hover {
  color: #fff;
}
.footer-newsletter input {
  min-height: 42px;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.footer-newsletter input::placeholder {
  color: rgba(255,255,255,.55);
}
.footer-newsletter button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: #07150f;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .trust-hero,
  .portal-layout {
    grid-template-columns: 1fr;
  }
  .payment-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .trust-hero h1 {
    font-size: 36px;
  }
  .payment-grid,
  .trust-grid,
  .trust-form,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .trust-form .full-span,
  .trust-form button {
    grid-column: auto;
  }
}

/* v26 client and reseller portal */
.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
  padding: 76px 5vw;
  background:
    linear-gradient(135deg, rgba(7, 19, 13, .96), rgba(18, 42, 30, .93)),
    radial-gradient(circle at 14% 20%, rgba(159, 202, 43, .20), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(40, 169, 223, .15), transparent 28%),
    radial-gradient(circle at 72% 86%, rgba(236, 0, 140, .12), transparent 26%);
  color: #fff;
}
.portal-hero.compact {
  padding-top: 58px;
  padding-bottom: 50px;
}
.portal-hero h1 {
  max-width: 940px;
  color: #fff;
  font-size: 52px;
}
.portal-hero p:not(.eyebrow) {
  max-width: 850px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}
.portal-wallet-card,
.portal-lookup-card,
.client-status-card,
.portal-type-card,
.loyalty-rules article,
.order-insight-grid article,
.portal-empty-state {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(17, 39, 28, .94);
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
}
.portal-wallet-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 28px;
  border-top: 4px solid var(--green);
  overflow: hidden;
}
.portal-wallet-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(159, 202, 43, .82);
  border-radius: 999px;
  background:
    url("mi-coin-emblem.svg") center / 34px 34px no-repeat,
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.34), transparent 26%),
    linear-gradient(135deg, #9fca2b, #28a9df);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.portal-wallet-card span,
.portal-lookup-card span,
.client-status-card > span,
.portal-type-card > span,
.order-insight-grid span,
.loyalty-rules span,
.portal-order-row span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.portal-wallet-card strong {
  color: #fff;
  font-size: 31px;
  line-height: 1.05;
}
.portal-wallet-card p,
.portal-wallet-card em {
  color: rgba(255,255,255,.75);
}
.portal-wallet-card em {
  font-style: normal;
  font-weight: 900;
}
.portal-page {
  color: #102018;
  padding: 56px 5vw;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(244,249,246,.94)),
    radial-gradient(circle at 92% 10%, rgba(40,169,223,.08), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(159,202,43,.10), transparent 30%);
}
.portal-page h1,
.portal-page h2,
.portal-page h3,
.portal-page strong,
.portal-page b {
  color: #102018;
}
.portal-page p,
.portal-page small {
  color: #34473d;
  opacity: 1;
}
.portal-page .portal-section-head p:not(.eyebrow),
.portal-page .portal-empty-state p,
.portal-page .portal-type-card p,
.portal-page .client-status-card p,
.portal-page .portal-lookup-card p,
.portal-page .loyalty-rules p {
  color: #34473d;
  opacity: 1;
}
.portal-page .portal-type-card,
.portal-page .portal-lookup-card,
.portal-page .client-status-card,
.portal-page .loyalty-rules article,
.portal-page .order-insight-grid article,
.portal-page .portal-empty-state {
  border-color: rgba(16, 32, 24, .14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,246,.98));
  box-shadow: 0 18px 46px rgba(18, 28, 24, .08);
}
.portal-page .portal-type-card > span,
.portal-page .portal-lookup-card > span,
.portal-page .client-status-card > span,
.portal-page .order-insight-grid span,
.portal-page .loyalty-rules span,
.portal-page .portal-order-row span,
.portal-page .portal-section-head .eyebrow {
  color: #148653;
}
.portal-page .button.secondary {
  background: #eef5f1;
  color: #17382a;
  border: 1px solid rgba(16, 32, 24, .14);
}
:root[data-theme="dark"] .portal-page {
  background:
    linear-gradient(180deg, rgba(11,23,17,.98), rgba(14,31,23,.96)),
    radial-gradient(circle at 92% 10%, rgba(40,169,223,.10), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(159,202,43,.09), transparent 30%);
}
.portal-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.portal-type-card {
  min-height: 280px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  background: var(--card-bg);
  border-color: var(--line);
  box-shadow: 0 18px 46px rgba(18, 28, 24, .08);
}
.portal-type-card h2,
.portal-type-card p {
  margin: 0;
}
.portal-type-card .button {
  align-self: end;
  width: fit-content;
  margin-top: auto;
}
.portal-type-card.accent-green { border-top: 5px solid var(--green); }
.portal-type-card.accent-blue { border-top: 5px solid var(--blue); }
.portal-type-card.accent-pink { border-top: 5px solid var(--pink); }
.portal-type-card.accent-orange { border-top: 5px solid var(--orange); }
.account-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.account-choice-card {
  min-height: 320px;
}
.guest-order-card {
  background:
    linear-gradient(135deg, rgba(159,202,43,.13), rgba(255,255,255,.78)),
    var(--card-bg);
}
.legal-long-form {
  grid-template-columns: 1fr;
}
.legal-long-form article {
  max-width: 1080px;
}
.portal-section-head {
  max-width: 820px;
  margin: 40px 0 18px;
}
.portal-section-head p:not(.eyebrow) {
  max-width: 760px;
}
.stage-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 28px;
}
.stage-step {
  position: relative;
  min-height: 84px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card-bg);
}
.stage-step b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--soft-bg);
  color: var(--text);
}
.stage-step span {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}
.stage-step.is-active {
  border-color: rgba(20, 134, 83, .32);
  background:
    linear-gradient(135deg, rgba(159,202,43,.14), rgba(40,169,223,.08)),
    var(--card-bg);
  box-shadow: 0 14px 34px rgba(20,134,83,.10);
}
.stage-step.is-active b {
  background: #148653;
  color: #fff;
}
.workflow-track .stage-step:first-child b,
.status-received .stage-step.is-active b { background: var(--blue); }
.status-offer .stage-step.is-active b { background: var(--pink); }
.status-payment .stage-step.is-active b { background: var(--orange); }
.status-production .stage-step.is-active b { background: #148653; }
.status-delivered .stage-step.is-active b { background: var(--green); color: #07150f; }
.loyalty-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.loyalty-rules article {
  gap: 10px;
  align-content: start;
  padding: 24px;
  background: var(--card-bg);
  border-color: var(--line);
  box-shadow: 0 18px 46px rgba(18, 28, 24, .08);
}
.loyalty-rules strong {
  font-size: 28px;
}
.loyalty-rules p {
  margin: 0;
}
.client-order-layout {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.portal-lookup-card,
.client-status-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--card-bg);
  border-color: var(--line);
  box-shadow: 0 18px 46px rgba(18, 28, 24, .08);
}
.portal-lookup-card label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}
.portal-lookup-card input {
  min-height: 48px;
}
.client-status-card h2,
.client-status-card p {
  margin: 0;
}
.client-status-card .stage-track {
  margin-bottom: 0;
}
.order-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.order-help-grid article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 172px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 16px 38px rgba(18, 28, 24, .07);
}
.order-help-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.order-help-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}
.order-help-grid p {
  margin: 0;
  font-size: 14px;
}
.order-help-grid .button {
  justify-self: start;
  min-height: 40px;
  margin-top: 4px;
  padding: 10px 14px;
}
.order-insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.order-insight-grid article {
  display: grid;
  gap: 8px;
  min-height: 120px;
  align-content: center;
  padding: 20px;
  background: var(--card-bg);
  border-color: var(--line);
  box-shadow: 0 16px 38px rgba(18, 28, 24, .07);
}
.order-insight-grid strong {
  font-size: 25px;
  line-height: 1.08;
}
.portal-order-list {
  display: grid;
  gap: 12px;
}
.portal-order-row {
  --status-color: var(--blue);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 150px;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--status-color);
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: 0 14px 34px rgba(18, 28, 24, .06);
}
.portal-order-row.status-offer { --status-color: var(--pink); }
.portal-order-row.status-payment { --status-color: var(--orange); }
.portal-order-row.status-production { --status-color: #148653; }
.portal-order-row.status-delivered { --status-color: var(--green); }
.portal-order-row strong,
.portal-order-row small {
  display: block;
}
.portal-order-row strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 18px;
}
.portal-order-row small {
  margin-top: 5px;
  color: var(--muted);
}
.portal-order-row em {
  justify-self: start;
  padding: 8px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--status-color) 15%, transparent);
  color: var(--text);
  font-style: normal;
  font-weight: 900;
}
.portal-order-row b {
  justify-self: end;
  color: var(--ink);
  font-size: 18px;
}
.portal-empty-state {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--card-bg);
  border-color: var(--line);
  box-shadow: 0 16px 38px rgba(18, 28, 24, .06);
}
.portal-empty-state p {
  margin: 0;
}
.reseller-stats {
  margin-top: 24px;
}
.reseller-portal-page .profile-detail-grid {
  margin-bottom: 0;
}
.reseller-order-list {
  margin-bottom: 34px;
}

@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .portal-order-row em {
    background: var(--soft-bg);
  }
}

@media (max-width: 1100px) {
  .portal-hero,
  .client-order-layout {
    grid-template-columns: 1fr;
  }
  .portal-dashboard-grid,
  .account-choice-grid,
  .loyalty-rules,
  .order-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .portal-hero {
    padding: 48px 5vw;
  }
  .portal-hero h1 {
    font-size: 35px;
  }
  .portal-dashboard-grid,
  .account-choice-grid,
  .loyalty-rules,
  .order-insight-grid,
  .stage-track,
  .portal-order-row {
    grid-template-columns: 1fr;
  }
  .portal-order-row em,
  .portal-order-row b {
    justify-self: start;
  }
  .stage-step {
    min-height: 66px;
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

/* v29 stronger dark-mode readability */
.hero-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.visual-story p,
.workflow-grid p,
.split-section p,
.process-card p,
.business-needs-strip span,
.product-card p,
.site-footer span,
.site-footer a,
.intro-strip a {
  color: rgba(246, 255, 250, .88) !important;
}

.section-band .section-heading p:not(.eyebrow),
.workflow-section .section-heading p:not(.eyebrow) {
  color: rgba(246, 255, 250, .82) !important;
}

.workflow-grid div,
.split-section > article,
.process-card,
.business-needs-strip > a,
.business-needs-strip > div {
  border-color: rgba(255, 255, 255, .18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)),
    rgba(17, 39, 28, .98);
}

.workflow-grid h3,
.split-section h2,
.process-card strong,
.business-needs-strip h3,
.business-needs-strip strong,
.site-footer strong {
  color: #fff !important;
}

.product-card span {
  color: rgba(220, 239, 230, .94) !important;
}

.product-card p {
  color: rgba(246, 255, 250, .88) !important;
}

/* v56 portal/home readability sweep */
.home-category-strip a {
  border-color: rgba(255, 255, 255, .22) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
    rgba(17, 39, 28, .96) !important;
  color: #f7fff9 !important;
}

.home-category-strip a:hover,
.home-category-strip a.is-strong {
  border-color: rgba(159, 202, 43, .62) !important;
  background: #148653 !important;
  color: #fff !important;
}

.business-needs-strip .eyebrow,
.business-needs-panel .eyebrow {
  color: #8ff0b8 !important;
}

.business-needs-strip > div,
.business-needs-strip > a,
.business-needs-panel .finder-copy {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 16px 38px rgba(0,0,0,.18);
}

.portal-page .portal-section-head h2,
.portal-page .portal-section-head h3 {
  color: #f7fff9 !important;
}

.portal-page .portal-section-head p:not(.eyebrow) {
  color: rgba(246,255,250,.82) !important;
}

.reseller-portal-page .profile-detail-grid article,
.reseller-portal-page .stage-step {
  border-color: rgba(255,255,255,.18) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)),
    rgba(17, 39, 28, .98) !important;
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.reseller-portal-page .profile-detail-grid span,
.reseller-portal-page .stage-step span {
  color: rgba(246,255,250,.92) !important;
}

.reseller-portal-page .profile-detail-grid strong,
.reseller-portal-page .stage-step b {
  color: #fff !important;
}

.reseller-portal-page .profile-detail-grid span,
.reseller-portal-page .portal-section-head .eyebrow,
.reseller-portal-page .order-insight-grid span,
.reseller-portal-page .loyalty-rules span {
  color: #14a86a !important;
}

.reseller-portal-page .stage-step b {
  background: rgba(255,255,255,.12) !important;
}

.reseller-portal-page .stage-step.is-active {
  border-color: rgba(159,202,43,.42) !important;
  background:
    linear-gradient(135deg, rgba(159,202,43,.20), rgba(40,169,223,.10)),
    rgba(17,39,28,.98) !important;
}

.reseller-portal-page .stage-step.is-active b,
.reseller-portal-page .workflow-track .stage-step:first-child b {
  background: #148653 !important;
  color: #fff !important;
}

.price-row small,
.product-card .button {
  color: #fff !important;
}

.eyebrow {
  color: #50d294;
}

.site-footer {
  background: #06130d;
}

.footer-newsletter input {
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: rgba(255,255,255,.76);
}

/* v30 account page contrast and clearer steps */
.account-choice-page {
  color: #102018;
  background:
    linear-gradient(180deg, #f7faf8 0%, #eaf1ee 56%, #f7faf8 100%),
    radial-gradient(circle at 12% 12%, rgba(159, 202, 43, .16), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(40, 169, 223, .12), transparent 32%);
}

.account-choice-page,
.account-choice-page .portal-section-head,
.account-status-strip,
.account-choice-grid,
.account-choice-page .stage-track {
  position: relative;
  z-index: 1;
}

.account-choice-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(247, 250, 248, .98), rgba(234, 241, 238, .98) 54%, rgba(247, 250, 248, .98)),
    radial-gradient(circle at 16% 18%, rgba(159, 202, 43, .14), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(40, 169, 223, .12), transparent 30%);
  pointer-events: none;
}

.account-choice-page .portal-section-head h2 {
  color: #102018 !important;
  text-shadow: none !important;
}

.account-choice-page .portal-section-head p:not(.eyebrow) {
  color: #34473d !important;
  font-size: 17px;
  line-height: 1.72;
  opacity: 1 !important;
  text-shadow: none !important;
}

.account-choice-page .portal-section-head .eyebrow,
.account-choice-card > span,
.account-steps .stage-step b {
  color: #148653 !important;
}

.account-status-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.account-status-strip div {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 24, .14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 28, 24, .08);
}

.account-status-strip span {
  color: #148653;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.account-status-strip strong {
  color: #102018;
  line-height: 1.35;
}

.account-choice-card {
  border-color: rgba(16, 32, 24, .16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,249,246,.98));
  box-shadow: 0 22px 58px rgba(16, 32, 24, .16);
}

.account-choice-card h2 {
  color: #102018 !important;
}

.account-choice-card p {
  color: #34473d !important;
  font-size: 16px;
  opacity: 1 !important;
}

.guest-order-card {
  background:
    linear-gradient(135deg, rgba(159,202,43,.20), rgba(255,255,255,.98));
}

.account-choice-card .button.secondary {
  background: #eef5f1;
  color: #17382a;
  border: 1px solid rgba(16, 32, 24, .14);
}

.account-choice-card .button {
  color: #fff;
}

.account-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.account-steps .stage-step {
  min-height: 178px;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-color: rgba(16, 32, 24, .14);
  background:
    linear-gradient(180deg, #ffffff, #f5faf7);
  box-shadow: 0 16px 38px rgba(18, 28, 24, .08);
}

.account-steps .stage-step:nth-child(2) { border-top: 4px solid var(--blue); }
.account-steps .stage-step:nth-child(3) { border-top: 4px solid var(--pink); }
.account-steps .stage-step:nth-child(4) { border-top: 4px solid var(--orange); }
.account-steps .stage-step:nth-child(5) { border-top: 4px solid var(--green); }

.account-steps .stage-step.is-active {
  border-top: 4px solid var(--green);
  background:
    linear-gradient(135deg, rgba(159,202,43,.16), rgba(255,255,255,.96));
}

.account-steps .stage-step span {
  color: #102018;
  font-size: 17px;
  line-height: 1.18;
}

.account-steps .stage-step small {
  color: #40524a;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .account-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .account-status-strip {
    grid-template-columns: 1fr;
  }
  .account-steps {
    grid-template-columns: 1fr;
  }
  .account-steps .stage-step {
    min-height: 0;
  }
}

.launch-check-page {
  width: min(100% - 32px, 1180px);
  margin: 28px auto 60px;
  display: grid;
  gap: 18px;
}

.launch-check-hero,
.launch-check-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(18, 28, 24, .08);
}

.launch-check-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.launch-check-grid,
.launch-stats,
.launch-template-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.launch-check-grid article,
.launch-stats div,
.launch-template-grid article {
  min-height: 110px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.launch-check-grid article.is-ok {
  border-color: rgba(20, 134, 83, .35);
  background: #f0fbf5;
}

.launch-check-grid article.is-warning {
  border-color: rgba(255, 127, 24, .35);
  background: #fff7ef;
}

.launch-check-grid span,
.launch-stats span {
  display: block;
  margin-bottom: 8px;
  color: #148653;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-stats strong {
  font-size: 32px;
}

.launch-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
  padding-left: 22px;
  color: var(--text);
  font-weight: 800;
}

.coverage-table {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.coverage-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.25fr) minmax(140px, .85fr) minmax(120px, .65fr) minmax(90px, .5fr) minmax(170px, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.coverage-row.coverage-head {
  min-height: 0;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.coverage-row.is-ok {
  border-color: rgba(20, 134, 83, .28);
}
.coverage-row.is-warning {
  border-color: rgba(255, 127, 24, .38);
  background: #fff8ef;
}
.coverage-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.coverage-row strong,
.coverage-row small {
  display: block;
}
.coverage-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}
.email-path-table .coverage-row {
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
}

.drive-handoff-page .launch-stats {
  margin-bottom: 20px;
}

.drive-handoff-list {
  display: grid;
  gap: 14px;
}

.drive-handoff-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 24, .12);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
}

.drive-handoff-card.is-pending {
  border-left-color: var(--orange);
}

.drive-handoff-card.is-done {
  border-left-color: #148653;
}

.drive-handoff-card h3 {
  margin: 5px 0 8px;
  font-size: 1.2rem;
}

.drive-handoff-card p {
  margin: 4px 0;
  color: var(--muted);
}

.drive-handoff-card code {
  display: block;
  margin-top: 10px;
  padding: 10px;
  overflow-wrap: anywhere;
  border-radius: 10px;
  background: rgba(16, 32, 24, .06);
  color: var(--forest);
}

.drive-handoff-form {
  display: grid;
  align-content: end;
  gap: 10px;
}

.drive-handoff-form label {
  display: grid;
  gap: 6px;
  color: var(--forest);
  font-weight: 900;
}

.drive-handoff-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.alert.is-success {
  border-color: rgba(20, 134, 83, .22);
  background: rgba(20, 134, 83, .1);
  color: #0e6f45;
}

.ops-command-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 14px;
}

.ops-command-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.ops-command-grid span {
  color: #148653;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-command-grid code {
  display: block;
  padding: 12px;
  overflow-wrap: anywhere;
  border-radius: 10px;
  background: #102018;
  color: #eafff4;
}

.ops-command-grid small {
  color: var(--muted);
  font-weight: 800;
}

.launch-template-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-launch-note,
.payment-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 22px;
}

.payment-launch-note > div,
.payment-checklist > div {
  background: #f8fbf8;
  border: 1px solid rgba(12, 92, 58, 0.16);
  border-radius: 8px;
  padding: 18px;
}

.payment-launch-note span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}

.payment-launch-note strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.payment-launch-note p,
.payment-checklist li {
  color: var(--muted);
}

.payment-checklist ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.payment-checklist li + li {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .launch-check-grid,
  .launch-stats,
  .launch-template-grid,
  .payment-launch-note,
  .payment-checklist {
    grid-template-columns: 1fr;
  }

  .coverage-row,
  .email-path-table .coverage-row {
    grid-template-columns: 1fr;
  }

  .drive-handoff-card {
    grid-template-columns: 1fr;
  }

  .ops-command-grid {
    grid-template-columns: 1fr;
  }
}

/* v31 premium compact footer */
.site-footer {
  grid-template-columns: minmax(240px, 1.25fr) minmax(150px, .65fr) minmax(180px, .75fr) minmax(140px, .5fr) minmax(250px, .9fr) !important;
  gap: 20px !important;
  padding: 34px 5vw !important;
  background:
    linear-gradient(135deg, #06130d, #0a1d14 58%, #07150f) !important;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer > div,
.site-footer > form {
  align-content: start;
  gap: 7px !important;
}

.site-footer strong {
  color: #fff !important;
  font-size: 13px;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.site-footer span,
.site-footer a {
  color: rgba(246,255,250,.78) !important;
  font-size: 14px;
  line-height: 1.35;
}

.site-footer a:hover {
  color: #fff !important;
}

.footer-social {
  gap: 11px !important;
}

.social-icon-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.90) !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

.social-facebook:hover { border-color: #3b82f6; }
.social-instagram:hover { border-color: #ec008c; }
.social-youtube:hover { border-color: #ff3b30; }
.social-linkedin:hover { border-color: #28a9df; }

.footer-newsletter {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}

.footer-newsletter input {
  min-height: 40px;
}

.footer-newsletter button {
  min-height: 40px;
}

@media (max-width: 1100px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .site-footer {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .social-icon-row {
    gap: 10px;
  }
}

/* v33 cleaner footer with clickable contact actions */
.site-footer {
  display: block !important;
  padding: 30px 5vw !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(159,202,43,.12), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(40,169,223,.10), transparent 25%),
    linear-gradient(135deg, #04100a, #071a11 56%, #04100a) !important;
}

.footer-main-card {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(340px, 1fr) minmax(280px, .88fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1520px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(6, 19, 13, .86);
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
}

.footer-brand,
.footer-link-grid,
.footer-newsletter,
.footer-social,
.footer-contact-actions {
  display: grid !important;
}

.footer-brand {
  gap: 16px !important;
  align-content: start;
}

.footer-logo-lockup {
  display: flex !important;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.footer-logo-lockup img {
  width: 78px;
  height: auto;
}

.footer-logo-lockup span {
  display: grid !important;
  gap: 4px;
}

.footer-logo-lockup strong {
  color: #fff !important;
  font-size: 18px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.footer-logo-lockup em {
  max-width: 320px;
  color: rgba(246,255,250,.72);
  font-style: normal;
  font-size: 13px;
  line-height: 1.35;
}

.footer-contact-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px !important;
}

.footer-contact-link {
  display: grid !important;
  gap: 5px;
  min-height: 78px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.footer-contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(159,202,43,.45);
  background: rgba(255,255,255,.085);
}

.footer-contact-link b {
  color: var(--green);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-contact-link span {
  color: rgba(246,255,250,.92) !important;
  font-size: 14px !important;
  line-height: 1.35;
}

.footer-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px !important;
  padding: 3px 4px;
}

.footer-links {
  display: grid !important;
  gap: 9px !important;
  align-content: start;
}

.footer-links strong,
.footer-newsletter > strong,
.footer-social > strong {
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.footer-links a {
  width: fit-content;
  color: rgba(246,255,250,.78) !important;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1.25;
}

.footer-links a:hover {
  color: #fff !important;
  text-decoration: underline;
  text-decoration-color: rgba(159,202,43,.72);
  text-underline-offset: 5px;
}

.footer-newsletter {
  gap: 13px !important;
  padding: 18px !important;
  border-radius: 16px !important;
  background:
    linear-gradient(135deg, rgba(159,202,43,.12), rgba(40,169,223,.06)),
    rgba(255,255,255,.045) !important;
}

.footer-newsletter span {
  color: rgba(246,255,250,.78) !important;
  font-size: 14px !important;
}

.footer-consent-note {
  display: block;
  color: rgba(246,255,250,.66) !important;
  font-size: 11px !important;
  font-weight: 700;
  line-height: 1.45;
}

.footer-newsletter-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px !important;
}

.footer-newsletter-row input {
  min-height: 42px;
  border-radius: 11px;
}

.footer-newsletter-row button {
  min-height: 42px;
  white-space: nowrap;
}

.footer-social {
  grid-template-columns: auto 1fr;
  gap: 12px !important;
  align-items: center;
  padding-top: 3px;
}

.social-icon-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 9px !important;
}

.social-icon {
  width: 36px !important;
  height: 36px !important;
}

@media (max-width: 1200px) {
  .footer-main-card {
    grid-template-columns: 1fr 1fr;
  }
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 18px !important;
  }
  .footer-main-card,
  .footer-link-grid,
  .footer-contact-actions,
  .footer-newsletter-row {
    grid-template-columns: 1fr;
  }
  .footer-main-card {
    padding: 16px;
    gap: 18px;
  }
  .footer-logo-lockup img {
    width: 66px;
  }
  .footer-social {
    grid-template-columns: 1fr;
  }
}

/* v35 public sitemap and SEO map */
.sitemap-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 72px 5vw 48px;
  background:
    linear-gradient(135deg, rgba(7, 19, 13, .96), rgba(18, 42, 30, .92)),
    radial-gradient(circle at 14% 22%, rgba(159, 202, 43, .20), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(40, 169, 223, .16), transparent 30%);
  border-bottom: 8px solid transparent;
  border-image: linear-gradient(90deg, var(--green), var(--blue), var(--pink), var(--orange)) 1;
}

.sitemap-hero h1 {
  max-width: 840px;
  color: #fff;
  font-size: 52px;
}

.sitemap-hero p:not(.eyebrow) {
  max-width: 840px;
  color: rgba(246, 255, 250, .78);
  font-size: 18px;
}

.sitemap-page {
  padding: 44px 5vw 64px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(246,250,248,.96)),
    radial-gradient(circle at 92% 12%, rgba(40,169,223,.09), transparent 28%);
}

:root[data-theme="dark"] .sitemap-page {
  background:
    linear-gradient(180deg, rgba(11,23,17,.98), rgba(14,31,23,.96)),
    radial-gradient(circle at 92% 12%, rgba(40,169,223,.10), transparent 28%);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .85fr) minmax(280px, .85fr);
  gap: 18px;
  margin-bottom: 34px;
}

.sitemap-panel,
.sitemap-product-group {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: 0 18px 46px rgba(18, 28, 24, .07);
  overflow: hidden;
}

.sitemap-panel {
  padding: 22px;
}

.sitemap-panel > span,
.sitemap-product-group span {
  color: #148653;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.sitemap-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.sitemap-link-list.compact {
  grid-template-columns: 1fr;
}

.sitemap-link-list a {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(159,202,43,.08), rgba(40,169,223,.04)),
    var(--soft-bg);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.sitemap-link-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(20,134,83,.34);
  box-shadow: 0 14px 34px rgba(18, 28, 24, .08);
}

.sitemap-link-list strong {
  color: var(--ink);
  font-size: 17px;
}

.sitemap-link-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sitemap-section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.sitemap-products {
  display: grid;
  gap: 14px;
}

.sitemap-product-group {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px;
}

.sitemap-product-group h3 {
  margin: 8px 0 0;
  font-size: 22px;
}

.sitemap-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.sitemap-product-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft-bg);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.sitemap-product-links a:hover {
  border-color: rgba(20,134,83,.34);
  background: rgba(159,202,43,.14);
  color: var(--ink);
}

@media (max-width: 1120px) {
  .sitemap-grid,
  .sitemap-product-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .sitemap-hero {
    grid-template-columns: 1fr;
    padding: 48px 5vw 38px;
  }
  .sitemap-hero h1 {
    font-size: 36px;
  }
  .sitemap-link-list {
    grid-template-columns: 1fr;
  }
}

/* v49 commerce readability guardrails */
.catalogue-page,
.request-layout {
  color: #102018;
}

.catalogue-page h1,
.catalogue-page h2,
.catalogue-page h3,
.catalogue-page strong,
.request-layout h1,
.request-layout h2,
.request-layout h3,
.request-layout strong,
.product-card strong,
.catalogue-item strong,
.summary-card strong,
.choice-panel legend {
  color: #102018 !important;
}

.catalogue-page p,
.catalogue-page small,
.request-layout p,
.request-layout small,
.product-card p,
.catalogue-info p,
.shop-proof-grid span,
.conversion-strip span,
.check-row span,
.summary-card .muted,
.specs-callout p {
  color: #34473d !important;
  opacity: 1 !important;
}

.product-card span,
.catalogue-info span,
.catalogue-info small,
.catalogue-price span,
.summary-card span,
.finder-copy span,
.catalogue-group-head span {
  color: #52695f !important;
}

.product-card,
.catalogue-item,
.request-form,
.summary-card,
.choice-panel,
.specs-callout,
.business-needs-panel,
.product-finder,
.shop-proof-grid div,
.conversion-strip div,
.catalogue-search,
.reseller-search,
.hero-search {
  border-color: rgba(16, 32, 24, .14) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,246,.98)) !important;
  color: #102018 !important;
}

.product-card::before {
  opacity: .16 !important;
}

.request-form input,
.request-form select,
.request-form textarea,
.trust-form input,
.trust-form select,
.trust-form textarea,
.catalogue-search input,
.reseller-search input,
.hero-search input {
  background: #fff !important;
  color: #102018 !important;
  border-color: rgba(16, 32, 24, .18) !important;
}

.request-form input::placeholder,
.request-form textarea::placeholder,
.trust-form input::placeholder,
.trust-form textarea::placeholder,
.catalogue-search input::placeholder,
.reseller-search input::placeholder,
.hero-search input::placeholder {
  color: #6b7d74 !important;
  opacity: 1 !important;
}

.price-row small,
.product-card .button,
.catalogue-item .button {
  color: #fff !important;
}

.summary-card .button.secondary,
.catalogue-actions .button.secondary {
  background: #eef5f1 !important;
  color: #17382a !important;
  border: 1px solid rgba(16, 32, 24, .14) !important;
}

/* v52 compact catalogue */
.catalogue-page {
  gap: 18px !important;
  padding-top: 28px !important;
}

.catalogue-compact-bar {
  position: sticky;
  top: 78px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(180px, .25fr) minmax(320px, .35fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(16, 32, 24, .14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,246,.98));
  box-shadow: 0 16px 38px rgba(18, 28, 24, .10);
}

.catalogue-compact-bar span,
.catalogue-compact-bar b {
  color: #148653;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.catalogue-compact-bar strong {
  display: block;
  color: #102018 !important;
  line-height: 1.25;
}

.catalogue-compact-bar em {
  display: block;
  margin-top: 5px;
  color: #4d6258 !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.catalogue-view-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalogue-view-tools button,
.catalogue-group-toggle {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(16, 32, 24, .16);
  border-radius: 999px;
  background: #fff;
  color: #102018;
  box-shadow: none;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.catalogue-group-toggle {
  min-width: 126px;
}

.catalogue-view-tools button.active,
.catalogue-view-tools button:hover,
.catalogue-group-toggle:hover {
  border-color: #148653;
  background: #148653;
  color: #fff;
}

.catalogue-jump-links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.catalogue-jump-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(20, 134, 83, .22);
  border-radius: 999px;
  background: #eef5f1;
  color: #102018 !important;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.catalogue-jump-links a.active,
.catalogue-jump-links a:hover {
  border-color: #148653;
  background: #148653;
  color: #fff !important;
}

.catalogue-filter-sticky {
  position: sticky;
  top: 164px;
  z-index: 11;
  gap: 12px !important;
  padding: 13px !important;
  box-shadow: 0 16px 38px rgba(18, 28, 24, .08);
}

.catalogue-category-filter {
  max-height: 106px;
  overflow: auto;
  align-content: start;
}

.catalogue-category-filter button {
  min-height: 34px !important;
  padding: 8px 10px !important;
  background: #fff !important;
  color: #102018 !important;
  border-color: rgba(16, 32, 24, .16) !important;
}

.catalogue-category-filter button.active {
  background: #148653 !important;
  color: #fff !important;
  border-color: #148653 !important;
}

.catalogue-group {
  gap: 10px !important;
  scroll-margin-top: 250px;
}

.catalogue-group-head {
  align-items: center !important;
  padding: 10px 0 !important;
}

.catalogue-group-head > div {
  display: grid;
  gap: 3px;
}

.catalogue-group-head h2 {
  font-size: 24px !important;
}

.catalogue-group.is-collapsed .catalogue-list {
  display: none;
}

.catalogue-group.is-collapsed .catalogue-group-head {
  border-bottom-style: dashed;
}

.catalogue-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px !important;
}

.catalogue-item {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px !important;
  min-height: 118px !important;
  padding: 12px !important;
  align-items: start !important;
  border-radius: 12px !important;
}

.catalogue-thumb {
  width: 58px !important;
  height: 54px !important;
  border-radius: 10px !important;
}

.catalogue-thumb img {
  max-height: 40px !important;
}

.catalogue-info {
  gap: 4px !important;
}

.catalogue-info h3 {
  font-size: 17px !important;
  line-height: 1.16 !important;
}

.catalogue-info p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px !important;
  line-height: 1.38 !important;
}

.catalogue-info small {
  font-size: 11px !important;
}

.catalogue-price {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(16, 32, 24, .10);
}

.catalogue-price strong {
  font-size: 16px !important;
}

.catalogue-item > .button {
  grid-column: 1 / -1;
  min-height: 34px !important;
  padding: 8px 11px !important;
  font-size: 12px;
}

.catalogue-page[data-density="detail"] .catalogue-list {
  grid-template-columns: 1fr;
}

.catalogue-page[data-density="detail"] .catalogue-item {
  grid-template-columns: 92px minmax(0, 1fr) minmax(120px, 160px) auto;
  min-height: 116px !important;
}

.catalogue-page[data-density="detail"] .catalogue-thumb {
  width: 92px !important;
  height: 82px !important;
}

.catalogue-page[data-density="detail"] .catalogue-thumb img {
  max-height: 58px !important;
}

.catalogue-page[data-density="detail"] .catalogue-info h3 {
  font-size: 21px !important;
}

.catalogue-page[data-density="detail"] .catalogue-info p {
  -webkit-line-clamp: 3;
}

.catalogue-page[data-density="detail"] .catalogue-price {
  grid-column: auto;
  display: grid !important;
  border-top: 0;
  padding-top: 0;
}

.catalogue-page[data-density="detail"] .catalogue-item > .button {
  grid-column: auto;
}

.business-needs-panel {
  padding: 14px !important;
}

.business-need-buttons button {
  min-height: 34px !important;
  padding: 8px 10px !important;
}

@media (max-width: 980px) {
  .catalogue-compact-bar,
  .catalogue-filter-sticky {
    position: static;
  }
  .catalogue-compact-bar {
    grid-template-columns: 1fr;
  }
  .catalogue-category-filter {
    max-height: none;
  }
  .catalogue-page[data-density="detail"] .catalogue-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .catalogue-page[data-density="detail"] .catalogue-price,
  .catalogue-page[data-density="detail"] .catalogue-item > .button {
    grid-column: 1 / -1;
  }
}

/* v50 navigation and footer readability */
.site-header {
  background: rgba(7, 19, 13, .96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
}

.brand,
.brand span,
.site-header nav a {
  color: #f6fff9 !important;
  opacity: 1 !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .26);
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  line-height: 1.15;
  white-space: nowrap;
}

.site-header .nav-login {
  background: rgba(159, 202, 43, .24) !important;
  border-color: rgba(159, 202, 43, .55) !important;
  color: #f6fff9 !important;
}

.site-header .nav-cta {
  background: #f6fff9 !important;
  color: #102018 !important;
  border: 1px solid rgba(255, 255, 255, .32) !important;
  text-shadow: none;
}

.site-header .lang-link {
  background: rgba(255, 255, 255, .10) !important;
  border-color: rgba(255, 255, 255, .22) !important;
  color: #fff !important;
}

.site-footer {
  color: #f6fff9 !important;
  background:
    linear-gradient(135deg, #06130d, #0a1d14 58%, #07150f) !important;
}

.footer-main-card {
  border-color: rgba(255, 255, 255, .18) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)),
    rgba(10, 29, 20, .96) !important;
}

.footer-logo-lockup strong,
.footer-links strong,
.footer-newsletter > strong,
.footer-social > strong,
.footer-contact-link b {
  color: #fff !important;
  opacity: 1 !important;
}

.footer-logo-lockup em,
.footer-links a,
.footer-newsletter span,
.footer-consent-note,
.footer-contact-link span {
  color: rgba(246, 255, 250, .84) !important;
  opacity: 1 !important;
}

.footer-links a {
  line-height: 1.35;
}

.footer-links a:hover {
  color: #b6e51f !important;
}

.footer-contact-link,
.footer-newsletter {
  border-color: rgba(255, 255, 255, .16) !important;
  background: rgba(255, 255, 255, .055) !important;
}

.footer-newsletter-row input {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .24) !important;
  color: #fff !important;
}

.footer-newsletter-row input::placeholder {
  color: rgba(246, 255, 250, .78) !important;
  opacity: 1 !important;
}

.footer-newsletter-row button {
  background: #b6e51f !important;
  color: #102018 !important;
  text-shadow: none;
}

.social-icon {
  background: rgba(255, 255, 255, .12) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
}

@media (max-width: 900px) {
  .site-header nav a,
  .site-header .nav-cta,
  .site-header .lang-link {
    white-space: normal;
    text-shadow: none;
  }
}

/* v51 utility page readability */
.trust-page,
.legal-page,
.fees-page,
.specs-page,
.sitemap-page {
  color: #102018;
}

.trust-page h1,
.trust-page h2,
.trust-page h3,
.trust-page strong,
.legal-page h1,
.legal-page h2,
.legal-page h3,
.legal-page strong,
.fees-page h1,
.fees-page h2,
.fees-page h3,
.fees-page strong,
.specs-page h1,
.specs-page h2,
.specs-page h3,
.specs-page strong,
.sitemap-page h1,
.sitemap-page h2,
.sitemap-page h3,
.sitemap-page strong {
  color: #102018 !important;
}

.trust-page p,
.trust-page small,
.legal-page p,
.legal-page small,
.fees-page p,
.fees-page small,
.specs-page p,
.specs-page small,
.sitemap-page p,
.sitemap-page small {
  color: #34473d !important;
  opacity: 1 !important;
}

.trust-grid article,
.payment-grid article,
.trust-card,
.trust-note,
.legal-page article,
.fees-panel,
.fees-notes article,
.specs-grid article,
.steps-list div,
.approval-box,
.specs-notice,
.sitemap-panel,
.sitemap-product-group,
.sitemap-link-list a,
.sitemap-product-links a {
  border-color: rgba(16, 32, 24, .14) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,246,.98)) !important;
  color: #102018 !important;
}

.payment-grid article span,
.trust-grid article span,
.specs-grid span,
.sitemap-panel > span,
.sitemap-product-group span,
.fee-row small,
.sitemap-link-list small {
  color: #52695f !important;
  opacity: 1 !important;
}

.fee-row span,
.sitemap-product-links a {
  color: #102018 !important;
}

.fees-hero-card,
.specs-notice {
  color: #102018 !important;
}

.specs-hero .button.secondary,
.fees-notes .button.secondary {
  background: #eef5f1 !important;
  color: #17382a !important;
  border: 1px solid rgba(16, 32, 24, .14) !important;
}

/* v54 catalogue business filter visibility */
.business-needs-panel {
  border-color: rgba(16, 32, 24, .14) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,246,.98)) !important;
}

.business-needs-panel .finder-copy {
  background:
    linear-gradient(135deg, rgba(159,202,43,.16), rgba(40,169,223,.08)) !important;
}

.business-needs-panel .finder-copy span {
  color: #52695f !important;
}

.business-needs-panel .finder-copy strong {
  color: #102018 !important;
}

.business-need-buttons button {
  border-color: rgba(16, 32, 24, .16) !important;
  background:
    linear-gradient(180deg, #ffffff, #f4f9f6) !important;
  color: #102018 !important;
  text-shadow: none !important;
  box-shadow: 0 10px 22px rgba(18, 28, 24, .05) !important;
}

.business-need-buttons button:hover,
.business-need-buttons button:focus-visible {
  border-color: #148653 !important;
  background: #eaf5ef !important;
  color: #102018 !important;
  outline: none;
}

/* v59 reseller and shared light-panel readability guardrail */
.reseller-page,
.reseller-page .reseller-topbar,
.reseller-page .reseller-kpis article,
.reseller-page .reseller-note,
.reseller-page .reseller-price-card,
.reseller-page .reseller-price-lines div,
.reseller-page .login-card {
  color: #102018 !important;
}

.reseller-page .reseller-topbar,
.reseller-page .reseller-kpis article,
.reseller-page .reseller-note,
.reseller-page .reseller-price-card,
.reseller-page .reseller-price-lines div,
.reseller-page .login-card {
  border-color: rgba(16, 32, 24, .16) !important;
  background:
    linear-gradient(180deg, #ffffff, #f4f9f6) !important;
  box-shadow: 0 16px 38px rgba(18, 28, 24, .08) !important;
}

.reseller-page h1,
.reseller-page h2,
.reseller-page h3,
.reseller-page strong,
.reseller-page b,
.reseller-page label,
.reseller-page .reseller-card-head strong,
.reseller-page .reseller-price-lines strong,
.reseller-page .reseller-kpis strong,
.reseller-page .reseller-topbar strong,
.reseller-page .reseller-note strong {
  color: #102018 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.reseller-page p,
.reseller-page small,
.reseller-page .reseller-price-card p,
.reseller-page .reseller-topbar small,
.reseller-page .reseller-margin small {
  color: #34473d !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.reseller-page .eyebrow,
.reseller-page .reseller-topbar span,
.reseller-page .reseller-kpis span,
.reseller-page .reseller-card-head span,
.reseller-page .reseller-price-lines span {
  color: #148653 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.reseller-page .reseller-tools {
  padding: 14px;
  border: 1px solid rgba(16, 32, 24, .16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,246,.98)) !important;
  box-shadow: 0 16px 38px rgba(18, 28, 24, .08);
}

.reseller-page .reseller-search,
.reseller-page .reseller-search input {
  background: #fff !important;
  color: #102018 !important;
  border-color: rgba(16, 32, 24, .18) !important;
}

.reseller-page .reseller-search span {
  color: #52695f !important;
}

.reseller-page .reseller-filter button {
  background: #fff !important;
  color: #102018 !important;
  border-color: rgba(16, 32, 24, .16) !important;
  text-shadow: none !important;
}

.reseller-page .reseller-filter button.active,
.reseller-page .reseller-filter button:hover {
  background: #148653 !important;
  border-color: #148653 !important;
  color: #fff !important;
}

.reseller-page .reseller-margin {
  background:
    linear-gradient(135deg, rgba(159, 202, 43, .16), rgba(40, 169, 223, .08)) !important;
}

.reseller-page .margin-pill {
  background: #148653 !important;
  color: #fff !important;
}

.reseller-page .margin-pill.quote {
  background: #eef5f1 !important;
  color: #17382a !important;
  border: 1px solid rgba(16, 32, 24, .14);
}

.summary-card,
.login-card,
.admin-login,
.contact-card {
  border-color: rgba(16, 32, 24, .16) !important;
  background:
    linear-gradient(180deg, #ffffff, #f4f9f6) !important;
  color: #102018 !important;
  text-shadow: none !important;
}

.summary-card h2,
.summary-card h3,
.summary-card strong,
.login-card h2,
.login-card h3,
.login-card strong,
.admin-login h2,
.admin-login strong,
.contact-card h2,
.contact-card h3,
.contact-card strong {
  color: #102018 !important;
  opacity: 1 !important;
}

.summary-card p,
.summary-card span,
.summary-card small,
.summary-card .muted,
.login-card p,
.login-card span,
.login-card small,
.admin-login p,
.admin-login small,
.contact-card p,
.contact-card small {
  color: #34473d !important;
  opacity: 1 !important;
}

.summary-card .eyebrow,
.login-card .eyebrow,
.admin-login .eyebrow,
.contact-card .eyebrow {
  color: #148653 !important;
}

.summary-card input,
.summary-card select,
.summary-card textarea,
.login-card input,
.login-card select,
.login-card textarea,
.admin-login input,
.admin-login select,
.admin-login textarea,
.contact-card input,
.contact-card select,
.contact-card textarea {
  background: #fff !important;
  color: #102018 !important;
  border-color: rgba(16, 32, 24, .18) !important;
}

/* v61 flexible uploads, FAQ and admin response kit */
.file-upload-panel {
  border: 1px dashed rgba(20, 134, 83, .34) !important;
  border-radius: 14px;
  padding: 16px !important;
  background: linear-gradient(135deg, rgba(159, 202, 43, .13), rgba(40, 169, 223, .08)) !important;
}

.file-upload-panel .file-note {
  display: block;
  margin-top: 8px;
  color: #34473d !important;
  font-size: .9rem;
  line-height: 1.45;
  opacity: 1 !important;
}

.file-upload-panel .upload-status {
  border-radius: 10px;
  padding: 10px 12px;
}

.file-upload-panel .upload-status.is-ok {
  background: rgba(20, 134, 83, .1);
  color: #0e6f45 !important;
  font-weight: 800;
}

.file-upload-panel .upload-status.is-warning {
  background: rgba(190, 18, 60, .1);
  color: #9f1239 !important;
  font-weight: 900;
}

.faq-section {
  padding: 58px 5vw;
  background: linear-gradient(180deg, rgba(239, 247, 243, .98), rgba(255, 255, 255, .98));
  color: #102018;
}

.faq-section .section-heading h2,
.faq-section .section-heading p {
  color: #102018 !important;
  opacity: 1 !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  border: 1px solid rgba(16, 32, 24, .14);
  border-radius: 14px;
  background: #fff;
  color: #102018;
  padding: 18px 20px;
  box-shadow: 0 16px 34px rgba(18, 28, 24, .07);
}

.faq-grid summary {
  cursor: pointer;
  color: #102018;
  font-weight: 900;
  line-height: 1.3;
}

.faq-grid p {
  margin: 12px 0 0;
  color: #34473d !important;
  line-height: 1.6;
  opacity: 1 !important;
}

.admin-response-kit {
  margin: 18px 0 24px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 24, .14);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f4f9f6);
  color: #102018;
  box-shadow: 0 14px 32px rgba(18, 28, 24, .08);
}

.response-kit-head span,
.admin-checklist,
.admin-response-kit textarea {
  color: #102018;
}

.response-kit-head span {
  display: block;
  margin-bottom: 4px;
  color: #148653;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.response-kit-head strong {
  display: block;
  color: #102018;
  font-size: 1.05rem;
}

.admin-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  padding: 0;
  margin: 14px 0;
  list-style: none;
}

.template-picker-label {
  display: grid;
  gap: 6px;
  margin: 14px 0;
  color: #102018;
  font-weight: 900;
}

.template-picker-label select {
  min-height: 44px;
  border: 1px solid rgba(16, 32, 24, .16);
  border-radius: 8px;
  background: #fff;
  color: #102018;
}

.admin-checklist label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #102018;
  font-size: .92rem;
  line-height: 1.35;
}

.admin-response-kit textarea {
  width: 100%;
  min-height: 190px;
  margin: 0 0 12px;
  border: 1px solid rgba(16, 32, 24, .16);
  border-radius: 12px;
  background: #fff;
  color: #102018;
  line-height: 1.5;
}

.response-kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 800px) {
  .faq-grid,
  .admin-checklist {
    grid-template-columns: 1fr;
  }
}
/* v62 official MI Coin emblem and large upload guidance */
.portal-wallet-card::after {
  background:
    url("mi-coin-emblem.svg") center / 38px 40px no-repeat,
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.34), transparent 26%),
    linear-gradient(135deg, #9fca2b, #28a9df) !important;
}

.wetransfer-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(16, 32, 24, .15);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,247,243,.96));
  color: #102018;
  box-shadow: 0 14px 32px rgba(18, 28, 24, .07);
}

.wetransfer-panel strong,
.wetransfer-panel code,
.wetransfer-panel p {
  color: #102018 !important;
  opacity: 1 !important;
}

.wetransfer-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.wetransfer-panel span {
  color: #148653 !important;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wetransfer-panel code {
  padding: 6px 9px;
  border: 1px solid rgba(16, 32, 24, .14);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  white-space: normal;
}

.result-transfer-panel {
  margin: 18px 0;
}
/* v63 upload reference operations */
.result-upload-reference,
.admin-transfer-card {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(16, 32, 24, .15);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,247,243,.96));
  color: #102018;
  box-shadow: 0 14px 32px rgba(18, 28, 24, .07);
}

.result-upload-reference strong,
.result-upload-reference code,
.result-upload-reference p,
.admin-transfer-card strong,
.admin-transfer-card p {
  color: #102018 !important;
  opacity: 1 !important;
}

.result-upload-reference div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 8px;
}

.result-upload-reference span,
.admin-transfer-card span {
  color: #148653 !important;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-upload-reference code {
  padding: 6px 9px;
  border: 1px solid rgba(16, 32, 24, .14);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  white-space: normal;
}

.admin-transfer-card strong {
  display: block;
  margin: 6px 0;
  font-size: 1.08rem;
}
/* v64 demo accounts and MI Coin redemption history */
.account-access-strip,
.loyalty-history-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.account-access-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-access-strip > div,
.loyalty-history-list article {
  padding: 16px;
  border: 1px solid rgba(16, 32, 24, .14);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f4f9f6);
  color: #102018;
  box-shadow: 0 14px 32px rgba(18, 28, 24, .07);
}

.account-access-strip span,
.loyalty-history-list span {
  color: #148653;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-access-strip strong,
.account-access-strip code,
.account-access-strip small,
.loyalty-history-list strong,
.loyalty-history-list small,
.loyalty-history-list b,
.loyalty-history-list p {
  color: #102018 !important;
  opacity: 1 !important;
}

.account-access-strip code {
  display: block;
  margin: 8px 0 10px;
  padding: 7px 9px;
  border: 1px solid rgba(16, 32, 24, .14);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  white-space: normal;
}

.loyalty-history-list article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.loyalty-history-list small {
  display: block;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .account-access-strip {
    grid-template-columns: 1fr;
  }

  .loyalty-history-list article {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* v66 reseller white-label portal */
.white-label-dashboard,
.white-label-form,
.reseller-plan-grid,
.white-label-seller-note {
  margin: 24px 0;
}
.white-label-dashboard,
.white-label-seller-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: stretch;
  background: #f8fbf8;
  border: 1px solid rgba(10, 32, 24, 0.12);
  border-top: 5px solid var(--reseller-brand, var(--green));
  border-radius: 18px;
  padding: 24px;
  color: #071c14;
  box-shadow: 0 18px 45px rgba(4, 20, 14, 0.08);
}
.white-label-main h2,
.white-label-main p,
.white-label-preview strong,
.white-label-preview small,
.white-label-preview em,
.reseller-plan-current strong,
.reseller-plan-current p,
.reseller-plan-card strong,
.reseller-plan-card p,
.reseller-plan-mini b,
.reseller-plan-mini span {
  color: #071c14;
}
.white-label-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.white-label-preview {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(10, 32, 24, 0.12);
  border-radius: 16px;
  padding: 18px;
}
.brand-mark-preview {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: color-mix(in srgb, var(--reseller-brand, var(--green)) 18%, #ffffff);
  border: 3px solid var(--reseller-brand, var(--green));
  font-weight: 900;
  color: #071c14;
}
.brand-mark-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}
.white-label-preview small {
  overflow-wrap: anywhere;
}
.reseller-plan-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, minmax(140px, 1fr));
  gap: 12px;
}
.reseller-plan-current,
.reseller-plan-card {
  background: #ffffff;
  border: 1px solid rgba(10, 32, 24, 0.12);
  border-radius: 16px;
  padding: 18px;
  color: #071c14;
}
.reseller-plan-card.is-active,
.reseller-plan-current {
  border-top: 5px solid var(--green);
}
.reseller-plan-current span,
.reseller-plan-card span,
.reseller-plan-mini span {
  display: block;
  margin-bottom: 8px;
  color: #148653;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.client-limit-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5eee8;
  margin: 14px 0 8px;
}
.client-limit-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.white-label-form {
  background: #ffffff;
  border: 1px solid rgba(10, 32, 24, 0.12);
  border-radius: 18px;
  padding: 22px;
  color: #071c14;
}
.white-label-form input,
.white-label-form select {
  background: #f7faf8;
  color: #071c14;
  border: 1px solid rgba(10, 32, 24, 0.16);
}
.white-label-check {
  margin: 14px 0;
}
.white-label-seller-note {
  grid-template-columns: minmax(0, 1fr) 240px;
}
.reseller-plan-mini {
  display: grid;
  gap: 8px;
  align-content: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
}
.reseller-plan-mini .button {
  width: 100%;
  justify-content: center;
}
@media (max-width: 1050px) {
  .reseller-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reseller-plan-current {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .white-label-dashboard,
  .white-label-seller-note,
  .reseller-plan-grid {
    grid-template-columns: 1fr;
  }
}

/* v67 compact M.I. Services profile */
.brief-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  padding: 72px 5vw 42px;
  background: #f7faf8;
  color: #071c14;
  border-bottom: 1px solid rgba(10, 32, 24, 0.12);
}
.brief-profile-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .9;
  color: #071c14;
}
.brief-profile-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 20px 0 0;
  color: #34443e;
  font-size: 1.08rem;
  line-height: 1.7;
}
.brief-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.brief-profile-hero aside,
.brief-email-card,
.brief-profile-grid article,
.brief-service-strip article {
  background: #ffffff;
  border: 1px solid rgba(10, 32, 24, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(7, 18, 15, 0.08);
}
.brief-profile-hero aside {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  border-top: 6px solid var(--green);
}
.brief-profile-hero aside span,
.brief-profile-grid span,
.brief-email-card span {
  color: #148653;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brief-profile-hero aside strong {
  font-size: 2rem;
  line-height: 1;
  color: #071c14;
}
.brief-profile-page {
  padding: 44px 5vw 72px;
  background: #edf3ef;
}
.brief-profile-grid,
.brief-service-strip {
  display: grid;
  gap: 14px;
}
.brief-profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.brief-profile-grid article,
.brief-email-card {
  padding: 24px;
}
.brief-profile-grid strong {
  display: block;
  margin-top: 8px;
  color: #071c14;
  font-size: 1.55rem;
  line-height: 1.05;
}
.brief-profile-grid p,
.brief-email-card p,
.brief-profile-hero aside p {
  color: #53615c;
  line-height: 1.65;
}
.brief-service-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 0;
}
.brief-service-strip article {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border-top: 5px solid var(--blue);
}
.brief-service-strip article:nth-child(2) { border-top-color: var(--pink); }
.brief-service-strip article:nth-child(3) { border-top-color: var(--green); }
.brief-service-strip article:nth-child(4) { border-top-color: var(--orange); }
.brief-service-strip span {
  color: #148653;
  font-weight: 950;
}
.brief-service-strip strong {
  color: #071c14;
  font-size: 1.18rem;
  line-height: 1.15;
}
.brief-email-card {
  border-top: 5px solid #071c14;
}
@media (max-width: 900px) {
  .brief-profile-hero,
  .brief-profile-grid,
  .brief-service-strip {
    grid-template-columns: 1fr;
  }
}

.print-job-launcher,
.designer-brief-band {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin: 24px auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.print-job-launcher .section-heading {
  max-width: 860px;
  margin-bottom: 20px;
}

.print-job-launcher .section-heading h2,
.print-job-launcher .section-heading p {
  max-width: 820px;
}

.print-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.print-job-grid a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  background: linear-gradient(135deg, var(--card-bg), var(--soft-bg));
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.print-job-grid a:nth-child(2) { border-left-color: var(--green); }
.print-job-grid a:nth-child(3) { border-left-color: var(--pink); }
.print-job-grid a:nth-child(4) { border-left-color: var(--orange); }
.print-job-grid a:nth-child(5) { border-left-color: var(--blue); }
.print-job-grid a:nth-child(6) { border-left-color: var(--forest); }

.print-job-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.print-job-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.print-job-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.print-job-grid small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.print-job-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.designer-type-grid small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.designer-brief-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: start;
  border-top-color: var(--green);
}

.designer-brief-band h2 {
  margin: 4px 0 0;
  font-size: 34px;
}

.designer-brief-band ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.designer-brief-band li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  background: var(--soft-bg);
  color: var(--ink);
  font-weight: 800;
}

.designer-summary-card .button {
  width: 100%;
  margin-top: 12px;
  text-align: center;
}

.mi-designer-lite {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  background: linear-gradient(135deg, #f9fbfa, var(--soft-bg));
}

.mi-designer-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.mi-designer-toolbar h3 {
  margin: 4px 0 6px;
  font-size: 24px;
}

.mi-designer-toolbar p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.mi-designer-workbench {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.mi-designer-controls {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 4px solid #102018;
  background: rgba(255, 255, 255, .92);
  align-content: start;
}

.mi-designer-controls label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.mi-designer-controls label.mi-designer-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-bg);
}

.mi-designer-controls input,
.mi-designer-controls select {
  width: 100%;
  min-height: 42px;
}

.mi-designer-controls input:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.mi-designer-controls label.mi-designer-check input {
  width: auto;
  min-height: 0;
}

.mi-designer-controls input[type="color"] {
  padding: 3px;
}

.mi-designer-tool-group {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-bg);
}

.mi-designer-tool-group strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mi-designer-control-note {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.mi-designer-wide-button {
  width: 100%;
  min-height: 40px;
}

.mi-designer-tool-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.mi-designer-tool-buttons button {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 54px;
  padding: 7px 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  font-size: 20px;
  line-height: 1;
}

.mi-designer-tool-buttons span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.mi-designer-size-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mi-designer-policy-note {
  padding: 11px 12px;
  border: 1px solid rgba(255, 127, 24, .34);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 127, 24, .08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

.mi-designer-canvas-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 12px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  background:
    linear-gradient(45deg, rgba(16, 32, 24, .04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(16, 32, 24, .04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(16, 32, 24, .04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(16, 32, 24, .04) 75%),
    var(--card-bg);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
}

.mi-designer-canvas-wrap canvas {
  width: 100%;
  max-width: 900px;
  height: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(16, 32, 24, .14);
  cursor: grab;
  touch-action: none;
}

.mi-designer-canvas-wrap canvas.is-dragging {
  cursor: grabbing;
}

.mi-designer-canvas-wrap span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mi-designer-guidance {
  align-self: start;
  padding: 14px;
  border: 1px solid rgba(20, 134, 83, .24);
  border-left: 4px solid #148653;
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
}

.mi-designer-guidance h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
}

.mi-designer-guidance ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.mi-designer-guidance li {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .print-job-launcher,
  .designer-brief-band {
    width: min(100% - 28px, 1180px);
    padding: 20px;
  }

  .print-job-grid,
  .designer-brief-band {
    grid-template-columns: 1fr;
  }

  .print-job-grid a {
    min-height: 0;
  }

  .designer-brief-band h2 {
    font-size: 28px;
  }

  .mi-designer-toolbar,
  .mi-designer-workbench {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mi-designer-canvas-wrap {
    grid-template-columns: 1fr;
  }

  .mi-designer-size-row {
    grid-template-columns: 1fr;
  }
}

/* v77 launch cleanup: customer-facing light mode, compact homepage, designer status */
:root,
:root[data-theme="light"] {
  color-scheme: light;
  --ink: #121b17;
  --text: #283830;
  --muted: #52635b;
  --line: #cfddd6;
  --paper: #f3f8f5;
  --cream: #fbfff9;
  --white: #fff;
  --header-bg: rgba(255, 255, 255, .94);
  --card-bg: #fff;
  --soft-bg: #edf6f1;
  --page-bg:
    linear-gradient(120deg, rgba(255,255,255,.94), rgba(243,248,245,.96)),
    radial-gradient(circle at 12% 10%, rgba(159, 202, 43, .12), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(40, 169, 223, .10), transparent 28%),
    #f5faf7;
}

body,
.section-band,
.catalogue-page,
.request-layout,
.designer-page,
.product-card,
.catalogue-info,
.summary-card,
.choice-panel,
.result-page {
  color: var(--ink);
}

p,
small,
.muted,
.catalogue-info small,
.catalogue-price small,
.summary-card p,
.choice-panel span {
  color: var(--muted);
}

.site-header {
  min-height: 72px;
  background: rgba(255, 255, 255, .96);
  border-bottom-color: rgba(207, 221, 214, .92);
}

.site-header nav {
  gap: 14px;
}

.hero {
  width: min(100% - 32px, 1180px);
  min-height: 0;
  margin: 28px auto 0;
  padding: 46px 0 34px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 34px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

.hero-copy > p {
  max-width: 780px;
  font-size: 17px;
}

.hero-search,
.hero-metrics,
.intro-strip {
  display: none !important;
}

.quick-quote-panel {
  max-width: 820px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  border-color: rgba(20, 134, 83, .18);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 45px rgba(18, 28, 24, .08);
}

.print-job-launcher {
  margin-top: 18px;
}

.print-job-launcher .section-heading h2,
.section-band .section-heading h2 {
  max-width: 850px;
  font-size: clamp(30px, 4vw, 44px);
}

.print-job-grid {
  gap: 12px;
}

.print-job-grid a {
  min-height: 140px;
  border-radius: 8px;
  background: rgba(255,255,255,.86);
}

.home-category-strip,
.business-needs-strip,
.order-readiness-strip {
  display: none !important;
}

.catalogue-pricing-note {
  padding: 12px 14px;
  font-size: 13px;
}

.catalogue-pricing-note p,
.catalogue-pricing-note span,
.pricing-note-box,
.price-vat-note {
  font-size: 12px;
  line-height: 1.45;
}

.catalogue-group-head {
  align-items: flex-start;
}

.catalogue-view-tools {
  justify-content: flex-end;
}

.pricing-note-box.is-quiet {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(20, 134, 83, .06);
}

/* v81 calmer launch homepage */
.hero {
  min-height: auto;
  padding: 44px 0 34px;
  align-items: start;
}

.hero-copy {
  padding: 0 24px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  font-size: 16px;
  line-height: 1.55;
}

.quick-quote-panel {
  max-width: 720px;
  padding: 14px 16px;
  gap: 8px;
  background: #fff;
}

.quick-quote-panel span {
  font-size: 14px;
}

.quick-quote-panel .button {
  min-height: 40px;
  padding: 10px 14px;
}

.hero-visual {
  min-height: 360px;
}

.visual-main {
  width: min(360px, 100%);
  padding: 22px;
}

.visual-main img {
  max-height: 240px;
}

.visual-small {
  min-width: 168px;
  padding: 12px;
}

.visual-small strong {
  font-size: 14px;
}

.visual-small span {
  font-size: 12px;
}

.print-job-launcher {
  padding: 22px;
}

.print-job-launcher .section-heading {
  margin-bottom: 16px;
}

.print-job-launcher .section-heading h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.08;
}

.print-job-launcher .section-heading p {
  font-size: 15px;
  line-height: 1.5;
}

.print-job-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.print-job-grid a {
  min-height: 118px;
  padding: 13px;
}

.print-job-grid strong {
  font-size: 15px;
}

.print-job-grid small {
  display: none;
}

.print-job-actions {
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .hero {
    padding: 32px 0 28px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-visual {
    display: none;
  }

  .print-job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .print-job-grid {
    grid-template-columns: 1fr;
  }
}

.designer-coming-soon,
.designer-roadmap,
.designer-now-panel {
  width: min(100% - 32px, 1180px);
  margin: 28px auto;
  padding: 28px;
  border: 1px solid rgba(207, 221, 214, .95);
  border-radius: 8px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 50px rgba(18, 28, 24, .08);
}

.designer-coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 28px;
  align-items: center;
}

.designer-coming-soon h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 62px);
}

.designer-progress-card,
.designer-status-panel {
  padding: 18px;
  border: 1px solid rgba(20, 134, 83, .18);
  border-radius: 8px;
  background: #f8fcfa;
}

.designer-progress-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.designer-progress-card span,
.designer-roadmap-grid article span {
  color: #148653;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.designer-progress-card strong {
  color: var(--ink);
  font-size: 42px;
}

.designer-progress-track {
  overflow: hidden;
  height: 12px;
  margin: 12px 0 8px;
  border-radius: 999px;
  background: #dceae3;
}

.designer-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #148653, #28a9df);
}

.designer-artboard-preview {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  border: 3px solid #ff7f18;
  background:
    linear-gradient(rgba(20,134,83,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,134,83,.08) 1px, transparent 1px),
    #fff;
  background-size: 24px 24px;
}

.designer-artboard-preview .bleed-line,
.designer-artboard-preview .safe-line {
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(255, 127, 24, .75);
}

.designer-artboard-preview .safe-line {
  inset: 34px;
  border-color: rgba(20, 134, 83, .70);
}

.designer-artboard-preview strong {
  font-size: 72px;
  color: #102018;
}

.designer-artboard-preview span,
.designer-artboard-preview em {
  position: absolute;
  left: 16px;
  font-size: 12px;
  font-weight: 900;
  color: #b75a12;
}

.designer-artboard-preview span { top: 14px; }
.designer-artboard-preview em { bottom: 30px; color: #148653; font-style: normal; }

.designer-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.designer-roadmap-grid article {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.designer-roadmap-grid article.is-done {
  border-color: rgba(20, 134, 83, .36);
  background: #f1fbf6;
}

.designer-now-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .site-header nav {
    align-items: center;
  }

  .hero,
  .designer-coming-soon,
  .designer-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .designer-now-panel {
    display: block;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: block;
    min-height: 0;
    padding: 10px;
    overflow: hidden;
  }

  .site-header .brand {
    min-width: 0;
    margin-bottom: 8px;
  }

  .site-header .brand img {
    width: 64px;
  }

  .site-header .brand span {
    display: none;
  }

  .site-header nav {
    display: flex;
    flex-direction: row !important;
    gap: 8px;
    overflow-x: hidden;
    padding-bottom: 4px;
    white-space: nowrap;
    scrollbar-width: thin;
  }

  .site-header nav > a:nth-child(2),
  .site-header nav > a:nth-child(3),
  .site-header nav > a:nth-child(4),
  .site-header nav > a:nth-child(5),
  .site-header nav > a:nth-child(6),
  .site-header nav > .nav-login {
    display: none;
  }

  .site-header nav a {
    flex: 0 0 auto;
    width: auto !important;
    padding: 8px 10px;
  }

  .site-header .nav-login,
  .site-header .nav-cta,
  .site-header .lang-link {
    min-height: 34px;
    padding: 8px 10px;
  }

  .hero,
  .designer-coming-soon,
  .designer-roadmap,
  .designer-now-panel {
    width: min(100% - 20px, 1180px);
    padding: 20px;
  }

  .quick-quote-panel div,
  .designer-now-panel .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-hero,
  .request-layout {
    width: min(100% - 20px, 1180px);
    margin-left: auto;
    margin-right: auto;
  }

  .product-hero,
  .live-product-preview,
  .request-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .product-hero > div,
  .product-visual-card,
  .live-product-preview,
  .preview-stage,
  .preview-details,
  .price-vat-note,
  .product-prices {
    max-width: 100%;
  }

  .hp-field {
    left: 0 !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
  }
}

/* v92 final homepage overrides */
.hero {
  border: 1px solid rgba(207, 221, 214, .9);
  border-radius: 18px;
  background:
    linear-gradient(108deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 48%, rgba(232,246,239,.78) 100%),
    url("img/hero-production.svg") right 6% center / min(46vw, 560px) no-repeat !important;
  box-shadow: 0 22px 70px rgba(18, 28, 24, .09);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: #2d4036;
}

.hero-actions .button {
  min-height: 48px;
  padding-inline: 22px;
}

.hero-actions .button:first-child {
  background: linear-gradient(135deg, #148653, #0f6f48);
  box-shadow: 0 16px 34px rgba(20, 134, 83, .22);
}

.quick-quote-panel {
  border-color: rgba(20, 134, 83, .22);
  background: rgba(255,255,255,.88);
}

.print-job-launcher {
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(18, 28, 24, .08);
}

.print-job-grid a {
  border-top: 0;
  border-left-width: 5px;
  box-shadow: 0 12px 28px rgba(18, 28, 24, .06);
}

@media (max-width: 1100px) {
  .hero {
    background:
      linear-gradient(108deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 100%),
      url("img/hero-production.svg") right 20px bottom 20px / 280px no-repeat !important;
  }
}

/* Landing-page advertising hero */
.legacy-hero {
  display: none !important;
}

.ad-hero {
  position: relative;
  box-sizing: border-box;
  width: min(100% - 32px, 1240px);
  min-height: min(660px, calc(100vh - 140px));
  margin: 22px auto 0;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 70px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 7, 10, .94) 0%, rgba(5, 17, 18, .88) 34%, rgba(7, 20, 21, .28) 68%, rgba(5, 12, 12, .18) 100%),
    linear-gradient(180deg, rgba(4, 10, 10, .1), rgba(4, 10, 10, .46)),
    url("img/hero-premium-print-studio.png") center center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(4, 10, 10, .28);
  color: #fff;
}

.ad-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: 650px;
}

.ad-hero .eyebrow {
  color: #a9f7d0;
}

.ad-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: .94;
}

.ad-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(245, 252, 248, .88);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.36;
}

.ad-hero-actions,
.ad-proof-row,
.ad-product-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ad-hero-actions .button {
  min-height: 50px;
  padding-inline: 22px;
  box-shadow: 0 18px 40px rgba(20, 134, 83, .38);
}

.ad-hero-actions .button.secondary {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}

.ad-proof-row {
  margin-top: 6px;
}

.ad-proof-row div {
  min-width: 126px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
}

.ad-proof-row strong,
.ad-proof-row span {
  display: block;
}

.ad-proof-row strong {
  color: #fff;
  font-size: 1.16rem;
  line-height: 1;
}

.ad-proof-row span {
  margin-top: 5px;
  color: rgba(245, 252, 248, .74);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-product-rail {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 52px);
  bottom: clamp(18px, 4vw, 42px);
  max-width: min(540px, 48%);
  justify-content: flex-end;
}

.ad-product-rail a {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(5, 14, 14, .5);
  color: #fff;
  font-size: .82rem;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
  .ad-hero {
    min-height: min(660px, calc(100vh - 126px));
    align-items: end;
    background:
      linear-gradient(180deg, rgba(2, 7, 10, .34) 0%, rgba(2, 7, 10, .76) 42%, rgba(2, 7, 10, .95) 100%),
      url("img/hero-premium-print-studio.png") center top / cover no-repeat;
  }

  .ad-product-rail {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 18px;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .ad-hero {
    width: min(100% - 20px, 1240px);
    min-height: min(620px, calc(100vh - 118px));
    padding: 24px;
  }

  .ad-proof-row div {
    min-width: calc(50% - 8px);
  }
}

.account-login-notice,
.reseller-account-notice {
  display: grid;
  gap: 6px;
  margin: 16px 0 20px;
  padding: 14px 16px;
  border: 1px solid rgba(40, 169, 223, .22);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(40, 169, 223, .07);
}

.account-login-notice strong,
.reseller-account-notice strong {
  color: var(--ink);
}

.account-login-notice p,
.reseller-account-notice span {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 800;
}

/* First-viewport header tightening */
.site-header {
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.site-header .brand img {
  width: 78px;
}

.site-header .brand {
  min-width: 190px;
}

.site-header nav {
  gap: 10px;
  font-size: 13px;
}

.site-header nav a {
  white-space: nowrap;
}

.ad-hero {
  margin-top: 14px;
}

@media (min-width: 901px) and (max-width: 1320px) {
  .site-header nav > a:nth-child(2),
  .site-header nav > a:nth-child(3),
  .site-header nav > a:nth-child(4),
  .site-header nav > a:nth-child(5) {
    display: none;
  }
}

/* First-screen landing fit */
@media (min-width: 901px) {
  .ad-hero {
    min-height: 500px;
    padding: 34px;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 8px 10px;
  }

  .site-header .brand {
    margin-bottom: 4px;
  }

  .site-header .brand img {
    width: 54px;
  }

  .site-header nav {
    gap: 6px;
  }

  .site-header nav a {
    padding: 7px 8px;
    font-size: 12px;
  }

  .ad-hero {
    min-height: 520px;
    padding: 22px;
  }

  .ad-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .ad-proof-row div {
    min-width: calc(50% - 6px);
    padding: 8px 10px;
  }

  .ad-proof-row,
  .ad-product-rail {
    display: none;
  }
}

/* Advertising correction: make the visible first block image-led */
.ad-hero,
.legacy-hero {
  display: none !important;
}

.print-job-launcher {
  box-sizing: border-box;
  width: min(100% - 20px, 1760px) !important;
  max-width: none !important;
  min-height: min(560px, calc(100vh - 132px));
  margin: 18px auto 0 !important;
  padding: clamp(34px, 5.4vw, 68px) !important;
  overflow: hidden;
  display: grid;
  align-content: end;
  border: 0 !important;
  border-radius: 10px !important;
  background:
    linear-gradient(90deg, rgba(2, 7, 10, .96) 0%, rgba(4, 14, 15, .82) 34%, rgba(4, 14, 15, .22) 66%, rgba(4, 14, 15, .04) 100%),
    linear-gradient(180deg, rgba(3, 8, 9, .04), rgba(3, 8, 9, .34)),
    url("img/hero-print-products-gifts-v105.jpg") center center / cover no-repeat !important;
  box-shadow: 0 34px 96px rgba(4, 10, 10, .30) !important;
  color: #fff;
}

.print-job-launcher > .section-heading {
  display: none;
}

.campaign-hero-copy {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.campaign-hero-copy .eyebrow {
  color: #a9f7d0;
}

.campaign-hero-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.8vw, 82px) !important;
  line-height: .98 !important;
}

.campaign-hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: rgba(245, 252, 248, .88);
  font-size: clamp(17px, 1.5vw, 21px) !important;
  line-height: 1.38 !important;
}

.campaign-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.campaign-hero-actions .button.secondary {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}

.print-job-launcher .print-job-grid {
  display: flex !important;
  flex-wrap: wrap;
  max-width: 760px;
  gap: 8px !important;
  margin-top: 22px;
}

.print-job-launcher .print-job-grid a {
  width: auto;
  min-height: 0 !important;
  padding: 9px 11px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 999px !important;
  background: rgba(5, 14, 14, .52) !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px);
}

.print-job-launcher .print-job-grid span {
  display: none;
}

.print-job-launcher .print-job-grid strong {
  color: #fff;
  font-size: 13px !important;
  line-height: 1.1;
}

.print-job-launcher .print-job-grid small,
.print-job-launcher .print-job-grid,
.print-job-launcher .print-job-actions {
  display: none !important;
}

.campaign-showcase {
  width: min(100% - 20px, 1760px);
  max-width: none;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.showcase-panel {
  min-height: 330px;
  display: grid;
  align-content: end;
  padding: 26px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(4, 10, 10, .03), rgba(4, 10, 10, .80)),
    url("img/showcase-premium-paper.jpg") center center / cover no-repeat;
  color: #fff;
  box-shadow: 0 20px 56px rgba(4, 10, 10, .18);
}

.showcase-panel-wide {
  min-height: 390px;
  background-position: center center;
}

.showcase-panel-products {
  background:
    linear-gradient(180deg, rgba(4, 10, 10, .02), rgba(4, 10, 10, .78)),
    url("img/showcase-branded-products.jpg") center center / cover no-repeat;
}

.showcase-panel-production {
  background:
    linear-gradient(180deg, rgba(4, 10, 10, .02), rgba(4, 10, 10, .78)),
    url("img/showcase-production-workflow.jpg") center center / cover no-repeat;
}

.showcase-panel span {
  color: #a9f7d0;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.showcase-panel strong {
  max-width: 440px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(21px, 2.15vw, 34px);
  line-height: 1.04;
}

@media (max-width: 900px) {
  .print-job-launcher {
    width: min(100% - 20px, 1760px) !important;
    min-height: min(640px, calc(100vh - 96px));
    padding: 24px !important;
    background:
      linear-gradient(180deg, rgba(2, 7, 10, .32) 0%, rgba(2, 7, 10, .74) 38%, rgba(2, 7, 10, .96) 100%),
      url("img/hero-print-products-gifts-v105.jpg") center top / cover no-repeat !important;
  }

  .campaign-hero-copy h2 {
    font-size: clamp(36px, 10vw, 48px) !important;
  }

  .print-job-launcher .print-job-grid {
    display: none !important;
  }

  .campaign-showcase {
    width: min(100% - 20px, 1760px);
    grid-template-columns: 1fr;
  }

  .showcase-panel,
  .showcase-panel-wide {
    min-height: 300px;
  }
}

/* Homepage advertising touchups: less repetition, stronger production proof */
.visual-story,
.workflow-section,
.split-section {
  display: none !important;
}

.home-category-strip {
  gap: 10px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-category-strip a {
  border: 1px solid rgba(13, 35, 29, .12) !important;
  border-left: 5px solid var(--green) !important;
  background: rgba(255,255,255,.82) !important;
  color: #10231d !important;
  box-shadow: 0 12px 34px rgba(18, 28, 24, .06) !important;
}

.home-category-strip a:nth-child(2) { border-left-color: #9bd41a !important; }
.home-category-strip a:nth-child(3) { border-left-color: #16a5d8 !important; }
.home-category-strip a:nth-child(4) { border-left-color: #ff7a21 !important; }
.home-category-strip a:nth-child(5) { border-left-color: #d91a8a !important; }
.home-category-strip a:nth-child(6) { border-left-color: #0f6f5c !important; }
.home-category-strip a:nth-child(7) { border-left-color: #6d56d9 !important; }

.home-category-strip a:hover,
.home-category-strip a.is-strong {
  background: #10231d !important;
  color: #fff !important;
}

.home-popular-products {
  border: 1px solid rgba(13, 35, 29, .12) !important;
  background: rgba(255,255,255,.78) !important;
  box-shadow: 0 20px 54px rgba(18, 28, 24, .08) !important;
}

.home-popular-products .finder-copy {
  color: #10231d !important;
}

.home-popular-products .finder-copy span,
.home-popular-products .popular-product-links span {
  color: #148653 !important;
}

.home-popular-products .popular-product-links a {
  border: 1px solid rgba(13, 35, 29, .10) !important;
  border-top: 4px solid var(--green) !important;
  background: #fff !important;
  color: #10231d !important;
  box-shadow: 0 10px 28px rgba(18, 28, 24, .06) !important;
}

.home-popular-products .popular-product-links a:nth-child(2) { border-top-color: #9bd41a !important; }
.home-popular-products .popular-product-links a:nth-child(3) { border-top-color: #16a5d8 !important; }
.home-popular-products .popular-product-links a:nth-child(4) { border-top-color: #ff7a21 !important; }
.home-popular-products .popular-product-links a:nth-child(5) { border-top-color: #d91a8a !important; }
.home-popular-products .popular-product-links a:nth-child(6) { border-top-color: #6d56d9 !important; }

.home-popular-products .popular-product-links strong,
.home-popular-products .popular-product-links small {
  color: #10231d !important;
}

.sales-handoff-strip {
  border: 1px solid rgba(13, 35, 29, .10) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(232,245,239,.72)) !important;
  box-shadow: 0 16px 44px rgba(18, 28, 24, .07) !important;
}

.sales-handoff-strip article {
  background: rgba(255,255,255,.86) !important;
  border-color: rgba(13, 35, 29, .10) !important;
}

.production-capability {
  width: min(100% - 20px, 1760px);
  max-width: none;
  min-height: 520px;
  margin: 34px auto;
  padding: clamp(30px, 5vw, 72px);
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 7, 10, .95) 0%, rgba(7, 22, 23, .78) 36%, rgba(7, 22, 23, .22) 67%, rgba(7, 22, 23, .04) 100%),
    linear-gradient(180deg, rgba(3, 8, 9, .04), rgba(3, 8, 9, .36)),
    url("img/hero-print-anything-production-v105.jpg") center center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(4, 10, 10, .26);
}

.production-capability-copy {
  max-width: 760px;
  display: grid;
  gap: 14px;
}

.production-capability h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
}

.production-capability p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(245, 252, 248, .88);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.42;
}

.production-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.production-specs span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.designer-progress-banner {
  width: min(100% - 20px, 1760px);
  max-width: none;
  margin: 34px auto;
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(13, 35, 29, .12);
  border-radius: 10px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(235,247,241,.84)),
    url("img/showcase-production-workflow.jpg") right center / min(42vw, 520px) no-repeat;
  box-shadow: 0 20px 54px rgba(18, 28, 24, .08);
}

.designer-progress-banner h2 {
  max-width: 760px;
  margin: 0 0 10px;
  color: #10231d;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
}

.designer-progress-banner p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #51645d;
  font-size: 17px;
  line-height: 1.5;
}

.designer-progress-meter {
  padding: 22px;
  border: 1px solid rgba(13, 35, 29, .12);
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 42px rgba(18, 28, 24, .08);
}

.designer-progress-meter strong {
  display: block;
  margin-bottom: 12px;
  color: #10231d;
  font-size: 44px;
  line-height: 1;
}

.designer-progress-meter span {
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 35, 29, .10);
}

.designer-progress-meter i {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #148653, #a7e51d);
}

.faq-section {
  background: #fff !important;
}

.faq-section .section-heading h2 {
  max-width: 780px;
}

.faq-grid details {
  border-color: rgba(13, 35, 29, .12) !important;
  background: rgba(248, 252, 249, .92) !important;
}

@media (max-width: 900px) {
  .production-capability,
  .designer-progress-banner {
    width: min(100% - 20px, 1760px);
  }

  .production-capability {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(2, 7, 10, .30) 0%, rgba(2, 7, 10, .78) 42%, rgba(2, 7, 10, .96) 100%),
      url("img/hero-print-anything-production-v105.jpg") center top / cover no-repeat;
  }

  .designer-progress-banner {
    grid-template-columns: 1fr;
    background: linear-gradient(120deg, rgba(255,255,255,.95), rgba(235,247,241,.88));
  }
}

/* v106 page-by-page flow polish */
.outcome-planner,
.catalogue-route-selector,
.product-confidence-strip {
  width: min(100% - 20px, 1760px);
  max-width: none;
  margin: 22px auto;
}

.outcome-planner {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(13, 35, 29, .12);
  border-radius: 10px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.94), rgba(238,248,243,.86)),
    radial-gradient(circle at 90% 10%, rgba(40, 169, 223, .12), transparent 28%);
  box-shadow: 0 20px 54px rgba(18, 28, 24, .08);
}

.outcome-planner-copy {
  display: grid;
  align-content: center;
}

.outcome-planner h2,
.catalogue-route-selector h2 {
  margin: 0 0 12px;
  color: #10231d;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.05;
}

.outcome-planner p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #53645d;
  font-size: 16px;
  line-height: 1.55;
}

.outcome-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.outcome-card-grid a {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(13, 35, 29, .12);
  border-top: 5px solid var(--green);
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 36px rgba(18, 28, 24, .06);
}

.outcome-card-grid a:nth-child(2) { border-top-color: var(--blue); }
.outcome-card-grid a:nth-child(3) { border-top-color: var(--orange); }
.outcome-card-grid a:nth-child(4) { border-top-color: var(--pink); }

.outcome-card-grid span,
.product-confidence-strip span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(20, 134, 83, .12);
  color: #148653;
  font-size: 12px;
  font-weight: 950;
}

.outcome-card-grid strong {
  color: #10231d;
  font-size: 18px;
  line-height: 1.12;
}

.outcome-card-grid small {
  color: #5c6e66;
  font-size: 14px;
  line-height: 1.45;
}

.catalogue-route-selector {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(13, 35, 29, .12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(18, 28, 24, .07);
}

.route-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.route-chip-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid rgba(13, 35, 29, .12);
  border-radius: 999px;
  background: #f2f8f4;
  color: #10231d;
  font-weight: 950;
}

.route-chip-grid a:hover {
  background: #10231d;
  color: #fff;
}

.product-confidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: -24px;
  margin-bottom: 26px;
}

.product-confidence-strip article {
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(13, 35, 29, .12);
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 36px rgba(18, 28, 24, .07);
}

.product-confidence-strip strong {
  display: block;
  margin: 14px 0 8px;
  color: #10231d;
  font-size: 18px;
  line-height: 1.15;
}

.product-confidence-strip p {
  margin: 0;
  color: #5c6e66;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .outcome-planner,
  .catalogue-route-selector,
  .product-confidence-strip {
    grid-template-columns: 1fr;
  }

  .outcome-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-chip-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .outcome-card-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card-grid a {
    min-height: 180px;
  }

  .product-confidence-strip {
    margin-top: 18px;
  }
}

/* v107 public polish: remove repeated workflow blocks and add compact decision helpers */
.visual-story,
.workflow-section {
  display: none !important;
}

/* v138 delivery/workflow/design service pages */
.delivery-page,
.design-services-page,
.workflow-page {
  --delivery-accent: #148653;
}

.delivery-liability-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(40, 169, 223, .28);
  border-left: 5px solid #28a9df;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(40, 169, 223, .08), rgba(159, 202, 43, .06)), #fff;
}

.delivery-liability-note strong,
.delivery-search-widget strong,
.artwork-price-table strong {
  color: #102018;
  font-weight: 950;
}

.delivery-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.delivery-method-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(15, 46, 35, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 28, 24, .07);
  border-top: 4px solid #9fca2b;
}

.delivery-method-card.box_now { border-top-color: #28a9df; }
.delivery-method-card.port,
.delivery-method-card.ktel { border-top-color: #ff7f18; }
.delivery-method-card.own_delivery { border-top-color: #ec008c; }
.delivery-method-card.installation { border-top-color: #6f58ff; }

.delivery-method-card span {
  color: #496159;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.delivery-method-card strong {
  color: #102018;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.25;
}

.delivery-method-card p {
  margin: 0;
  color: #52645d;
  font-size: .88rem;
  line-height: 1.45;
}

.delivery-lookup-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(15, 46, 35, .12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(239,247,243,.9)),
    radial-gradient(circle at 82% 18%, rgba(159,202,43,.2), transparent 34%);
  box-shadow: 0 18px 44px rgba(18, 28, 24, .08);
}

.delivery-search-widget,
.builder-own-delivery {
  display: grid;
  gap: 10px;
}

.delivery-search-widget label,
.builder-own-delivery {
  color: #102018;
  font-weight: 900;
}

.delivery-search-widget input,
.builder-own-delivery input[type="search"] {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  border: 1px solid rgba(15, 46, 35, .16);
  border-radius: 8px;
  padding: 11px 13px;
  background: #fff;
  color: #102018;
  font: inherit;
  font-weight: 800;
}

.delivery-lookup-result,
[data-delivery-area-result] {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px dashed rgba(20, 134, 83, .32);
  border-radius: 8px;
  background: #f7fcfa;
  color: #52645d;
  font-size: .9rem;
  font-weight: 800;
}

.delivery-lookup-result small,
.delivery-lookup-result em,
[data-delivery-area-result] small,
[data-delivery-area-result] em {
  color: #52645d;
  font-style: normal;
  font-size: .82rem;
  font-weight: 750;
}

.delivery-lookup-result button,
[data-delivery-area-result] button {
  border: 1px solid rgba(15, 46, 35, .16);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  color: #102018;
  font-weight: 850;
  cursor: pointer;
}

.service-price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 18px;
}

.service-panel-wide {
  min-height: 100%;
}

.designer-progress-card {
  align-content: center;
}

.designer-progress-card strong {
  font-size: 76px;
}

.designer-progress-card em {
  display: block;
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 46, 35, .12);
}

.designer-progress-card i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #148653, #9fca2b);
}

.designer-progress-card small {
  color: #52645d;
  font-weight: 900;
}

.artwork-price-section,
.workflow-proof-band {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(15, 46, 35, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 28, 24, .07);
}

.artwork-price-section.premium {
  background:
    linear-gradient(135deg, rgba(20, 134, 83, .08), rgba(236, 0, 140, .05)),
    #fff;
}

.artwork-price-table {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 10px;
}

.artwork-price-table article {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(15, 46, 35, .12);
  border-radius: 8px;
  background: #f8fcfa;
}

.artwork-price-table span {
  color: #52645d;
  font-size: .86rem;
  font-weight: 800;
}

.workflow-page-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  gap: 28px;
  align-items: stretch;
  padding: 72px 5vw 52px;
  background: var(--hero-bg);
}

.workflow-page-hero h1 {
  max-width: 840px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.workflow-page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: #52645d;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 750;
}

.workflow-page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.workflow-hero-image {
  min-height: 360px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 18, 14, .82), rgba(5, 18, 14, .24)),
    url("img/showcase-crm-workflow-v103-touchup.jpg") center center / cover no-repeat;
  box-shadow: 0 26px 60px rgba(18, 28, 24, .20);
}

.workflow-page {
  display: grid;
  gap: 28px;
  padding: 48px 5vw 64px;
  background: var(--section-bg);
}

.workflow-step-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.workflow-step-timeline article,
.workflow-proof-grid article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(15, 46, 35, .12);
  border-top: 4px solid #9fca2b;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 28, 24, .07);
}

.workflow-step-timeline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e6f6ee;
  color: #0b7c52;
  font-weight: 950;
}

.workflow-step-timeline strong,
.workflow-proof-grid strong {
  color: #102018;
  font-size: 1.06rem;
  line-height: 1.2;
}

.workflow-step-timeline p,
.workflow-proof-grid p {
  margin: 0;
  color: #52645d;
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 750;
}

.workflow-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workflow-links article {
  min-height: 220px;
}

.check-row small {
  display: block;
  margin-left: 26px;
  color: #52645d;
  font-size: .82rem;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .delivery-method-grid,
  .workflow-step-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .artwork-price-table {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}

@media (max-width: 820px) {
  .delivery-method-grid,
  .delivery-lookup-panel,
  .service-price-grid,
  .workflow-page-hero,
  .workflow-proof-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-hero-image {
    min-height: 240px;
  }

  .artwork-price-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .delivery-method-grid,
  .workflow-step-timeline,
  .artwork-price-table {
    grid-template-columns: 1fr;
  }
}

.capability-scope-strip {
  box-sizing: border-box;
  width: min(100% - 32px, 1200px);
  margin: 22px auto 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.capability-scope-strip article,
.faq-decision-panel {
  border: 1px solid rgba(12, 48, 35, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(241, 249, 246, .92)),
    radial-gradient(circle at 100% 0%, rgba(178, 238, 52, .16), transparent 36%);
  box-shadow: 0 18px 44px rgba(9, 35, 25, .08);
}

.capability-scope-strip article {
  min-height: 178px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.capability-scope-strip span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(20, 134, 83, .12);
  color: var(--green);
  font-weight: 950;
}

.capability-scope-strip strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.12;
}

.capability-scope-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.42;
}

.faq-decision-panel {
  box-sizing: border-box;
  width: min(100% - 32px, 1200px);
  margin: 0 auto 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 22px;
  align-items: center;
}

.faq-decision-panel h3 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.faq-decision-panel p:not(.eyebrow) {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.48;
}

.faq-decision-actions {
  display: grid;
  gap: 10px;
}

.faq-decision-actions a {
  min-height: 48px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  background: #0b2d21;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(9, 35, 25, .12);
}

.faq-decision-actions a::after {
  content: ">";
  color: var(--lime);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .capability-scope-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-decision-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .capability-scope-strip {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 1200px);
    margin-bottom: 48px;
  }

  .faq-decision-panel {
    width: min(100% - 20px, 1200px);
    padding: 18px;
  }
}

/* Photo-led proof for catalogue and product pages */
.catalogue-visual-proof,
.product-production-proof {
  box-sizing: border-box;
  width: min(100% - 32px, 1200px);
  margin: 20px auto 28px;
}

.catalogue-visual-proof {
  display: grid;
  grid-template-columns: 1.15fr .9fr .95fr;
  gap: 12px;
}

.visual-proof-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  background: #0b1715 center / cover no-repeat;
  color: #fff;
  box-shadow: 0 24px 60px rgba(7, 26, 20, .18);
}

.visual-proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 8, .08), rgba(2, 9, 8, .84)),
    linear-gradient(90deg, rgba(2, 9, 8, .7), rgba(2, 9, 8, .08));
}

.visual-proof-paper {
  background-image: url("img/hero-paper-canvas-stickers-v105.jpg");
}

.visual-proof-machines {
  background-image: url("img/production-floor-offset-70x100.jpg");
}

.visual-proof-gifts {
  background-image: url("img/hero-print-products-gifts-v105.jpg");
}

.visual-proof-card > * {
  position: relative;
  z-index: 1;
}

.visual-proof-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.visual-proof-card strong {
  display: block;
  max-width: 520px;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.visual-proof-card a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: #0b2d21;
  font-weight: 950;
}

.product-production-proof {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(12, 48, 35, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(9, 35, 25, .08);
}

.product-production-image {
  min-height: 300px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(2, 9, 8, .04), rgba(2, 9, 8, .3)),
    url("img/production-floor-offset-70x100.jpg") center / cover no-repeat;
}

.product-production-proof > div:last-child {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(10px, 2vw, 22px);
}

.product-production-proof h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1;
}

.product-production-proof p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.5;
}

.production-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.production-proof-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(12, 48, 35, .14);
  border-radius: 999px;
  background: rgba(20, 134, 83, .08);
  color: #0b2d21;
  font-size: .82rem;
  font-weight: 950;
}

@media (max-width: 980px) {
  .catalogue-visual-proof {
    grid-template-columns: 1fr;
  }

  .visual-proof-card {
    min-height: 250px;
  }

  .product-production-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .catalogue-visual-proof,
  .product-production-proof {
    width: min(100% - 20px, 1200px);
  }

  .visual-proof-card {
    min-height: 230px;
    padding: 18px;
  }

  .product-production-image {
    min-height: 220px;
  }
}

/* v109 private page-review board */
.page-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.page-review-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(12, 48, 35, .14);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(9, 35, 25, .08);
}

.page-review-grid article.is-ok {
  border-top: 5px solid var(--green);
}

.page-review-grid article.is-warning {
  border-top: 5px solid var(--orange);
}

.page-review-grid span {
  color: var(--green);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-review-grid strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.1;
}

.page-review-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.page-review-grid .button {
  align-self: end;
  width: fit-content;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .page-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .page-review-grid {
    grid-template-columns: 1fr;
  }
}

/* v115 fast request basket */
.quick-request-widget {
  width: min(100% - 20px, 1760px);
  margin: 14px auto 28px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 14px;
  align-items: stretch;
}

.quick-request-copy,
.quick-request-card {
  border: 1px solid rgba(12, 48, 35, .14);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(9, 35, 25, .09);
}

.quick-request-copy {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(240,248,244,.94)),
    radial-gradient(circle at 88% 12%, rgba(159,202,43,.18), transparent 30%);
}

.quick-request-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.6vw, 40px);
  line-height: 1.05;
}

.quick-request-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.5;
}

.quick-request-card {
  display: grid;
  gap: 12px;
  padding: clamp(14px, 2vw, 22px);
}

.quick-request-grid,
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-request-card label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.quick-request-card input,
.quick-request-card select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(12, 48, 35, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .92rem;
  font-weight: 850;
  text-transform: none;
  letter-spacing: 0;
}

.quick-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid rgba(20, 134, 83, .18);
  border-radius: 8px;
  background: rgba(20, 134, 83, .06);
}

.quick-request-actions span {
  color: var(--green);
  font-weight: 950;
}

.request-basket-list {
  display: grid;
  gap: 8px;
  min-height: 52px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-basket-list:empty {
  border: 1px dashed rgba(12, 48, 35, .18);
  border-radius: 8px;
  background: rgba(247,250,248,.72);
}

.request-basket-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(12, 48, 35, .13);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
}

.request-basket-list strong,
.request-basket-list span,
.request-basket-list small {
  display: block;
}

.request-basket-list strong {
  color: var(--ink);
}

.request-basket-list span,
.request-basket-list small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.35;
}

.request-basket-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.request-basket-list button {
  align-self: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 32, 24, .07);
  color: var(--ink);
  box-shadow: none;
}

.request-basket-list button[data-request-basket-edit] {
  background: rgba(20, 134, 83, .12);
  color: var(--green);
}

.quick-delivery-note {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid rgba(35, 116, 183, .18);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 8%, rgba(167, 212, 45, .12), transparent 24%),
    linear-gradient(135deg, #fff, #f4f9fc);
}

.quick-delivery-note strong {
  color: var(--ink);
  font-size: .92rem;
}

.quick-delivery-note p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 780;
  line-height: 1.48;
}

.quick-submit {
  width: fit-content;
  min-height: 48px;
}

.quick-request-card > small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .quick-request-widget {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .quick-request-grid,
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .request-basket-list li {
    display: grid;
  }

  .quick-submit {
    width: 100%;
  }
}

/* v119 landing conversion controls */
.hero-order-picker {
  display: grid;
  grid-template-columns: auto minmax(170px, 1fr) minmax(150px, .8fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(4, 12, 12, .62);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}

.hero-order-picker strong,
.hero-order-picker label,
.hero-order-picker a {
  color: #fff;
}

.hero-order-picker strong {
  align-self: center;
  font-size: .94rem;
  line-height: 1.15;
}

.hero-order-picker label {
  display: grid;
  gap: 5px;
  min-width: 0;
  font-size: .7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-order-picker select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  font: inherit;
  font-size: .86rem;
  font-weight: 850;
}

.hero-order-picker .button {
  min-height: 42px;
  padding-inline: 16px;
  white-space: nowrap;
}

.hero-order-picker > a {
  grid-column: 2 / -1;
  width: fit-content;
  color: #a9f7d0;
  font-size: .82rem;
  font-weight: 950;
}

/* v121 first-screen request studio and visual category entry */
.ad-hero {
  display: grid !important;
}

.print-job-launcher {
  display: none !important;
}

.ad-hero-content {
  max-width: min(1040px, 100%);
}

.ad-hero h1,
.ad-hero p:not(.eyebrow) {
  max-width: 680px;
}

.ad-product-rail {
  display: none !important;
}

.hero-request-builder {
  display: grid;
  grid-template-columns: minmax(190px, 1.4fr) minmax(150px, .95fr) minmax(130px, .8fr) minmax(132px, .78fr) auto;
  gap: 9px;
  align-items: end;
  max-width: 1120px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
    rgba(4, 12, 12, .7);
  box-shadow: 0 20px 54px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}

.hero-request-builder-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.hero-request-builder-head strong,
.hero-request-builder label span,
.hero-request-builder small {
  color: #fff;
}

.hero-request-builder-head strong {
  font-size: 1rem;
  line-height: 1.1;
}

.hero-request-builder-head span,
.hero-request-builder small {
  color: rgba(245, 252, 248, .76);
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.32;
}

.hero-request-builder label {
  display: grid;
  gap: 5px;
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero-request-builder input,
.hero-request-builder select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  font: inherit;
  font-size: .86rem;
  font-weight: 850;
  text-transform: none;
  letter-spacing: 0;
}

.hero-request-builder .button {
  min-height: 42px;
  padding-inline: 18px;
  white-space: nowrap;
}

.hero-request-builder small {
  grid-column: 1 / -1;
  min-height: 18px;
}

.hero-request-builder small.is-ok {
  color: #a9f7d0;
}

.hero-visual-categories {
  width: min(100% - 32px, 1240px);
  margin: 10px auto 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-visual-categories a {
  position: relative;
  min-height: 182px;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 22px 56px rgba(5, 18, 16, .14);
  isolation: isolate;
}

.hero-visual-categories a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 9, 10, .08), rgba(3, 9, 10, .86)),
    linear-gradient(90deg, rgba(20, 134, 83, .18), rgba(40, 169, 223, .1));
}

.hero-visual-categories img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .24s ease;
}

.hero-visual-categories a:hover img {
  transform: scale(1.06);
}

.hero-visual-categories span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #a9f7d0;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-visual-categories strong {
  max-width: 28ch;
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.24rem);
  line-height: 1.12;
}

.landing-action-bar {
  position: sticky;
  z-index: 40;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: min(100% - 28px, 760px);
  margin: 28px auto 16px;
  padding: 8px;
  border: 1px solid rgba(16, 32, 24, .13);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(8, 20, 16, .18);
  backdrop-filter: blur(16px);
}

.landing-action-bar a {
  min-width: 130px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 32, 24, .06);
  color: var(--forest);
  font-size: .84rem;
  font-weight: 950;
  text-align: center;
}

.landing-action-bar a:first-child {
  background: linear-gradient(135deg, #148653, #0c6f45);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 134, 83, .24);
}

@media (max-width: 980px) {
  .hero-request-builder {
    grid-template-columns: 1fr 1fr;
  }

  .hero-request-builder-head,
  .hero-request-builder small {
    grid-column: 1 / -1;
  }

  .hero-visual-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-order-picker {
    grid-template-columns: 1fr 1fr;
  }

  .hero-order-picker strong,
  .hero-order-picker > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .hero-request-builder,
  .hero-order-picker {
    grid-template-columns: 1fr;
  }

  .hero-request-builder-head {
    grid-template-columns: 1fr;
  }

  .hero-request-builder .button,
  .hero-order-picker .button,
  .hero-order-picker > a {
    width: 100%;
  }

  .hero-visual-categories {
    width: min(100% - 20px, 1240px);
    grid-template-columns: 1fr;
  }

  .hero-visual-categories a {
    min-height: 164px;
  }

  .landing-action-bar {
    bottom: 8px;
    width: min(100% - 16px, 760px);
    border-radius: 18px;
  }

  .landing-action-bar a {
    flex: 1 1 120px;
    min-width: 0;
  }
}

/* v124 premium landing reset: compact quote, real photos, fewer repeated blocks */
.hero-visual-categories {
  width: min(100% - 32px, 1760px);
  margin: 14px auto 20px;
  gap: 14px;
}

.ad-hero {
  min-height: auto !important;
  padding: clamp(24px, 2.6vw, 36px) !important;
}

.site-header {
  min-height: 76px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand img {
  width: 86px;
}

.brand span {
  max-width: 120px;
  font-size: 11px;
}

.ad-hero-content {
  max-width: min(980px, 100%) !important;
  gap: 10px;
}

.ad-hero h1 {
  max-width: 940px !important;
  font-size: clamp(40px, 4.55vw, 56px) !important;
  line-height: .98;
}

.ad-hero p:not(.eyebrow) {
  max-width: 760px !important;
}

.ad-hero-actions .button {
  min-height: 44px;
}

.hero-request-builder {
  max-width: 1180px;
  margin-top: 8px;
  padding: 9px;
}

.hero-request-builder-head {
  grid-template-columns: minmax(0, 1fr);
}

.hero-request-builder-head span,
.hero-request-builder small {
  display: none !important;
}

.hero-request-builder input,
.hero-request-builder select,
.hero-request-builder .button {
  min-height: 38px;
}

.hero-visual-categories a {
  min-height: clamp(220px, 16vw, 315px);
  padding: clamp(18px, 2vw, 28px);
  box-shadow: 0 28px 72px rgba(5, 18, 16, .18);
}

.hero-visual-categories a::before {
  background:
    linear-gradient(180deg, rgba(2, 8, 8, .04), rgba(2, 8, 8, .88)),
    linear-gradient(90deg, rgba(2, 8, 8, .72), rgba(2, 8, 8, .12));
}

.hero-visual-categories span {
  background: rgba(255,255,255,.18);
  color: #b9ffdb;
}

.hero-visual-categories strong {
  max-width: 32ch;
  font-size: clamp(1.08rem, 1.5vw, 1.48rem);
}

.quick-request-widget {
  width: min(100% - 32px, 1760px);
  grid-template-columns: minmax(280px, .46fr) minmax(0, 1.54fr);
  gap: 12px;
  margin: 12px auto 24px;
}

.quick-request-copy {
  min-height: 100%;
  padding: clamp(18px, 2.2vw, 30px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,248,244,.92)),
    url("img/showcase-premium-paper-v103-touchup.jpg") center / cover no-repeat;
  background-blend-mode: screen, normal;
}

.quick-request-copy h2 {
  font-size: clamp(23px, 2vw, 34px);
}

.quick-request-copy p:not(.eyebrow) {
  max-width: 46ch;
  font-size: .96rem;
}

.quick-request-card {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-content: start;
  padding: clamp(12px, 1.5vw, 18px);
}

.quick-request-grid {
  grid-column: 1 / -1;
  grid-template-columns: minmax(150px, .85fr) minmax(190px, 1.1fr) minmax(150px, .85fr) minmax(150px, .85fr) minmax(130px, .7fr) minmax(130px, .72fr);
  gap: 8px;
}

.quick-contact-grid {
  grid-column: 1 / -1;
  grid-template-columns: minmax(170px, 1fr) minmax(180px, 1fr) minmax(150px, .75fr);
  gap: 8px;
}

.quick-field-optional,
.quick-field-note {
  display: none !important;
}

.quick-request-card input,
.quick-request-card select {
  min-height: 40px;
  font-size: .86rem;
}

.quick-request-card label {
  gap: 4px;
  font-size: .7rem;
  letter-spacing: .02em;
}

.quick-request-actions {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 8px 10px;
}

.request-basket-list {
  grid-column: 1 / -1;
  min-height: 0;
}

.request-basket-list:empty {
  min-height: 0;
  border: 0;
  background: transparent;
}

.quick-submit {
  justify-self: start;
  min-height: 42px;
}

.quick-full-link {
  align-self: center;
  justify-self: start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 32, 24, .07);
  color: var(--forest);
  font-size: .84rem;
  font-weight: 950;
}

.quick-request-card > small {
  grid-column: 1 / -1;
  margin-top: -2px;
  max-width: 72ch;
}

.catalogue-inline-actions .button {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .84rem;
}

.featured-product-grid {
  gap: 14px;
}

.featured-product-card {
  overflow: hidden;
  padding: 0 !important;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(9, 35, 25, .09);
}

.featured-product-card .product-thumb {
  position: relative;
  height: clamp(150px, 11vw, 205px);
  margin: 0;
  border-radius: 0;
  background-color: #0c1714;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.featured-product-card .product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 12, .02), rgba(4, 14, 12, .66)),
    linear-gradient(90deg, rgba(20, 134, 83, .14), rgba(40, 169, 223, .12));
}

.featured-product-card .product-thumb img {
  opacity: 0;
}

.featured-product-card > span,
.featured-product-card > strong,
.featured-product-card > p,
.featured-product-card .price-row {
  margin-left: 16px;
  margin-right: 16px;
}

.featured-product-card > span {
  margin-top: 14px;
  color: #0e8a59;
}

.featured-product-card > strong {
  font-size: clamp(1rem, 1.15vw, 1.28rem);
}

.featured-product-card > p {
  min-height: 0;
  font-size: .9rem;
  line-height: 1.42;
}

.featured-product-card .price-row {
  margin-bottom: 16px;
}

.featured-product-card[data-slug="business-cards"] .product-thumb,
.featured-product-card[data-slug="flyers"] .product-thumb {
  background-image: url("img/showcase-premium-paper-v103-touchup.jpg");
}

.featured-product-card[data-slug="stickers"] .product-thumb {
  background-image: url("img/hero-paper-canvas-stickers-v105.jpg");
}

.featured-product-card[data-slug="roll-up-banners"] .product-thumb,
.featured-product-card[data-slug="flying-banners"] .product-thumb,
.featured-product-card[data-slug="signs"] .product-thumb {
  background-image: url("img/hero-print-anything-production-v105.jpg");
}

.featured-product-card[data-slug="promotional-products"] .product-thumb,
.featured-product-card[data-slug="clothing-prints"] .product-thumb {
  background-image: url("img/showcase-branded-products-v103-touchup.jpg");
}

.designer-progress-banner {
  width: min(100% - 32px, 1760px);
  margin-top: 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97), rgba(240,248,244,.94) 54%, rgba(10, 31, 24, .16)),
    url("img/showcase-crm-workflow-v103-touchup.jpg") right center / min(44%, 620px) cover no-repeat;
}

.split-section,
.landing-action-bar,
.home-category-strip,
.business-needs-strip,
.home-popular-products,
.order-readiness-strip,
.home-sales-handoff {
  display: none !important;
}

@media (max-width: 1180px) {
  .quick-request-widget {
    grid-template-columns: 1fr;
  }

  .quick-request-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ad-hero {
    padding: 22px !important;
  }

  .ad-hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .hero-visual-categories {
    width: min(100% - 20px, 1760px);
  }

  .hero-visual-categories a {
    min-height: 210px;
  }

  .quick-request-widget {
    width: min(100% - 20px, 1760px);
  }

  .quick-request-grid,
  .quick-contact-grid,
  .quick-request-card {
    grid-template-columns: 1fr;
  }

  .quick-submit,
  .quick-full-link {
    width: 100%;
    text-align: center;
  }

  .designer-progress-banner {
    width: min(100% - 20px, 1760px);
    background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(240,248,244,.94));
  }
}

/* v125 homepage category showcase, verified reseller flow and readability pass */
.site-header nav {
  gap: 8px !important;
  align-items: center;
}

.site-header nav > a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

.site-header nav > a:not(.nav-login):not(.nav-cta):not(.lang-link) {
  border: 1px solid rgba(255, 255, 255, .12);
}

.site-header nav > a:not(.nav-login):not(.nav-cta):not(.lang-link) + a:not(.nav-login):not(.nav-cta):not(.lang-link) {
  margin-left: 2px;
}

.site-header .lang-link {
  justify-content: center;
  min-width: 38px;
  padding: 7px 10px !important;
  text-align: center;
}

.hero-visual-categories {
  margin-bottom: clamp(34px, 3.6vw, 62px) !important;
}

.quick-request-widget {
  margin-top: clamp(22px, 3vw, 46px) !important;
  margin-bottom: clamp(38px, 4vw, 72px) !important;
}

.home-category-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.7vw, 24px) !important;
}

.home-category-card {
  min-height: 100%;
  border: 1px solid rgba(16, 32, 24, .12) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(243,249,246,.98)) !important;
}

.home-category-card .product-thumb {
  height: clamp(190px, 13.2vw, 250px) !important;
  background-image: var(--category-image) !important;
  background-position: center !important;
  background-size: cover !important;
}

.home-category-card .product-thumb::after {
  background:
    linear-gradient(180deg, rgba(3, 13, 11, .02), rgba(3, 13, 11, .56)),
    linear-gradient(90deg, rgba(13, 35, 29, .14), rgba(40, 169, 223, .08)) !important;
}

.home-category-card > span,
.home-category-card > strong,
.home-category-card > p,
.home-category-card > small {
  display: block;
  margin-left: clamp(18px, 1.8vw, 26px) !important;
  margin-right: clamp(18px, 1.8vw, 26px) !important;
}

.home-category-card > span {
  margin-top: 18px !important;
  color: #0b7c52 !important;
  font-size: .75rem !important;
  letter-spacing: .06em !important;
  text-transform: uppercase;
}

.home-category-card > strong {
  margin-top: 8px !important;
  color: #102018 !important;
  font-size: clamp(1.16rem, 1.35vw, 1.55rem) !important;
  line-height: 1.12;
  text-wrap: balance;
}

.home-category-card > p {
  margin-top: 10px !important;
  color: #42564c !important;
  font-size: .94rem !important;
  line-height: 1.45;
}

.home-category-card > small {
  width: fit-content;
  margin-top: auto !important;
  margin-bottom: 20px !important;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(20, 134, 83, .10);
  color: #0b6f49 !important;
  font-weight: 950;
}

.visual-story {
  display: none !important;
}

.production-capability {
  margin-top: clamp(42px, 4.5vw, 78px) !important;
}

.faq-section {
  padding-top: clamp(42px, 4vw, 68px) !important;
  padding-bottom: clamp(42px, 4vw, 68px) !important;
  background:
    linear-gradient(180deg, rgba(248, 252, 250, .98), rgba(255, 255, 255, 1)) !important;
}

.faq-section .section-heading {
  margin-bottom: 18px !important;
}

.faq-decision-panel {
  grid-template-columns: minmax(0, .95fr) minmax(260px, .55fr) !important;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(18px, 2.2vw, 28px) !important;
  border-radius: 10px !important;
  box-shadow: 0 16px 38px rgba(18, 28, 24, .07) !important;
}

.faq-decision-panel h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.8rem) !important;
}

.faq-decision-actions {
  gap: 8px !important;
}

.faq-decision-actions a {
  min-height: 0 !important;
  padding: 10px 12px !important;
  border-radius: 7px !important;
  font-size: .84rem !important;
}

.faq-grid {
  max-width: 1180px;
  margin: 18px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.faq-grid details {
  padding: 0 !important;
  border-radius: 9px !important;
  box-shadow: none !important;
  overflow: hidden;
}

.faq-grid summary {
  min-height: 48px;
  padding: 13px 14px;
  font-size: .9rem !important;
}

.faq-grid p {
  margin: 0 !important;
  padding: 0 14px 14px;
  font-size: .88rem !important;
}

.designer-progress-banner {
  margin-top: clamp(40px, 4vw, 70px) !important;
}

.footer-logo-lockup em,
.footer-newsletter span,
.footer-consent-note {
  text-wrap: balance;
}

.footer-logo-lockup em {
  max-width: 32ch;
  line-height: 1.25;
}

.footer-contact-link span,
.footer-links a {
  line-height: 1.25;
}

.account-choice-grid .account-choice-card:nth-child(5) {
  display: none !important;
}

.reseller-login-locked {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(16, 32, 24, .14);
  border-left: 6px solid #148653;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,248,244,.94)),
    url("img/showcase-branded-products-v103-touchup.jpg") right center / min(38%, 420px) cover no-repeat;
  box-shadow: 0 18px 44px rgba(18, 28, 24, .08);
}

.reseller-login-locked p {
  max-width: 58ch;
}

.payment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 1180px) {
  .home-category-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .site-header nav {
    gap: 6px !important;
  }

  .site-header nav > a {
    padding: 7px 8px;
  }

  .home-category-showcase,
  .faq-grid,
  .faq-decision-panel,
  .payment-grid {
    grid-template-columns: 1fr !important;
  }

  .home-category-card .product-thumb {
    height: 190px !important;
  }

  .reseller-login-locked {
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,248,244,.94));
  }
}

/* v126 landing conversion pass: category-led visuals, compact intake, cleaner nav/footer */
.site-header {
  padding-inline: clamp(18px, 3vw, 42px) !important;
}

.site-header nav {
  gap: 10px !important;
}

.site-header nav > a:not(.nav-login):not(.nav-cta):not(.lang-link) {
  border-color: rgba(255, 255, 255, .18) !important;
  background: rgba(255, 255, 255, .035);
}

.site-header nav > a:not(.nav-login):not(.nav-cta):not(.lang-link)::after {
  content: "";
  width: 1px;
  height: 14px;
  margin-left: 10px;
  background: rgba(255, 255, 255, .18);
}

.site-header nav > a:nth-child(6)::after,
.site-header nav > a.nav-login::after,
.site-header nav > a.nav-cta::after,
.site-header nav > a.lang-link::after {
  content: none !important;
}

.site-header .lang-link {
  display: inline-grid !important;
  place-items: center;
  min-width: 36px !important;
  min-height: 34px !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.ad-hero {
  width: min(100% - 34px, 1500px) !important;
  min-height: clamp(520px, 58vw, 780px);
  margin-top: 18px !important;
  border-radius: 8px !important;
}

.ad-hero-content {
  max-width: 920px !important;
}

.hero-request-builder {
  max-width: 930px !important;
  grid-template-columns: minmax(170px, 1.15fr) minmax(145px, .9fr) minmax(120px, .7fr) minmax(135px, .75fr) auto !important;
  align-items: end !important;
  padding: clamp(14px, 1.5vw, 20px) !important;
  border-radius: 9px !important;
  background: rgba(255, 255, 255, .95) !important;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .20) !important;
}

.hero-request-builder-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.hero-request-builder label span {
  display: block;
  margin-bottom: 5px;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .055em;
  text-transform: uppercase;
  color: rgba(16, 32, 24, .72);
}

.hero-request-builder input,
.hero-request-builder select {
  min-height: 42px !important;
}

.hero-request-builder small {
  grid-column: 1 / -1;
  color: #0b7c52 !important;
  font-weight: 850;
}

.hero-visual-categories {
  width: min(100% - 34px, 1500px) !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 16px !important;
  margin-bottom: clamp(64px, 6vw, 104px) !important;
}

.hero-visual-categories a {
  min-height: clamp(154px, 13vw, 210px) !important;
  border-radius: 8px !important;
}

.campaign-showcase {
  display: none !important;
}

.quick-request-widget {
  display: none !important;
}

.section-band#products {
  padding-top: clamp(48px, 5vw, 86px) !important;
}

.home-category-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.home-category-card {
  border-radius: 8px !important;
  overflow: hidden;
  min-height: 420px !important;
}

.home-category-card .product-thumb {
  height: clamp(180px, 14vw, 260px) !important;
}

.home-category-card > strong {
  min-height: 2.35em;
}

.home-category-card > p {
  min-height: 4.2em;
}

.production-capability {
  width: min(100% - 34px, 1500px) !important;
  min-height: clamp(420px, 38vw, 620px);
  margin-inline: auto !important;
  border-radius: 8px !important;
}

.capability-scope-strip {
  width: min(100% - 34px, 1240px) !important;
  margin-top: -38px !important;
}

.faq-section {
  padding-top: clamp(56px, 5vw, 86px) !important;
}

.faq-decision-panel {
  grid-template-columns: 1fr !important;
  max-width: 980px !important;
}

.faq-decision-panel h3 {
  margin-bottom: 8px !important;
}

.faq-decision-actions {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.faq-grid details {
  background: #fff !important;
}

.faq-grid details[open] {
  box-shadow: 0 12px 30px rgba(18, 28, 24, .08) !important;
}

.designer-progress-banner {
  width: min(100% - 34px, 1500px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px) !important;
  border-radius: 8px !important;
}

.designer-progress-meter strong {
  color: #102018 !important;
}

.footer-logo-lockup em,
.footer-newsletter span,
.footer-consent-note,
.footer-contact-link span,
.footer-links a {
  text-wrap: auto !important;
}

.footer-logo-lockup em {
  max-width: none !important;
  white-space: nowrap;
}

.footer-contact-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.account-choice-grid .account-choice-card:nth-child(5),
.account-choice-grid [href*="backup"],
.account-choice-grid [href*="admin"] {
  display: none !important;
}

@media (max-width: 1180px) {
  .hero-request-builder {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-visual-categories,
  .home-category-showcase,
  .faq-decision-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .site-header nav > a::after {
    content: none !important;
  }

  .ad-hero,
  .production-capability {
    width: min(100% - 20px, 1500px) !important;
  }

  .hero-request-builder,
  .hero-visual-categories,
  .home-category-showcase,
  .faq-grid,
  .faq-decision-actions,
  .designer-progress-banner {
    grid-template-columns: 1fr !important;
  }

  .footer-logo-lockup em {
    white-space: normal;
  }
}

/* v127 request-builder route: landing stays premium, serious intake gets its own workspace */
.builder-page-hero {
  width: min(100% - 34px, 1500px);
  margin: 18px auto 0;
  min-height: clamp(360px, 38vw, 560px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
  padding: clamp(34px, 5vw, 76px);
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 17, 13, .96), rgba(4, 17, 13, .72) 48%, rgba(4, 17, 13, .32)),
    url("img/hero-print-anything-production-v105.jpg") center / cover no-repeat;
  box-shadow: 0 28px 88px rgba(4, 17, 13, .20);
}

.builder-page-hero h1 {
  max-width: 880px;
  margin: 12px 0;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: .92;
}

.builder-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.builder-proof-strip {
  display: grid;
  gap: 10px;
  align-self: stretch;
}

.builder-proof-strip span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-weight: 950;
}

.builder-workspace {
  padding: clamp(34px, 5vw, 76px) 17px clamp(70px, 7vw, 110px);
  background: linear-gradient(180deg, #eef7f2, #fff);
}

.builder-card {
  width: min(100%, 1320px);
  margin: auto;
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(15, 46, 35, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 72px rgba(15, 46, 35, .10);
}

.builder-section-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 6px;
}

.builder-section-head > span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  border-radius: 999px;
  background: #dff5ea;
  color: #07834d;
  font-weight: 950;
}

.builder-section-head h2 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.02;
}

.builder-section-head p {
  margin: 0;
  color: #52645d;
}

.builder-line-grid,
.builder-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.builder-line-grid label,
.builder-contact-grid label {
  display: grid;
  gap: 7px;
  color: #183126;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.builder-line-grid input,
.builder-line-grid select,
.builder-contact-grid input,
.builder-contact-grid select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(15, 46, 35, .16);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: #102018;
  font: inherit;
  font-size: .93rem;
  font-weight: 750;
  text-transform: none;
  letter-spacing: 0;
}

.builder-line-note,
.builder-files {
  grid-column: span 2;
}

.builder-line-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.builder-line-actions span {
  color: #0b7c52;
  font-weight: 950;
}

.builder-basket-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.builder-basket-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(15, 46, 35, .12);
  border-radius: 8px;
  background: #f8fcfa;
}

.builder-files small,
.builder-terms-note p {
  color: #52645d;
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.5;
  text-transform: none;
}

.builder-terms-note {
  border-left: 5px solid #18a265;
  border-radius: 8px;
  background: #eef7f2;
  padding: 16px 18px;
}

.builder-terms-note strong {
  display: block;
  margin-bottom: 5px;
}

.builder-submit {
  justify-self: start;
  min-width: 220px;
}

@media (max-width: 980px) {
  .builder-page-hero,
  .builder-line-grid,
  .builder-contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .builder-page-hero {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .builder-page-hero,
  .builder-line-grid,
  .builder-contact-grid {
    grid-template-columns: 1fr;
  }

  .builder-line-note,
  .builder-files {
    grid-column: auto;
  }
}

/* v133 launch polish: compact first-screen intake, cleaner visual rhythm, easier FAQ scanning */
.site-header nav {
  column-gap: 14px !important;
  row-gap: 8px !important;
}

.site-header nav > a {
  position: relative;
  white-space: nowrap !important;
}

.site-header nav > a:not(.nav-login):not(.nav-cta):not(.lang-link) + a:not(.nav-login):not(.nav-cta):not(.lang-link)::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(159, 202, 43, .72);
  transform: translateY(-50%);
}

.site-header .lang-link {
  display: inline-grid !important;
  min-width: 38px !important;
  min-height: 32px !important;
  place-items: center !important;
  padding: 6px 9px !important;
  text-align: center !important;
}

.ad-hero {
  margin-bottom: clamp(34px, 5vw, 82px) !important;
}

.hero-visual-categories {
  width: min(100% - 34px, 1500px) !important;
  margin-top: 0 !important;
  margin-bottom: clamp(62px, 6vw, 112px) !important;
  gap: clamp(16px, 1.8vw, 26px) !important;
}

.hero-visual-categories a {
  min-height: 260px !important;
  border-radius: 8px !important;
}

.hero-visual-categories img {
  transform: scale(1.01);
}

.section-band#products {
  padding-top: clamp(58px, 6vw, 110px) !important;
}

.home-category-showcase {
  gap: clamp(18px, 2vw, 30px) !important;
}

.home-category-card {
  box-shadow: 0 18px 52px rgba(18, 28, 24, .08) !important;
}

.home-category-card > small {
  color: #0a7c4f !important;
  font-weight: 950 !important;
}

.visual-story {
  display: none !important;
}

.production-capability {
  margin-top: clamp(64px, 7vw, 118px) !important;
}

.faq-section {
  padding-top: clamp(48px, 4vw, 74px) !important;
  padding-bottom: clamp(56px, 5vw, 92px) !important;
}

.faq-section .section-heading {
  max-width: 980px !important;
}

.faq-section .section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
}

.faq-decision-panel {
  align-items: center !important;
  padding: clamp(18px, 2.5vw, 30px) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(238,247,242,.94)),
    linear-gradient(135deg, rgba(159,202,43,.12), rgba(40,169,223,.10)) !important;
}

.faq-decision-panel h3 {
  font-size: clamp(1.25rem, 2vw, 2rem) !important;
}

.faq-decision-panel p:not(.eyebrow) {
  max-width: 68ch !important;
  line-height: 1.55 !important;
}

.faq-decision-actions {
  align-self: stretch !important;
}

.faq-decision-actions a {
  min-height: 42px !important;
  border-radius: 8px !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.2 !important;
}

.faq-grid {
  gap: 12px !important;
}

.faq-grid details {
  border-radius: 8px !important;
  box-shadow: none !important;
}

.faq-grid summary {
  min-height: 48px !important;
  padding: 13px 16px !important;
  line-height: 1.25 !important;
}

.faq-grid p {
  padding: 0 16px 16px !important;
  line-height: 1.55 !important;
}

.designer-progress-banner {
  margin-top: clamp(34px, 4vw, 72px) !important;
}

.footer-main-card {
  width: min(100% - 34px, 1320px) !important;
}

.footer-logo-lockup em,
.footer-contact-link span,
.footer-links a,
.footer-newsletter span,
.footer-consent-note {
  line-height: 1.35 !important;
}

@media (max-width: 980px) {
  .site-header nav > a::before {
    content: none !important;
  }

  .hero-visual-categories {
    margin-bottom: clamp(44px, 7vw, 78px) !important;
  }
}

/* v134 advertiser-first homepage: premium promise, prices, speed and simpler discovery */
.ad-hero {
  width: min(100% - 28px, 1580px) !important;
  min-height: clamp(600px, 70vh, 820px) !important;
  align-items: center !important;
  padding: clamp(34px, 5vw, 78px) !important;
  background:
    linear-gradient(90deg, rgba(2, 7, 10, .96) 0%, rgba(4, 14, 14, .88) 38%, rgba(5, 18, 18, .46) 67%, rgba(5, 12, 12, .16) 100%),
    linear-gradient(180deg, rgba(4, 10, 10, .10), rgba(4, 10, 10, .54)),
    url("img/hero-premium-print-studio.png") center center / cover no-repeat !important;
  box-shadow: 0 34px 94px rgba(4, 10, 10, .30) !important;
}

.ad-hero-content {
  max-width: min(1040px, 72%) !important;
  gap: 16px !important;
}

.ad-hero h1 {
  max-width: 920px !important;
  font-size: clamp(42px, 5.5vw, 74px) !important;
  line-height: .92 !important;
}

.ad-hero p:not(.eyebrow) {
  max-width: 760px !important;
  font-size: clamp(16px, 1.45vw, 20px) !important;
}

.ad-hero-actions {
  margin-top: 4px !important;
}

.ad-hero-actions .button {
  min-height: 52px !important;
  padding-inline: 24px !important;
  border-radius: 8px !important;
}

.ad-proof-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: min(100%, 980px);
  gap: 10px !important;
  margin-top: 4px !important;
}

.ad-proof-row div {
  min-width: 0 !important;
  min-height: 76px;
  padding: 12px !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06)),
    rgba(3, 15, 13, .44) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
}

.ad-proof-row strong {
  font-size: clamp(1rem, 1.35vw, 1.28rem) !important;
  line-height: 1.05 !important;
}

.ad-proof-row span {
  margin-top: 7px !important;
  color: rgba(245, 252, 248, .82) !important;
  font-size: .74rem !important;
  line-height: 1.22 !important;
  text-transform: none !important;
}

.hero-request-builder {
  max-width: 1060px !important;
  margin-top: 4px !important;
  padding: 12px !important;
  border: 1px solid rgba(255, 255, 255, .28) !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .30) !important;
}

.hero-request-builder-head strong {
  font-size: 1rem !important;
}

.hero-request-builder-head span {
  color: rgba(16, 32, 24, .68) !important;
  font-weight: 800 !important;
}

.ad-product-rail {
  max-width: min(720px, 54%) !important;
}

.ad-product-rail a {
  border-radius: 8px !important;
  background: rgba(5, 14, 14, .62) !important;
}

.home-sales-promises {
  width: min(100% - 34px, 1500px);
  margin: clamp(20px, 3vw, 42px) auto clamp(44px, 5vw, 86px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-sales-promises article {
  min-height: 145px;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,248,244,.94)),
    linear-gradient(90deg, rgba(159, 202, 43, .16), rgba(40, 169, 223, .12));
  border: 1px solid rgba(16, 32, 24, .12);
  box-shadow: 0 16px 40px rgba(18, 28, 24, .07);
}

.home-sales-promises article:nth-child(2) {
  border-top: 4px solid var(--blue);
}

.home-sales-promises article:nth-child(3) {
  border-top: 4px solid var(--pink);
}

.home-sales-promises article:nth-child(4) {
  border-top: 4px solid var(--orange);
}

.home-sales-promises strong {
  display: block;
  color: #102018;
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
  line-height: 1.02;
}

.home-sales-promises p {
  margin: 10px 0 0;
  color: #42544a;
  font-size: .95rem;
  line-height: 1.45;
}

.hero-visual-categories {
  margin-top: 0 !important;
  margin-bottom: clamp(54px, 6vw, 104px) !important;
}

.hero-visual-categories a {
  min-height: clamp(245px, 18vw, 330px) !important;
  box-shadow: 0 24px 70px rgba(18, 28, 24, .14) !important;
}

.hero-visual-categories strong {
  max-width: 34ch !important;
}

.home-audience-strip {
  width: min(100% - 34px, 1500px);
  margin: 0 auto clamp(54px, 6vw, 104px);
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.45fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(16, 32, 24, .12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,247,242,.95)),
    linear-gradient(90deg, rgba(159,202,43,.12), rgba(40,169,223,.10));
  box-shadow: 0 22px 60px rgba(18, 28, 24, .08);
}

.home-audience-strip h2 {
  margin: 0;
  color: #102018;
  font-size: clamp(1.8rem, 3.4vw, 3.8rem);
  line-height: .98;
}

.home-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-audience-grid a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16,32,24,.92), rgba(16,32,24,.80)),
    url("img/showcase-premium-paper-v103-touchup.jpg") center / cover no-repeat;
  box-shadow: 0 16px 40px rgba(18, 28, 24, .14);
}

.home-audience-grid a:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(16,32,24,.90), rgba(16,32,24,.78)),
    url("img/homepage-category-surfaces-v126.png") center / cover no-repeat;
}

.home-audience-grid a:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(16,32,24,.90), rgba(16,32,24,.78)),
    url("img/homepage-category-signage-v126.png") center / cover no-repeat;
}

.home-audience-grid a:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(16,32,24,.90), rgba(16,32,24,.78)),
    url("img/showcase-branded-products-v103-touchup.jpg") center / cover no-repeat;
}

.home-audience-grid a:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(16,32,24,.90), rgba(16,32,24,.78)),
    url("img/hero-print-products-gifts-v105.jpg") center / cover no-repeat;
}

.home-audience-grid strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.home-audience-grid span {
  color: rgba(245,252,248,.86);
  font-size: .82rem;
  line-height: 1.35;
}

.intro-strip,
.print-job-launcher,
.outcome-planner {
  display: none !important;
}

.section-band#products {
  width: min(100% - 34px, 1500px);
  margin-inline: auto;
  padding-top: clamp(12px, 3vw, 42px) !important;
}

.section-band#products .section-heading {
  max-width: 880px;
}

.section-band#products .section-heading h2 {
  font-size: clamp(2.2rem, 4.6vw, 5.4rem);
  line-height: .94;
}

.home-category-showcase {
  margin-top: 24px !important;
}

.home-category-card {
  min-height: 390px !important;
  background: #fff !important;
}

.home-category-card .product-thumb {
  height: clamp(200px, 15vw, 285px) !important;
}

.home-category-card > strong {
  min-height: auto !important;
}

.home-category-card > p {
  min-height: 3.1em !important;
}

.home-card-price {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #102018;
  background: rgba(159, 202, 43, .22);
  font-size: .78rem;
  font-style: normal;
  font-weight: 950;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(247,250,248,.76), rgba(255,255,255,.96)) !important;
}

.faq-decision-panel {
  max-width: 1120px !important;
  grid-template-columns: 1fr .72fr !important;
}

.faq-grid {
  max-width: 1120px;
  margin-inline: auto;
}

@media (max-width: 1180px) {
  .ad-hero-content {
    max-width: 100% !important;
  }

  .ad-proof-row,
  .home-sales-promises,
  .home-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-audience-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ad-hero {
    width: min(100% - 18px, 1580px) !important;
    min-height: 700px !important;
    padding: 24px !important;
    background:
      linear-gradient(180deg, rgba(2,7,10,.20), rgba(2,7,10,.82) 38%, rgba(2,7,10,.98) 100%),
      url("img/hero-premium-print-studio.png") center top / cover no-repeat !important;
  }

  .ad-hero .eyebrow {
    max-width: 28ch !important;
    font-size: .62rem !important;
    line-height: 1.35 !important;
  }

  .ad-hero h1 {
    font-size: clamp(34px, 10vw, 40px) !important;
    line-height: .96 !important;
  }

  .ad-hero p:not(.eyebrow) {
    font-size: .94rem !important;
    line-height: 1.38 !important;
  }

  .home-sales-promises,
  .home-audience-grid,
  .faq-decision-panel {
    grid-template-columns: 1fr !important;
  }

  .ad-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ad-proof-row div {
    min-height: 68px !important;
    padding: 10px !important;
  }

  .ad-proof-row strong {
    font-size: .92rem !important;
  }

  .ad-proof-row span {
    font-size: .66rem !important;
  }

  .hero-request-builder {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: hidden !important;
  }

  .hero-request-builder-head,
  .hero-request-builder small {
    grid-column: 1 / -1 !important;
  }

  .hero-request-builder label span {
    font-size: .62rem !important;
  }

  .hero-request-builder input,
  .hero-request-builder select {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 38px !important;
  }

  .hero-request-builder .button {
    grid-column: 1 / -1 !important;
    min-height: 40px !important;
  }

  .ad-product-rail {
    max-width: 100% !important;
  }

  .hero-visual-categories a {
    min-height: 230px !important;
  }
}

/* v135 launch conversion pass: bigger sales hero, compact quote path, category-family homepage */
.ad-hero {
  width: min(100% - 24px, 1720px) !important;
  min-height: clamp(660px, 78vh, 920px) !important;
  background:
    linear-gradient(90deg, rgba(2, 7, 10, .97) 0%, rgba(4, 14, 14, .91) 34%, rgba(5, 18, 18, .50) 64%, rgba(5, 12, 12, .12) 100%),
    linear-gradient(180deg, rgba(4, 10, 10, .04), rgba(4, 10, 10, .58)),
    url("img/home-advertising-hero-v135.png") center center / cover no-repeat !important;
}

.ad-hero-content {
  max-width: min(990px, 66%) !important;
}

.ad-hero h1 {
  max-width: 880px !important;
  font-size: clamp(48px, 6vw, 88px) !important;
}

.ad-hero p:not(.eyebrow) {
  max-width: 780px !important;
}

.hero-request-builder {
  max-width: 980px !important;
  grid-template-columns: minmax(180px, 1.2fr) repeat(3, minmax(125px, .82fr)) auto !important;
}

.hero-request-builder-head {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.hero-request-builder-head span,
.hero-request-builder small {
  max-width: 58ch !important;
}

.quick-request-widget,
.campaign-showcase,
.workflow-section {
  display: none !important;
}

.home-sales-promises {
  margin-bottom: clamp(64px, 7vw, 118px) !important;
}

.home-sales-promises article {
  min-height: 170px !important;
  border-top: 4px solid #148653 !important;
}

.home-sales-promises strong {
  font-size: clamp(1.1rem, 1.35vw, 1.42rem) !important;
  line-height: 1.08 !important;
}

.hero-visual-categories {
  width: min(100% - 24px, 1720px) !important;
  margin-bottom: clamp(84px, 8vw, 146px) !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.hero-visual-categories a {
  min-height: clamp(280px, 20vw, 380px) !important;
}

.home-audience-strip {
  margin-bottom: clamp(84px, 8vw, 146px) !important;
}

.section-band#products {
  width: min(100% - 24px, 1720px) !important;
  padding-top: clamp(76px, 7vw, 128px) !important;
}

.home-category-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.home-category-card {
  min-height: 430px !important;
}

.home-category-card .product-thumb {
  height: clamp(230px, 17vw, 330px) !important;
}

.home-category-card > p {
  min-height: 0 !important;
}

.production-capability {
  width: min(100% - 24px, 1720px) !important;
  margin-top: clamp(84px, 8vw, 146px) !important;
  background:
    linear-gradient(90deg, rgba(3, 10, 10, .96), rgba(3, 13, 13, .78) 46%, rgba(3, 13, 13, .20)),
    url("img/home-advertising-hero-v135.png") center center / cover no-repeat !important;
}

.capability-scope-strip {
  width: min(100% - 56px, 1280px) !important;
}

.faq-section {
  padding-top: clamp(54px, 5vw, 92px) !important;
}

.faq-decision-panel {
  max-width: 1240px !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr) !important;
}

.faq-grid {
  max-width: 1240px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.faq-grid details {
  background: rgba(255, 255, 255, .92) !important;
}

.designer-progress-banner {
  width: min(100% - 24px, 1720px) !important;
}

.footer-main-card {
  width: min(100% - 24px, 1480px) !important;
}

.footer-logo-lockup em {
  white-space: nowrap !important;
}

@media (max-width: 1180px) {
  .ad-hero-content {
    max-width: 100% !important;
  }

  .hero-request-builder,
  .hero-visual-categories,
  .home-category-showcase,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .ad-hero {
    min-height: 760px !important;
    width: min(100% - 14px, 1720px) !important;
    padding: 22px !important;
  }

  .hero-request-builder,
  .hero-visual-categories,
  .home-category-showcase,
  .faq-decision-panel,
  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-request-builder-head {
    display: grid !important;
  }
}

/* v136 live advertising dock: faster quote start, clearer offer promise */
.ad-hero {
  margin-bottom: clamp(24px, 3vw, 48px) !important;
}

.hero-request-builder {
  max-width: 1100px !important;
  grid-template-columns: minmax(180px, 1.05fr) minmax(145px, .86fr) minmax(120px, .72fr) minmax(130px, .72fr) auto auto !important;
  align-items: end !important;
  border: 1px solid rgba(255, 255, 255, .54) !important;
  background: rgba(250, 255, 252, .96) !important;
  color: #10231d !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22) !important;
}

.hero-offer-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-offer-chips span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(12, 77, 56, .14);
  border-radius: 999px;
  padding: 7px 11px;
  background: #ffffff;
  color: #17352c;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-builder-full-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 77, 56, .18);
  border-radius: 8px;
  padding: 10px 14px;
  background: #eef7f2;
  color: #0d5136;
  font-size: .78rem;
  font-weight: 950;
  text-align: center;
}

.hero-builder-full-link:hover {
  background: #ffffff;
  color: #092c21;
}

.home-live-offer-strip {
  width: min(100% - 28px, 1480px);
  margin: 0 auto clamp(48px, 5vw, 84px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-live-offer-strip article {
  min-height: 118px;
  border: 1px solid rgba(14, 67, 52, .12);
  border-top: 4px solid #9fca2b;
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(243, 250, 247, .92)),
    linear-gradient(90deg, rgba(40, 169, 223, .08), rgba(238, 28, 128, .06));
  box-shadow: 0 18px 46px rgba(14, 35, 28, .07);
}

.home-live-offer-strip article:nth-child(2) { border-top-color: #28a9df; }
.home-live-offer-strip article:nth-child(3) { border-top-color: #f57d22; }
.home-live-offer-strip article:nth-child(4) { border-top-color: #ee1c80; }

.home-live-offer-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #10231d;
  font-size: clamp(1.02rem, 1.28vw, 1.28rem);
  line-height: 1.05;
}

.home-live-offer-strip span {
  display: block;
  color: #50665c;
  font-size: .9rem;
  font-weight: 720;
  line-height: 1.42;
}

.home-sales-promises {
  margin-top: 0 !important;
}

@media (max-width: 1180px) {
  .hero-request-builder {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .hero-builder-full-link,
  .hero-request-builder small {
    grid-column: auto !important;
  }

  .home-live-offer-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-request-builder,
  .home-live-offer-strip {
    grid-template-columns: 1fr !important;
  }

  .hero-offer-chips span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

  .home-live-offer-strip article {
    min-height: 0;
  }
}

/* v137 advertising category market: stronger first-scroll selling route */
.site-header nav {
  gap: 10px;
}

.site-header nav a {
  white-space: nowrap;
}

.site-header nav a:not(.nav-login):not(.lang-link):not(.nav-cta) {
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.site-header .lang-link {
  min-width: 34px;
  justify-content: center;
  text-align: center;
  padding-inline: 9px;
}

.ad-hero {
  margin-bottom: 22px !important;
}

.home-category-market.hero-visual-categories {
  width: min(1440px, calc(100% - 56px)) !important;
  margin: 0 auto 26px !important;
  display: block !important;
  padding: 18px !important;
  border: 1px solid rgba(8, 30, 24, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 22px 54px rgba(8, 30, 24, .1);
}

.home-category-market-head {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(260px, 1fr);
  gap: 8px 28px;
  align-items: end;
  margin-bottom: 14px;
}

.home-category-market-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.home-category-market-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 3rem);
  line-height: .98;
  letter-spacing: 0;
  color: #0d1f19;
}

.home-category-market-head p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  color: #455c52;
  font-weight: 650;
  line-height: 1.45;
}

.home-category-market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-category-market-card {
  position: relative;
  isolation: isolate;
  min-height: 178px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .5);
  background: #10241d;
  box-shadow: 0 12px 26px rgba(8, 30, 24, .14);
  color: #fff;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 16px;
  text-decoration: none;
}

.home-category-market-card::before,
.home-category-market-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home-category-market-card::before {
  z-index: 0;
  background: var(--market-image) center / cover no-repeat;
  transform: scale(1.02);
  transition: transform .22s ease, filter .22s ease;
}

.home-category-market-card::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 10, 8, .02) 0%, rgba(2, 10, 8, .36) 42%, rgba(2, 10, 8, .86) 100%),
    linear-gradient(90deg, rgba(154, 219, 31, .12), rgba(40, 169, 223, .10) 38%, rgba(238, 28, 128, .14));
}

.home-category-market-card:hover::before {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.06);
}

.home-category-market-card span {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: .74rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-category-market-card strong {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(1.02rem, 1.4vw, 1.42rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.home-category-market-card small {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  line-height: 1.28;
}

.home-category-market-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.home-live-offer-strip {
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}

.product-family-deep-dive {
  display: none !important;
}

.footer-main-card {
  grid-template-columns: minmax(300px, .95fr) minmax(340px, .9fr) minmax(320px, .7fr);
  gap: 28px;
}

.footer-logo-lockup span {
  min-width: 245px;
}

.footer-logo-lockup em,
.footer-contact-link span,
.footer-newsletter span {
  max-width: none;
}

.footer-logo-lockup em {
  white-space: nowrap;
}

.footer-contact-actions {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

@media (max-width: 1180px) {
  .home-category-market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-main-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .home-category-market.hero-visual-categories {
    width: calc(100% - 24px) !important;
    padding: 12px !important;
  }

  .home-category-market-head {
    grid-template-columns: 1fr;
  }

  .home-category-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-category-market-card {
    min-height: 152px;
  }

  .site-header nav a:not(.nav-login):not(.lang-link):not(.nav-cta) {
    border-right: 0;
    padding-right: 0;
  }

  .footer-main-card,
  .footer-contact-actions {
    grid-template-columns: 1fr;
  }

  .footer-logo-lockup em {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .home-category-market-grid {
    grid-template-columns: 1fr;
  }

  .home-category-market-card {
    min-height: 144px;
  }
}

/* v137 mobile guard against older visual-card rules */
.home-category-market.hero-visual-categories {
  box-sizing: border-box;
}

.home-category-market.hero-visual-categories .home-category-market-card {
  aspect-ratio: auto !important;
  height: auto !important;
}

@media (max-width: 820px) {
  .home-category-market.hero-visual-categories {
    max-width: calc(100vw - 24px) !important;
  }

  .home-category-market.hero-visual-categories .home-category-market-card {
    min-height: 152px !important;
  }

  .footer-logo-lockup span {
    min-width: 0;
  }

  .footer-logo-lockup em,
  .footer-contact-link span,
  .footer-newsletter span {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .home-category-market.hero-visual-categories .home-category-market-card {
    min-height: 144px !important;
  }
}

/* v139 flyer price matrix */
.product-price-matrix {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto 24px;
  padding: 18px;
  border: 1px solid rgba(8, 30, 24, .12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(240, 249, 245, .92)),
    #fff;
  box-shadow: 0 22px 54px rgba(8, 30, 24, .1);
}

.price-matrix-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.price-matrix-head h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.45rem, 2.2vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.price-matrix-head p:not(.eyebrow),
.price-matrix-note {
  margin: 8px 0 0;
  max-width: 840px;
  color: #43584f;
  font-weight: 650;
  line-height: 1.45;
}

.price-matrix-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: #eef7f2;
  border: 1px solid rgba(8, 30, 24, .1);
}

.price-matrix-controls label {
  display: grid;
  gap: 6px;
  color: #163328;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price-matrix-controls select {
  min-height: 44px;
  border: 1px solid rgba(8, 30, 24, .18);
  border-radius: 7px;
  background: #fff;
  color: #10251d;
  font: inherit;
  font-size: .95rem;
  font-weight: 800;
  padding: 0 12px;
}

.price-matrix-result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.price-matrix-result article {
  min-height: 86px;
  padding: 14px;
  border-radius: 8px;
  background: #10251d;
  color: #fff;
  box-shadow: 0 12px 26px rgba(8, 30, 24, .12);
}

.price-matrix-result span {
  display: block;
  margin-bottom: 8px;
  color: #9adb1f;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-matrix-result strong {
  color: #fff;
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.price-matrix-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
  border: 1px solid rgba(8, 30, 24, .1);
  border-radius: 8px;
  background: #fff;
}

.price-matrix-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: .92rem;
}

.price-matrix-table th,
.price-matrix-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(8, 30, 24, .08);
  text-align: left;
}

.price-matrix-table th {
  background: #f3faf6;
  color: #10251d;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-matrix-table td {
  color: #244337;
  font-weight: 800;
}

.price-matrix-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 860px) {
  .price-matrix-head {
    display: grid;
    align-items: start;
  }

  .price-matrix-controls,
  .price-matrix-result {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .product-price-matrix {
    width: calc(100% - 24px);
    padding: 12px;
  }

  .price-matrix-controls,
  .price-matrix-result {
    grid-template-columns: 1fr;
  }
}

/* v140 after-delivery claim guidance */
.claim-info-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .34fr);
  gap: 16px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(4, 22, 16, .9), rgba(17, 54, 42, .78)), url('img/showcase-production-workflow.jpg') center/cover;
  color: #fff;
  box-shadow: 0 24px 60px rgba(8, 24, 18, .18);
}

.claim-info-hero h1 {
  max-width: 780px;
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(34px, 6vw, 74px);
  line-height: .9;
  letter-spacing: 0;
}

.claim-info-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.88);
  font-weight: 760;
  line-height: 1.55;
}

.claim-info-hero .eyebrow {
  color: #a8ff3d;
}

.claim-info-hero aside {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  text-align: center;
}

.claim-info-hero aside strong {
  display: block;
  color: #a8ff3d;
  font-size: 78px;
  line-height: .9;
}

.claim-info-hero aside span {
  color: #fff;
  font-weight: 950;
}

.claim-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.claim-info-page {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 64px;
  display: grid;
  gap: 18px;
}

.claim-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.claim-info-grid article,
.claim-warning-panel,
.claim-evidence-info,
.claim-process-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 40px rgba(10, 28, 20, .08);
}

.claim-info-grid article {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 16px;
  border-top: 5px solid var(--green);
}

.claim-info-grid article:nth-child(2) { border-top-color: var(--blue); }
.claim-info-grid article:nth-child(3) { border-top-color: var(--pink); }
.claim-info-grid article:nth-child(4) { border-top-color: var(--orange); }

.claim-info-grid span,
.claim-warning-panel strong {
  color: var(--ink);
  font-weight: 950;
  font-size: 18px;
}

.claim-info-grid p,
.claim-warning-panel p,
.claim-process-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 720;
}

.claim-process-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
}

.claim-process-band h2,
.claim-evidence-info h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: .98;
}

.claim-process-band ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.claim-process-band li {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  font-weight: 900;
  line-height: 1.45;
}

.claim-evidence-info {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
}

.claim-evidence-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.claim-evidence-info-grid div {
  min-height: 86px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.claim-evidence-info-grid span {
  color: var(--green);
  font-weight: 950;
}

.claim-evidence-info-grid strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.claim-warning-panel {
  padding: 18px;
  border-left: 6px solid var(--orange);
}

@media (max-width: 980px) {
  .claim-info-hero,
  .claim-process-band,
  .claim-evidence-info,
  .claim-info-grid {
    grid-template-columns: 1fr;
  }

  .claim-evidence-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .claim-info-hero,
  .claim-info-page {
    width: min(100% - 20px, 1180px);
  }

  .claim-process-band ol,
  .claim-evidence-info-grid {
    grid-template-columns: 1fr;
  }
}

/* v141 homepage visual repair, spacing and contrast hardening */
.home-category-market.hero-visual-categories {
  margin-top: 18px !important;
  margin-bottom: 26px !important;
  padding: 16px !important;
  background: rgba(255, 255, 255, .94) !important;
}

.home-category-market-grid {
  grid-template-columns: repeat(5, minmax(150px, 1fr)) !important;
  grid-auto-flow: row dense;
  gap: 10px !important;
}

.home-category-market-card {
  min-height: 188px !important;
  border-color: rgba(8, 30, 24, .12) !important;
  background: #10241d !important;
}

.home-category-market-card::before {
  background: var(--market-image) center / cover no-repeat !important;
  z-index: 0 !important;
  opacity: 1 !important;
  filter: saturate(1.08) contrast(1.04);
}

.home-category-market.hero-visual-categories .home-category-market-card::before {
  background: var(--market-image) center / cover no-repeat !important;
  z-index: 0 !important;
}

.home-category-market.hero-visual-categories .home-category-market-card::after {
  z-index: 1 !important;
}

.home-category-market.hero-visual-categories .home-category-market-card > * {
  position: relative;
  z-index: 2;
}

.home-category-market-card::after {
  background:
    linear-gradient(180deg, rgba(2, 10, 8, .04) 0%, rgba(2, 10, 8, .36) 46%, rgba(2, 10, 8, .88) 100%),
    linear-gradient(90deg, rgba(159, 202, 43, .10), rgba(40, 169, 223, .08) 42%, rgba(236, 0, 140, .12)) !important;
}

.home-category-market-card span,
.home-category-market-card strong,
.home-category-market-card small {
  text-shadow: 0 2px 14px rgba(0, 0, 0, .44);
}

.home-category-market-card span {
  background: rgba(255, 255, 255, .22) !important;
  color: #fff !important;
}

.home-category-market-card small {
  color: rgba(255, 255, 255, .94) !important;
}

.home-live-offer-strip,
.home-sales-promises,
.home-audience-strip,
.production-capability-hero,
.faq-section,
.designer-progress-banner {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.home-sales-promises {
  gap: 10px !important;
}

.home-sales-promises article,
.home-live-offer-strip article,
.faq-grid details,
.faq-decision-panel,
.designer-progress-banner,
.claim-info-grid article,
.claim-warning-panel,
.claim-process-band li {
  background: rgba(255, 255, 255, .96) !important;
  color: #102018 !important;
}

.home-sales-promises article strong,
.home-live-offer-strip article strong,
.faq-grid summary,
.faq-decision-panel h3,
.designer-progress-banner h2,
.claim-info-grid h2,
.claim-warning-panel strong,
.claim-process-band strong {
  color: #102018 !important;
}

.home-sales-promises article p,
.home-live-offer-strip article span,
.faq-grid p,
.faq-decision-panel p,
.designer-progress-banner p,
.claim-info-grid p,
.claim-warning-panel p,
.claim-process-band span {
  color: #33483e !important;
}

.home-category-showcase {
  gap: 16px !important;
}

.home-category-card .home-card-price,
.featured-product-card .home-card-price {
  color: #0c6f45 !important;
  opacity: 1 !important;
  font-weight: 900 !important;
}

.home-audience-strip {
  padding-block: 28px !important;
}

.home-audience-grid a {
  min-height: 178px;
}

.site-header nav {
  column-gap: 12px !important;
}

.site-header nav a {
  color: rgba(245, 252, 248, .92) !important;
}

.site-header .lang-link {
  display: inline-flex;
  align-items: center;
  min-width: 34px !important;
  color: #102018 !important;
  background: rgba(255, 255, 255, .92) !important;
}

.site-footer p,
.site-footer span,
.site-footer a,
.footer-contact-link span,
.footer-newsletter span {
  color: rgba(245, 252, 248, .84) !important;
}

@media (max-width: 1180px) {
  .home-category-market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .home-category-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-category-market-card {
    min-height: 162px !important;
  }
}

@media (max-width: 520px) {
  .home-category-market-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v142 claim intake and security workflow polish */
.claim-intake-panel {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(16, 32, 24, .13);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(238, 248, 243, .96)),
    #fff;
  box-shadow: 0 18px 44px rgba(16, 32, 24, .08);
}

.claim-intake-copy h2 {
  margin: 6px 0 10px;
  max-width: 560px;
  color: #102018;
}

.claim-intake-copy p,
.claim-form-note p {
  color: #33483e;
  line-height: 1.55;
}

.claim-intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.claim-intake-form label,
.claim-upload-grid label {
  display: grid;
  gap: 6px;
  color: #102018;
  font-weight: 900;
}

.claim-intake-form input,
.claim-intake-form select,
.claim-intake-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(16, 32, 24, .16);
  border-radius: 8px;
  background: #fff;
  color: #102018;
  padding: 10px 12px;
  font: inherit;
}

.claim-intake-form textarea {
  resize: vertical;
}

.claim-wide,
.claim-upload-grid,
.claim-form-note,
.claim-intake-form .button {
  grid-column: 1 / -1;
}

.claim-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.claim-upload-grid label {
  min-height: 112px;
  padding: 12px;
  border: 1px dashed rgba(16, 32, 24, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
}

.claim-upload-grid input {
  padding: 8px;
  min-height: auto;
  font-size: 13px;
}

.claim-form-note {
  padding: 14px;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: rgba(40, 169, 223, .08);
}

@media (max-width: 980px) {
  .claim-intake-panel,
  .claim-intake-form,
  .claim-upload-grid {
    grid-template-columns: 1fr;
  }
}

/* v143 homepage category image and spacing repair */
.home-category-market.hero-visual-categories {
  width: min(1500px, calc(100% - 48px)) !important;
  margin-top: 16px !important;
  margin-bottom: 34px !important;
  padding: 20px !important;
  border-color: rgba(16, 32, 24, .13) !important;
  background: rgba(255, 255, 255, .96) !important;
}

.home-category-market-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(150px, 1fr)) !important;
  grid-auto-flow: row !important;
  gap: 14px !important;
}

.home-category-market-card {
  min-height: 214px !important;
  aspect-ratio: auto !important;
  padding: 14px !important;
  justify-content: flex-end !important;
  border-radius: 8px !important;
  border-color: rgba(16, 32, 24, .14) !important;
  background: #0b1e18 !important;
}

.home-category-market-card::before {
  background: var(--market-image) center / cover no-repeat !important;
  opacity: 1 !important;
  filter: saturate(1.16) contrast(1.08) brightness(1.06) !important;
}

.home-category-market-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.16) contrast(1.08) brightness(1.06);
  transform: scale(1.02);
  transition: transform .22s ease, filter .22s ease;
}

.home-category-market-card:hover .home-category-market-img {
  transform: scale(1.07);
  filter: saturate(1.22) contrast(1.12) brightness(1.08);
}

.home-category-market-card::after {
  background:
    linear-gradient(180deg, rgba(2, 10, 8, .04) 0%, rgba(2, 10, 8, .18) 34%, rgba(2, 10, 8, .82) 100%),
    linear-gradient(90deg, rgba(4, 78, 54, .18), rgba(40, 169, 223, .10) 46%, rgba(236, 0, 140, .13)) !important;
}

.home-category-market-card span,
.home-category-market-card strong,
.home-category-market-card small {
  position: relative !important;
  z-index: 2 !important;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.home-category-market-card span {
  background: rgba(255, 255, 255, .18) !important;
  border-color: rgba(255, 255, 255, .34) !important;
  color: #fff !important;
}

.home-category-market-card strong {
  color: #fff !important;
  font-size: clamp(1rem, 1.22vw, 1.32rem) !important;
}

.home-category-market-card small {
  color: rgba(255, 255, 255, .94) !important;
  font-weight: 760 !important;
}

.home-category-market-card:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
}

.home-live-offer-strip,
.home-sales-promises,
.home-audience-strip,
.production-capability-hero,
.faq-section,
.designer-progress-banner {
  margin-top: 34px !important;
  margin-bottom: 34px !important;
}

.home-sales-promises article,
.home-live-offer-strip article,
.faq-grid details,
.faq-decision-panel,
.designer-progress-banner {
  box-shadow: 0 16px 34px rgba(8, 30, 24, .08) !important;
}

@media (max-width: 1180px) {
  .home-category-market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .home-category-market.hero-visual-categories {
    width: calc(100% - 22px) !important;
    padding: 12px !important;
  }

  .home-category-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-category-market-card {
    min-height: 176px !important;
  }
}

@media (max-width: 480px) {
  .home-category-market-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v147 calmer category photos: monochrome scan state, color on intent */
.home-category-market-card .home-category-market-img {
  opacity: 0 !important;
}

.home-category-market-card::before {
  opacity: .9 !important;
  filter: grayscale(1) saturate(.12) contrast(1.08) brightness(.72) !important;
  transform: scale(1.01) !important;
}

.home-category-market-card:hover::before,
.home-category-market-card:focus-visible::before {
  opacity: 1 !important;
  filter: grayscale(0) saturate(1.08) contrast(1.08) brightness(.9) !important;
  transform: scale(1.06) !important;
}

.home-category-market-card::after {
  background:
    linear-gradient(180deg, rgba(2, 10, 8, .12) 0%, rgba(2, 10, 8, .42) 45%, rgba(2, 10, 8, .88) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0)) !important;
}

.home-category-market-card:hover::after,
.home-category-market-card:focus-visible::after {
  background:
    linear-gradient(180deg, rgba(2, 10, 8, .02) 0%, rgba(2, 10, 8, .26) 42%, rgba(2, 10, 8, .82) 100%),
    linear-gradient(90deg, rgba(154, 219, 31, .12), rgba(40, 169, 223, .08) 44%, rgba(238, 28, 128, .10)) !important;
}

.home-category-market-card:nth-child(1)::before { background: url("img/showcase-premium-paper-v103-touchup.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(2)::before { background: url("img/production-floor-offset-70x100.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(3)::before { background: url("img/homepage-category-surfaces-v126.png") center / cover no-repeat !important; }
.home-category-market-card:nth-child(4)::before { background: url("img/hero-paper-canvas-stickers-v105.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(5)::before { background: url("img/homepage-category-signage-v126.png") center / cover no-repeat !important; }
.home-category-market-card:nth-child(6)::before { background: url("img/showcase-branded-products-v103-touchup.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(7)::before { background: url("img/homepage-category-gifts-v126.png") center / cover no-repeat !important; }
.home-category-market-card:nth-child(8)::before { background: url("img/hero-print-products-gifts-v105.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(9)::before { background: url("img/home-advertising-hero-v135.png") center / cover no-repeat !important; }
.home-category-market-card:nth-child(10)::before { background: url("img/hero-print-anything-production-v105.jpg") center / cover no-repeat !important; }

.home-category-market.hero-visual-categories .home-category-market-card:nth-child(1)::before { background: url("img/showcase-premium-paper-v103-touchup.jpg") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(2)::before { background: url("img/production-floor-offset-70x100.jpg") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(3)::before { background: url("img/homepage-category-surfaces-v126.png") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(4)::before { background: url("img/hero-paper-canvas-stickers-v105.jpg") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(5)::before { background: url("img/homepage-category-signage-v126.png") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(6)::before { background: url("img/showcase-branded-products-v103-touchup.jpg") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(7)::before { background: url("img/homepage-category-gifts-v126.png") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(8)::before { background: url("img/hero-print-products-gifts-v105.jpg") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(9)::before { background: url("img/home-advertising-hero-v135.png") center / cover no-repeat !important; }
.home-category-market.hero-visual-categories .home-category-market-card:nth-child(10)::before { background: url("img/hero-print-anything-production-v105.jpg") center / cover no-repeat !important; }

.home-category-card .product-thumb {
  filter: grayscale(1) saturate(.12) contrast(1.05) brightness(.86) !important;
  transition: filter .22s ease, transform .22s ease !important;
}

.home-category-card:hover .product-thumb,
.home-category-card:focus-visible .product-thumb {
  filter: grayscale(0) saturate(1.05) contrast(1.05) brightness(.98) !important;
  transform: translateY(-1px) scale(1.015);
}

.home-category-card:nth-child(1) .product-thumb { background-image: url("img/showcase-premium-paper-v103-touchup.jpg") !important; }
.home-category-card:nth-child(2) .product-thumb { background-image: url("img/production-floor-offset-70x100.jpg") !important; }
.home-category-card:nth-child(3) .product-thumb { background-image: url("img/homepage-category-surfaces-v126.png") !important; }
.home-category-card:nth-child(4) .product-thumb { background-image: url("img/hero-paper-canvas-stickers-v105.jpg") !important; }
.home-category-card:nth-child(5) .product-thumb { background-image: url("img/homepage-category-signage-v126.png") !important; }
.home-category-card:nth-child(6) .product-thumb { background-image: url("img/showcase-branded-products-v103-touchup.jpg") !important; }

.home-category-market-card span {
  background: rgba(255, 255, 255, .13) !important;
}

/* v199 September Reset 2026 campaign */
.home-september-reset,
.september-hero,
.september-pass,
.september-how,
.september-terms,
.september-final-cta {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.home-september-reset {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  margin-top: 1.25rem;
  padding: clamp(1rem, 2.5vw, 2rem);
  border: 1px solid rgba(28, 218, 197, .22);
  border-radius: 10px;
  background: linear-gradient(135deg, #071a2d, #063b42 66%, #0a685f);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6, 25, 45, .18);
}

.home-september-reset > img {
  width: 100%;
  height: clamp(220px, 25vw, 330px);
  object-fit: cover;
  border-radius: 8px;
}

.home-september-reset h2,
.home-september-reset p { color: #fff; }
.home-september-reset h2 { margin: .3rem 0 .7rem; font-size: clamp(1.9rem, 4vw, 3.4rem); line-height: .98; }
.home-september-reset > div > div { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.15rem; }
.home-september-reset > div > div > span,
.september-pass-code {
  display: inline-flex;
  padding: .55rem .8rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
}

.september-reset-page main { background: #f7f4ef; }
.september-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}
.september-hero-copy h1 { margin: .8rem 0 1rem; color: #09223b; font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: .9; letter-spacing: -.055em; }
.september-hero-copy > p { max-width: 700px; color: #3d5366; font-size: clamp(1rem, 1.8vw, 1.25rem); }
.september-pass-code { margin-top: .65rem; border-color: rgba(5,117,111,.24); color: #06756f; background: rgba(8,184,169,.08); }
.september-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
.september-proof-list { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin: 1.25rem 0 0; padding: 0; list-style: none; color: #38576a; }
.september-proof-list li::before { content: '✓'; margin-right: .45rem; color: #008d83; font-weight: 900; }
.september-hero-visual { margin: 0; padding: .75rem; border-radius: 12px; background: #071a2d; box-shadow: 0 30px 80px rgba(7,26,45,.22); }
.september-hero-visual img { display: block; width: 100%; aspect-ratio: 16 / 10; border-radius: 8px; object-fit: cover; }
.september-hero-visual figcaption { display: grid; gap: .25rem; padding: .85rem .45rem .25rem; color: #fff; }
.september-hero-visual figcaption span { color: #b9d3d3; }

.september-pass,
.september-how,
.september-terms { padding-block: clamp(2.8rem, 6vw, 6rem); }
.september-section-head { max-width: 760px; margin-bottom: 1.5rem; }
.september-section-head h2,
.september-how h2,
.september-terms h2,
.september-final-cta h2 { margin: .35rem 0 .75rem; color: #09223b; font-size: clamp(2rem, 4.5vw, 4rem); line-height: .98; }
.september-option-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.september-option-grid a { display: grid; gap: .75rem; min-height: 270px; padding: 1.4rem; border: 1px solid rgba(7,26,45,.14); border-radius: 10px; background: #fff; color: #09223b; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.september-option-grid a:hover { transform: translateY(-4px); border-color: rgba(0,141,131,.42); box-shadow: 0 20px 55px rgba(7,26,45,.12); }
.september-option-grid a > span { color: #ff6b13; font-size: 2rem; font-weight: 950; }
.september-option-grid strong { font-size: 1.35rem; }
.september-option-grid p { margin: 0; color: #526577; }
.september-option-grid small { align-self: end; color: #08776f; font-weight: 850; }

.september-how { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: 2rem; align-items: start; border-top: 1px solid rgba(7,26,45,.12); }
.september-how ol { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.september-how li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; padding: 1rem; border-radius: 8px; background: #fff; }
.september-how b { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: #ff6b13; color: #fff; }
.september-how li span { display: grid; gap: .25rem; color: #526577; }
.september-how li strong { color: #09223b; }

.september-terms { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 2rem; border-top: 1px solid rgba(7,26,45,.12); }
.september-terms ul { margin: 0; padding: 1.25rem 1.25rem 1.25rem 2.4rem; border-radius: 10px; background: #fff7ef; color: #455c6d; }
.september-terms li + li { margin-top: .75rem; }
.september-final-cta { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: clamp(2.5rem, 6vw, 6rem); padding: clamp(1.5rem, 4vw, 3.5rem); border-radius: 12px; background: linear-gradient(130deg, #071a2d, #063d43); color: #fff; }
.september-final-cta h2,
.september-final-cta p { color: #fff; }
.september-final-cta > div:last-child { display: flex; flex-wrap: wrap; gap: .7rem; flex: 0 0 auto; }

@media (max-width: 880px) {
  .home-september-reset,
  .september-hero,
  .september-how,
  .september-terms { grid-template-columns: 1fr; }
  .september-option-grid { grid-template-columns: 1fr; }
  .september-option-grid a { min-height: 0; }
  .september-final-cta { display: grid; align-items: start; }
}

@media (max-width: 560px) {
  .home-september-reset,
  .september-hero,
  .september-pass,
  .september-how,
  .september-terms,
  .september-final-cta { width: min(100% - 1rem, 1180px); }
  .home-september-reset > img { height: 200px; }
  .september-hero-copy h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .september-hero-actions .button,
  .september-final-cta .button { width: 100%; text-align: center; }
}

/* v148 header/footer polish: clearer navigation separation and steadier footer text */
.site-header {
  gap: clamp(18px, 3vw, 44px) !important;
}

.site-header nav {
  align-items: center !important;
  gap: 6px !important;
}

.site-header nav a {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
}

.site-header nav a + a::before {
  content: "";
  width: 1px;
  height: 14px;
  margin-right: 8px;
  background: rgba(255, 255, 255, .16);
}

.site-header nav .nav-login::before,
.site-header nav .lang-link::before,
.site-header nav .nav-cta::before {
  display: none;
}

.site-header nav .lang-link {
  min-width: 34px;
  justify-content: center;
  padding-inline: 9px !important;
}

.site-footer {
  padding: clamp(34px, 4vw, 58px) clamp(24px, 7vw, 120px) !important;
}

.footer-main-card {
  width: min(100%, 1480px);
  margin-inline: auto;
}

.footer-logo-lockup span,
.footer-contact-link,
.footer-links a,
.footer-newsletter span,
.footer-consent-note {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.footer-logo-lockup em {
  display: inline-block;
  max-width: 34ch;
  line-height: 1.25;
}

.footer-contact-actions {
  grid-template-columns: repeat(2, minmax(170px, 1fr)) !important;
}

.footer-link-grid {
  grid-template-columns: minmax(210px, .95fr) minmax(170px, .58fr) !important;
  align-content: start;
}

.footer-links {
  gap: 7px !important;
}

.footer-links a {
  width: fit-content;
  max-width: 100%;
  color: rgba(255, 255, 255, .82) !important;
  line-height: 1.16;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff !important;
}

.footer-newsletter {
  min-width: min(100%, 320px);
}

.footer-newsletter-row {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

.footer-newsletter-row input {
  min-width: 0;
}

/* v151 public-flow cache + page readability polish */
.delivery-page,
.design-services-page,
.trust-page,
.workflow-page {
  max-width: 1500px;
  margin-inline: auto;
}

.workflow-page-hero,
.fees-hero,
.trust-hero {
  max-width: 1500px;
  margin-inline: auto;
}

.workflow-step-timeline article p,
.delivery-method-card p,
.payment-grid article p,
.artwork-price-table span,
.fee-row span,
.claim-info-grid p {
  color: #263b31 !important;
}

.delivery-method-card strong,
.payment-grid article h2,
.artwork-price-table strong,
.fee-row strong,
.workflow-step-timeline strong {
  color: #0d1f18 !important;
}

.delivery-method-card,
.payment-grid article,
.workflow-step-timeline article,
.artwork-price-table article {
  min-width: 0;
}

.delivery-method-card span,
.payment-grid article span,
.workflow-step-timeline article span {
  overflow-wrap: anywhere;
}

.delivery-lookup-panel,
.payment-integration-panel,
.workflow-proof-band,
.fees-notes article {
  border-color: rgba(16, 32, 24, .16) !important;
}

.home-category-market-card::before {
  transition: filter .24s ease, opacity .24s ease, transform .24s ease !important;
}

@media (max-width: 980px) {
  .site-header nav a + a::before {
    display: none;
  }

  .site-header nav {
    gap: 8px !important;
  }

  .footer-link-grid,
  .footer-contact-actions {
    grid-template-columns: 1fr !important;
  }
}

/* v144 delivery, payment and order-readiness polish */
.delivery-page,
.fees-page,
.trust-page,
.workflow-page {
  color: #102018;
}

.delivery-liability-note,
.payment-launch-note,
.trust-note,
.workflow-proof-band,
.delivery-lookup-panel {
  border: 1px solid rgba(16, 32, 24, .14) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 18px 42px rgba(16, 32, 24, .08) !important;
}

.delivery-liability-note p,
.delivery-method-card p,
.delivery-lookup-panel p,
.trust-page p,
.workflow-page p,
.fees-notes p {
  color: #33483e !important;
  line-height: 1.55 !important;
}

.delivery-method-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.delivery-method-card,
.payment-grid article,
.workflow-step-timeline article {
  min-height: 132px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(16, 32, 24, .14) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(242, 249, 246, .94)) !important;
  box-shadow: 0 14px 28px rgba(16, 32, 24, .07) !important;
}

.delivery-method-card span,
.payment-grid article span,
.workflow-step-timeline article span {
  color: #0c6f45 !important;
  font-weight: 900 !important;
}

.delivery-method-card strong,
.payment-grid article h2,
.workflow-step-timeline article h2,
.fees-notes h2,
.payment-checklist h2 {
  color: #102018 !important;
}

.delivery-search-widget input,
.delivery-search-widget select,
.delivery-search-widget textarea {
  color: #102018 !important;
  background: #fff !important;
  border-color: rgba(16, 32, 24, .2) !important;
}

.delivery-lookup-result {
  color: #102018 !important;
  background: rgba(12, 111, 69, .08) !important;
  border: 1px solid rgba(12, 111, 69, .18) !important;
}

.payment-grid,
.payment-checklist,
.fees-notes.delivery-next-steps,
.workflow-links {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.payment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.payment-checklist li {
  color: #263b31 !important;
}

@media (max-width: 1100px) {
  .delivery-method-grid,
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .delivery-method-grid,
  .payment-grid,
  .payment-checklist,
  .fees-notes.delivery-next-steps,
  .workflow-links {
    grid-template-columns: 1fr !important;
  }
}

/* v145 Viva bridge, account and payment cleanup */
.payment-status-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem;
  border: 1px solid rgba(15, 45, 35, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(9, 28, 22, 0.08);
}

.payment-status-card span,
.payment-return-grid span {
  color: #0a8b59;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.payment-status-card strong {
  color: #10241d;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.payment-status-card p {
  color: #41584f;
  margin: 0;
}

.payment-status-card.is-ready {
  border-color: rgba(23, 160, 95, 0.35);
  background: linear-gradient(135deg, rgba(237, 255, 246, 0.96), rgba(255, 255, 255, 0.92));
}

.payment-status-card.is-standby {
  border-color: rgba(255, 151, 56, 0.35);
  background: linear-gradient(135deg, rgba(255, 248, 235, 0.96), rgba(255, 255, 255, 0.92));
}

.payment-integration-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(15, 45, 35, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.payment-integration-steps,
.payment-return-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.payment-integration-steps article,
.payment-return-grid article {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(15, 45, 35, 0.12);
  border-radius: 8px;
  background: #f8fbf8;
}

.payment-integration-steps b {
  display: inline-grid;
  width: 1.65rem;
  height: 1.65rem;
  margin-bottom: 0.6rem;
  place-items: center;
  border-radius: 999px;
  background: #0a8b59;
  color: #ffffff;
  font-size: 0.8rem;
}

.payment-integration-steps strong,
.payment-return-grid strong {
  display: block;
  color: #10241d;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.payment-integration-steps p {
  color: #4b5e56;
  margin: 0.4rem 0 0;
}

.payment-return-page {
  display: grid;
  gap: 1.2rem;
}

@media (max-width: 820px) {
  .payment-integration-steps,
  .payment-return-grid {
    grid-template-columns: 1fr;
  }
}

/* v147 final category visual override must stay at the end of the file */
.home-category-market-card .home-category-market-img {
  opacity: 0 !important;
}

.home-category-market-card::before {
  opacity: .9 !important;
  filter: grayscale(1) saturate(.12) contrast(1.08) brightness(.72) !important;
  transform: scale(1.01) !important;
}

.home-category-market-card:hover::before,
.home-category-market-card:focus-visible::before {
  opacity: 1 !important;
  filter: grayscale(0) saturate(1.08) contrast(1.08) brightness(.9) !important;
  transform: scale(1.06) !important;
}

.home-category-market-card::after {
  background:
    linear-gradient(180deg, rgba(2, 10, 8, .12) 0%, rgba(2, 10, 8, .42) 45%, rgba(2, 10, 8, .88) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0)) !important;
}

.home-category-market-card:hover::after,
.home-category-market-card:focus-visible::after {
  background:
    linear-gradient(180deg, rgba(2, 10, 8, .02) 0%, rgba(2, 10, 8, .26) 42%, rgba(2, 10, 8, .82) 100%),
    linear-gradient(90deg, rgba(154, 219, 31, .12), rgba(40, 169, 223, .08) 44%, rgba(238, 28, 128, .10)) !important;
}

.home-category-market-card:nth-child(1)::before { background: url("img/showcase-premium-paper-v103-touchup.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(2)::before { background: url("img/production-floor-offset-70x100.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(3)::before { background: url("img/homepage-category-surfaces-v126.png") center / cover no-repeat !important; }
.home-category-market-card:nth-child(4)::before { background: url("img/hero-paper-canvas-stickers-v105.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(5)::before { background: url("img/homepage-category-signage-v126.png") center / cover no-repeat !important; }
.home-category-market-card:nth-child(6)::before { background: url("img/showcase-branded-products-v103-touchup.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(7)::before { background: url("img/homepage-category-gifts-v126.png") center / cover no-repeat !important; }
.home-category-market-card:nth-child(8)::before { background: url("img/hero-print-products-gifts-v105.jpg") center / cover no-repeat !important; }
.home-category-market-card:nth-child(9)::before { background: url("img/home-advertising-hero-v135.png") center / cover no-repeat !important; }
.home-category-market-card:nth-child(10)::before { background: url("img/hero-print-anything-production-v105.jpg") center / cover no-repeat !important; }

.home-category-card .product-thumb {
  filter: grayscale(1) saturate(.12) contrast(1.05) brightness(.86) !important;
  transition: filter .22s ease, transform .22s ease !important;
}

.home-category-card:hover .product-thumb,
.home-category-card:focus-visible .product-thumb {
  filter: grayscale(0) saturate(1.05) contrast(1.05) brightness(.98) !important;
  transform: translateY(-1px) scale(1.015);
}

.home-category-card:nth-child(1) .product-thumb { background-image: url("img/showcase-premium-paper-v103-touchup.jpg") !important; }
.home-category-card:nth-child(2) .product-thumb { background-image: url("img/production-floor-offset-70x100.jpg") !important; }
.home-category-card:nth-child(3) .product-thumb { background-image: url("img/homepage-category-surfaces-v126.png") !important; }
.home-category-card:nth-child(4) .product-thumb { background-image: url("img/hero-paper-canvas-stickers-v105.jpg") !important; }
.home-category-card:nth-child(5) .product-thumb { background-image: url("img/homepage-category-signage-v126.png") !important; }
.home-category-card:nth-child(6) .product-thumb { background-image: url("img/showcase-branded-products-v103-touchup.jpg") !important; }

.home-category-market-card span {
  background: rgba(255, 255, 255, .13) !important;
}
/* Cookie consent gate */
.cookie-consent-panel {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 9999;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(5, 25, 18, .96);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  color: #fff;
}
.cookie-consent-panel strong { display: block; margin-bottom: 6px; color: #fff; font-size: 1.05rem; }
.cookie-consent-panel p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.45; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-actions button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
  color: #092016;
  background: #fff;
  cursor: pointer;
}
.cookie-actions [data-cookie-analytics] { background: var(--lime); border-color: var(--lime); }
@media (max-width: 720px) { .cookie-consent-panel { grid-template-columns: 1fr; } .cookie-actions { justify-content: stretch; } .cookie-actions button { flex: 1 1 auto; } }

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}
.cookie-toggle input { width: 18px; height: 18px; accent-color: var(--lime, #b6ff16); }

/* v156 product page sticky price summary */
@media (min-width: 1101px) {
  .request-layout {
    align-items: start !important;
    overflow: visible !important;
  }

  .request-layout > .summary-card {
    position: sticky !important;
    top: 96px !important;
    align-self: start !important;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    z-index: 8;
  }
}

@media (max-width: 1100px) {
  .request-layout > .summary-card {
    position: static !important;
    max-height: none;
    overflow: visible;
  }
}

/* v157 flyer custom dimensions and product-specific service filtering */
.flyer-custom-size-tool {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(130px, 180px) minmax(130px, 180px);
  gap: 10px;
  align-items: end;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(8, 30, 24, .1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,247,243,.94));
}

.flyer-custom-size-tool strong,
.flyer-custom-size-tool span {
  display: block;
}

.flyer-custom-size-tool strong {
  color: #10251d;
  font-weight: 900;
}

.flyer-custom-size-tool span,
.flyer-custom-size-tool p {
  margin: 4px 0 0;
  color: #43584f;
  font-weight: 700;
  line-height: 1.4;
}

.flyer-custom-size-tool label {
  display: grid;
  gap: 6px;
  color: #163328;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.flyer-custom-size-tool input {
  min-height: 44px;
  border: 1px solid rgba(8, 30, 24, .18);
  border-radius: 7px;
  background: #fff;
  color: #10251d;
  font: inherit;
  font-size: .95rem;
  font-weight: 800;
  padding: 0 12px;
}

.flyer-custom-size-tool p {
  grid-column: 1 / -1;
  padding-top: 2px;
}

@media (max-width: 780px) {
  .flyer-custom-size-tool {
    grid-template-columns: 1fr;
  }
}

/* v158 live deadline date helper */
.deadline-picker-field {
  position: relative;
  cursor: pointer;
}

.deadline-picker-field input[type="date"] {
  cursor: pointer;
  padding-bottom: 30px;
}

.deadline-live-clock {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 34px;
  display: block;
  color: #148653;
  font-size: .76rem;
  font-weight: 900;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}

.deadline-picker-field small {
  display: block;
  margin-top: 7px;
  color: #43584f;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

/* v160 Flying Banner public price matrix */
.flying-banner-matrix {
  border-top: 4px solid #ff7a1a;
}

.flying-banner-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.flying-banner-rule-grid article {
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(8, 30, 24, .1);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f2f8f5);
}

.flying-banner-rule-grid span,
.flying-banner-rule-grid small {
  display: block;
  color: #40564d;
  font-weight: 800;
}

.flying-banner-rule-grid strong {
  display: block;
  margin: 5px 0;
  color: #10251d;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1;
}

.flying-banner-price-table td:first-child strong {
  display: inline-flex;
  min-width: 54px;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #10251d;
  color: #fff;
}

.flying-banner-price-table tbody tr:nth-child(odd) td {
  background: rgba(255, 122, 26, .035);
}

@media (max-width: 840px) {
  .flying-banner-rule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .flying-banner-rule-grid {
    grid-template-columns: 1fr;
  }
}

/* v159 compact product page and flyer request controls */
.product-hero {
  min-height: 0 !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px) !important;
  align-items: center !important;
  gap: 34px !important;
  padding-top: 52px !important;
  padding-bottom: 34px !important;
}

.product-hero > div:first-child {
  align-self: center;
  max-width: 820px;
}

.product-hero h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 5vw, 4.9rem) !important;
  line-height: .98 !important;
}

.product-hero p {
  max-width: 760px;
}

.product-visual-card-large {
  justify-self: end;
  width: min(100%, 430px);
}

.product-hero .live-product-preview {
  grid-template-columns: 1fr !important;
}

.product-hero .preview-stage {
  min-height: 260px !important;
  padding: 22px !important;
}

.product-hero .preview-details {
  padding: 22px !important;
}

.product-confidence-strip {
  margin-top: -16px !important;
}

.product-options-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 !important;
  padding: 12px !important;
}

.product-options-panel legend,
.design-support-panel legend {
  padding: 0 6px;
  font-size: .86rem;
}

.product-options-panel .check-row {
  display: inline-flex !important;
  width: auto !important;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 !important;
  padding: 8px 11px !important;
  border: 1px solid rgba(8, 30, 24, .14) !important;
  border-radius: 999px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: #102018 !important;
  gap: 7px;
}

.product-options-panel .check-row input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.design-support-panel {
  margin-top: 10px !important;
}

.design-support-panel .check-row {
  min-height: 44px;
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr !important;
    padding-top: 36px !important;
    padding-bottom: 24px !important;
  }

  .product-visual-card-large {
    justify-self: stretch;
    width: 100%;
  }

  .product-confidence-strip {
    margin-top: 0 !important;
  }
}

/* v193 print-start routing */
.print-start-page {
  background: #eef4f1;
}

.print-start-hero,
.print-start-options,
.print-start-checklist,
.print-start-footer-band {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.print-start-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .44fr);
  gap: 34px;
  align-items: end;
  margin-top: 34px;
  padding: 40px;
  color: #fff;
  background: #102018;
  border-top: 5px solid var(--green);
}

.print-start-hero .eyebrow {
  color: #b5df45;
}

.print-start-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.print-start-hero p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.55;
}

.print-start-hero aside {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.print-start-hero aside span {
  padding: 12px 0;
  color: rgba(255, 255, 255, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-size: 13px;
  font-weight: 900;
}

.print-start-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.print-start-option {
  --route-color: #168657;
  min-height: 250px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 28px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 4px 0 var(--route-color);
  transition: background-color .18s ease, transform .18s ease;
}

.print-start-option:hover,
.print-start-option:focus-visible {
  position: relative;
  z-index: 1;
  background: #fbfff8;
  transform: translateY(-2px);
  outline: 3px solid rgba(22, 134, 87, .16);
}

.print-route-number,
.print-start-option small,
.print-start-option strong {
  color: var(--route-color);
  font-weight: 950;
}

.print-route-number,
.print-start-option small {
  font-size: 12px;
}

.print-start-option h2 {
  margin: 10px 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: 0;
}

.print-start-option p {
  min-height: 70px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.option-design { --route-color: #ca2c77; }
.option-custom { --route-color: #1683b4; }
.option-business { --route-color: #dc6d14; }

.print-start-checklist {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 40px;
  padding: 56px 0;
}

.print-start-checklist h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.print-start-checklist ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.print-start-checklist li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.print-start-checklist li b {
  color: #168657;
}

.print-start-checklist li span {
  color: var(--ink);
  font-weight: 850;
}

.print-start-footer-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  padding: 24px;
  background: #dfeee7;
  border-left: 5px solid #168657;
}

.print-start-footer-band strong,
.print-start-footer-band span {
  display: block;
}

.print-start-footer-band strong {
  color: var(--ink);
  font-size: 20px;
}

.print-start-footer-band span {
  margin-top: 4px;
  color: var(--muted);
}

.footer-links > strong {
  order: -1;
}

@media (max-width: 760px) {
  .print-start-hero,
  .print-start-options,
  .print-start-checklist,
  .print-start-footer-band {
    width: min(100% - 24px, 1180px);
  }

  .print-start-hero {
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 28px 22px;
  }

  .print-start-options,
  .print-start-checklist {
    grid-template-columns: 1fr;
  }

  .print-start-option {
    min-height: 0;
    padding: 22px 18px;
  }

  .print-start-option h2 {
    font-size: 25px;
  }

  .print-start-option p {
    min-height: 0;
  }

  .print-start-checklist {
    gap: 24px;
    padding: 42px 0;
  }

  .print-start-footer-band {
    align-items: stretch;
    flex-direction: column;
  }
}

/* v162 live-root readiness and final launch polish */
.hero-visual-categories.home-category-market {
  margin-top: clamp(18px, 3vw, 38px) !important;
  margin-bottom: clamp(34px, 5vw, 72px) !important;
  padding-block: clamp(18px, 2.8vw, 34px) !important;
}

.home-category-market-grid {
  gap: clamp(10px, 1.3vw, 18px) !important;
}

.home-category-market-card {
  min-height: clamp(176px, 18vw, 260px) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  isolation: isolate;
}

.home-category-market-card::before {
  opacity: 1 !important;
  filter: grayscale(1) saturate(.08) contrast(1.12) brightness(.64) !important;
  transform: scale(1.015) !important;
}

.home-category-market-card:hover::before,
.home-category-market-card:focus-visible::before {
  filter: grayscale(0) saturate(1.08) contrast(1.05) brightness(.9) !important;
  transform: scale(1.065) !important;
}

.home-category-market-card::after {
  background:
    linear-gradient(180deg, rgba(2, 10, 8, .08) 0%, rgba(2, 10, 8, .44) 52%, rgba(2, 10, 8, .9) 100%),
    linear-gradient(90deg, rgba(6, 21, 17, .3), rgba(6, 21, 17, .03)) !important;
}

.home-category-market-card strong {
  max-width: 18ch;
  text-wrap: balance;
}

.home-category-market-card small {
  max-width: 26ch;
}

.quick-request-widget {
  margin-top: clamp(26px, 4vw, 58px) !important;
  margin-bottom: clamp(30px, 5vw, 72px) !important;
}

.product-hero {
  padding-top: clamp(32px, 4vw, 50px) !important;
  padding-bottom: clamp(24px, 3.5vw, 42px) !important;
}

.product-hero h1 {
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.product-hero > div:first-child > p:not(.eyebrow) {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: #34493f !important;
}

.product-visual-card-large {
  align-self: stretch;
  display: flex;
}

.product-hero .live-product-preview {
  width: 100%;
}

.product-hero .preview-stage {
  min-height: clamp(210px, 23vw, 300px) !important;
}

.request-layout {
  gap: clamp(16px, 2.5vw, 30px) !important;
}

.request-form .form-grid,
.quick-request-grid,
.quick-contact-grid {
  gap: 10px !important;
}

.summary-card {
  border-radius: 8px !important;
}

.footer-logo-lockup em,
.footer-newsletter span,
.footer-consent-note {
  max-width: 58ch;
}

.footer-consent-choice {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  cursor: pointer;
}

.footer-consent-choice input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 1px 0 0 !important;
  accent-color: #9fca2b;
}

.footer-consent-choice a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* v167 custom request polish and sticky action rail */
.request-layout {
  align-items: start !important;
}

.request-form {
  border: 1px solid rgba(8, 30, 24, .1) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,252,249,.92)),
    radial-gradient(circle at 94% 4%, rgba(0, 168, 220, .1), transparent 28%),
    radial-gradient(circle at 0% 30%, rgba(181, 232, 31, .14), transparent 26%) !important;
  box-shadow: 0 22px 60px rgba(16, 38, 31, .08) !important;
}

.request-form .form-title {
  padding: clamp(16px, 2vw, 24px) !important;
  border: 1px solid rgba(8, 30, 24, .09);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 69, 48, .96), rgba(15, 39, 34, .96)),
    radial-gradient(circle at 85% 20%, rgba(181, 232, 31, .2), transparent 30%);
  color: #fff;
}

.request-form .form-title .eyebrow {
  color: #82f3b9 !important;
}

.request-form .form-title h2,
.request-form .form-title p {
  color: #fff !important;
}

.request-form .form-title p {
  max-width: 70ch;
  opacity: .82;
}

.request-form .form-grid label {
  padding: 0 !important;
  color: #20342c !important;
}

.request-form input,
.request-form select,
.request-form textarea {
  border-color: rgba(8, 30, 24, .18) !important;
  background: rgba(255,255,255,.92) !important;
  color: #102018 !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: #09a66d !important;
  box-shadow: 0 0 0 4px rgba(9, 166, 109, .12) !important;
}

.product-options-panel {
  border-color: rgba(9, 166, 109, .28) !important;
  background: linear-gradient(90deg, rgba(9, 166, 109, .08), rgba(0, 168, 220, .06)) !important;
}

.product-options-panel legend,
.design-support-panel legend,
.request-form fieldset legend {
  color: #0a7f53 !important;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.product-options-panel .check-row {
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.product-options-panel .check-row:hover,
.product-options-panel .check-row:focus-within {
  border-color: rgba(9, 166, 109, .55) !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(8, 30, 24, .08) !important;
  transform: translateY(-1px);
}

.design-support-panel,
.request-form fieldset:not(.product-options-panel) {
  border-color: rgba(8, 30, 24, .12) !important;
  background: rgba(255,255,255,.72) !important;
}

.design-support-panel .check-row,
.request-form fieldset:not(.product-options-panel) .check-row {
  display: grid !important;
  grid-template-columns: 24px minmax(180px, 1.1fr) minmax(110px, .35fr) minmax(260px, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(8, 30, 24, .1) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.design-support-panel .check-row:last-child,
.request-form fieldset:not(.product-options-panel) .check-row:last-child {
  border-bottom: 0 !important;
}

.design-support-panel .check-row span,
.request-form fieldset:not(.product-options-panel) .check-row span {
  justify-self: end;
  color: #102018 !important;
  font-weight: 900;
  white-space: nowrap;
}

.design-support-panel .check-row small {
  display: block !important;
  margin: 0 !important;
  color: #52675e !important;
  font-size: .86rem !important;
  font-weight: 700;
  line-height: 1.35;
}

.request-form .full textarea {
  min-height: 130px !important;
}

.product-action-rail {
  z-index: 8 !important;
  display: grid !important;
  gap: 10px !important;
  border: 1px solid rgba(8, 30, 24, .14) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,249,246,.96)),
    radial-gradient(circle at 90% 0%, rgba(181, 232, 31, .18), transparent 30%) !important;
  box-shadow: 0 24px 70px rgba(10, 32, 27, .13) !important;
}

.product-action-rail h2 {
  margin-bottom: 4px !important;
}

.product-action-rail > div {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(8, 30, 24, .1) !important;
}

.product-action-rail > div span {
  color: #52675e !important;
  font-size: .85rem !important;
  font-weight: 900 !important;
}

.product-action-rail > div strong {
  color: #102018 !important;
  text-align: right;
  white-space: nowrap;
}

.product-action-rail .summary-total {
  margin-top: 4px;
  padding: 14px !important;
  border: 1px solid rgba(9, 166, 109, .32) !important;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(9, 166, 109, .1), rgba(181, 232, 31, .12)) !important;
}

.product-action-rail .summary-total strong {
  font-size: 1.35rem !important;
  color: #006f49 !important;
}

.rail-note {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 168, 220, .08);
  color: #34493f !important;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-action-rail .rail-primary-action,
.product-action-rail .rail-secondary-action {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  text-align: center;
}

.rail-small-print {
  color: #60736a !important;
  font-size: .78rem !important;
  font-weight: 800;
  text-align: center;
}

@media (min-width: 1080px) {
  .request-layout {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 380px) !important;
  }

  .request-layout > .summary-card.product-action-rail {
    position: sticky !important;
    top: 96px !important;
    max-height: calc(100vh - 116px);
    overflow: auto;
  }
}

@media (max-width: 760px) {
  .design-support-panel .check-row,
  .request-form fieldset:not(.product-options-panel) .check-row {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .design-support-panel .check-row span,
  .request-form fieldset:not(.product-options-panel) .check-row span,
  .design-support-panel .check-row small {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }
}

.footer-links a,
.site-header nav a {
  text-wrap: nowrap;
}

@media (min-width: 1180px) {
  .home-category-market-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .home-category-market-card {
    min-height: 168px !important;
  }

  .site-header nav a,
  .footer-links a {
    text-wrap: initial;
  }
}

/* v172 product summary rail scroll-follow hotfix */
@media (min-width: 860px) {
  .request-layout {
    align-items: start !important;
    overflow: visible !important;
    contain: none !important;
  }

  .request-layout > .summary-card.product-action-rail {
    position: sticky !important;
    top: clamp(82px, 9vh, 112px) !important;
    align-self: start !important;
    height: fit-content !important;
    max-height: calc(100vh - 132px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    z-index: 20 !important;
    scrollbar-gutter: stable;
  }
}

@media (max-width: 859px) {
  .request-layout > .summary-card.product-action-rail {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* v173 product summary rail fixed-position fallback */
@media (min-width: 860px) {
  .request-layout.is-rail-fallback-ready {
    position: relative;
  }

  .request-layout > .summary-card.product-action-rail.is-rail-fixed {
    position: fixed !important;
    top: var(--rail-fixed-top, 96px) !important;
    right: auto !important;
    bottom: auto !important;
    max-height: calc(100vh - var(--rail-fixed-top, 96px) - 20px) !important;
    overflow-y: auto !important;
  }

  .request-layout > .summary-card.product-action-rail.is-rail-bottom {
    position: absolute !important;
    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    max-height: calc(100vh - 116px) !important;
    overflow-y: auto !important;
  }
}

/* v176/v177 autonomous app home and phone navigation */
.app-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: stretch;
  width: min(100% - 36px, 1180px);
  margin: 28px auto;
  padding: 24px;
  border: 1px solid rgba(16, 32, 24, .12);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.98), rgba(240,248,244,.92)),
    radial-gradient(circle at 12% 10%, rgba(159,202,43,.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(40,169,223,.14), transparent 26%);
  box-shadow: 0 24px 70px rgba(8, 24, 20, .12);
}

.app-home-hero h1 {
  max-width: 13ch;
  margin: 0 0 12px;
  color: #102018;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: .95;
}

.app-home-hero p {
  max-width: 68ch;
  color: #34493f;
  font-weight: 700;
  line-height: 1.55;
}

.app-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.app-device-card {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 320px;
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(5, 21, 17, .12), rgba(5, 21, 17, .88)),
    url("img/homepage-category-production-v126.png") center / cover no-repeat;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 28px 70px rgba(8, 24, 20, .24);
}

.app-device-card span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #a9f7d0;
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.app-device-card strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.app-device-card p {
  color: rgba(255,255,255,.82);
  font-size: .94rem;
}

.app-status-dots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.app-status-dots i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9fca2b, #28a9df);
}

.app-home-grid,
.app-quick-status,
.app-autonomy-strip {
  display: grid;
  width: min(100% - 36px, 1180px);
  margin: 22px auto;
  gap: 14px;
}

.app-quick-status {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -6px;
}

.app-quick-status article {
  padding: 14px 16px;
  border: 1px solid rgba(16, 32, 24, .1);
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 40px rgba(8, 24, 20, .07);
}

.app-quick-status span {
  display: block;
  color: #60736a;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.app-quick-status strong {
  display: block;
  margin-top: 4px;
  color: #102018;
  font-size: 1.25rem;
  line-height: 1.1;
}

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

.app-action-card {
  display: grid;
  min-height: 190px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 24, .12);
  border-top: 4px solid #148653;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f4faf6);
  color: #102018;
  box-shadow: 0 18px 50px rgba(8, 24, 20, .08);
}

.app-action-card span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(20,134,83,.1);
  color: #0d7047;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.app-action-card strong {
  color: #102018;
  font-size: 1.35rem;
  line-height: 1.08;
}

.app-action-card p {
  color: #52675e;
  font-weight: 700;
  line-height: 1.4;
}

.app-action-card.accent-blue { border-top-color: #28a9df; }
.app-action-card.accent-orange { border-top-color: #ff7f18; }
.app-action-card.accent-pink { border-top-color: #ec008c; }

.app-autonomy-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 42px;
}

.app-autonomy-strip article {
  padding: 16px;
  border: 1px solid rgba(16, 32, 24, .1);
  border-radius: 10px;
  background: rgba(255,255,255,.78);
}

.app-autonomy-strip span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(159,202,43,.18);
  color: #0d7047;
  font-weight: 950;
}

.app-autonomy-strip strong {
  display: block;
  color: #102018;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.app-autonomy-strip p {
  color: #52675e;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.4;
}

.pwa-install-toast,
.offline-draft-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(16, 32, 24, .13);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  color: #102018;
  box-shadow: 0 22px 60px rgba(8, 24, 20, .18);
  font-weight: 850;
}

.app-bottom-nav {
  display: none;
}

@media (max-width: 760px) {
  body.has-app-nav {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  body.has-app-nav .site-footer {
    margin-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .app-bottom-nav {
    position: fixed;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    z-index: 88;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(16, 32, 24, .18);
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 54px rgba(5, 18, 16, .24);
    backdrop-filter: blur(18px);
  }

  .app-bottom-nav a {
    display: grid;
    place-items: center;
    gap: 3px;
    min-width: 0;
    min-height: 52px;
    padding: 6px 3px;
    border-radius: 15px;
    color: #40554b;
    text-align: center;
  }

  .app-bottom-nav a span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(16, 32, 24, .07);
    color: #102018;
    font-size: .72rem;
    font-weight: 950;
  }

  .app-bottom-nav a strong {
    max-width: 100%;
    overflow: hidden;
    color: inherit;
    font-size: .66rem;
    font-weight: 950;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app-bottom-nav a.is-active {
    background: linear-gradient(135deg, #102018, #12452f);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 32, 24, .22);
  }

  .app-bottom-nav a.is-active span {
    background: linear-gradient(135deg, #9fca2b, #28a9df);
    color: #06140f;
  }
}

@media (max-width: 920px) {
  .app-home-hero,
  .app-home-grid,
  .app-quick-status,
  .app-autonomy-strip {
    grid-template-columns: 1fr 1fr;
  }

  .app-home-hero > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .app-home-hero,
  .app-home-grid,
  .app-quick-status,
  .app-autonomy-strip {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1180px);
  }

  .app-home-hero {
    padding: 18px;
  }

  .app-home-hero h1 {
    max-width: 12ch;
  }

  .app-device-card,
  .app-action-card {
    min-height: 170px;
  }
}

/* v178 mega mobile app shell */
body.mi-app-page .site-footer {
  display: none;
}

body.standalone-app-shell {
  background: #eef3f0;
}

body.standalone-app-shell main {
  padding-top: env(safe-area-inset-top);
}

.ops-app-shell,
.mi-app-page .mi-app-hero,
.mi-app-page .mi-app-role-switch,
.mi-app-page .mi-app-status-grid,
.mi-app-page .mi-app-module-grid,
.mi-app-page .mi-app-builder,
.mi-app-page .mi-app-upload-room,
.mi-app-page .mi-app-payments,
.mi-app-page .mi-app-orders,
.mi-app-page .mi-app-comms,
.mi-app-page .mi-app-claims,
.mi-app-page .mi-app-install-room,
.mi-app-page .mi-app-test-cockpit {
  max-width: 1180px;
}

.ops-app-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 42px;
}

.ops-app-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 10px 0;
  background: rgba(238, 243, 240, .92);
  backdrop-filter: blur(14px);
}

.ops-app-brand,
.ops-app-toplinks,
.ops-app-client-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.ops-app-toplinks {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ops-app-brand {
  gap: 10px;
  color: #10201a;
}

.ops-app-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.ops-app-brand strong,
.ops-app-brand em {
  display: block;
}

.ops-app-brand em {
  color: #607269;
  font-style: normal;
  font-weight: 850;
}

.ops-app-client-link,
.ops-role-card a,
.ops-login-gate a {
  min-height: 40px;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 12px;
  background: #10201a;
  color: #fff;
  font-weight: 950;
}

.ops-app-hero {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 5vw, 54px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, rgba(7, 27, 20, .96), rgba(14, 55, 44, .86)), linear-gradient(135deg, #10201a, #276954);
  box-shadow: 0 24px 70px rgba(7, 27, 20, .14);
}

.ops-app-hero span,
.ops-panel-heading span,
.ops-login-gate span,
.ops-role-card span {
  color: #55e19d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ops-app-hero h1 {
  max-width: 880px;
  margin: 10px 0;
  color: #fff;
  font-size: clamp(34px, 7vw, 70px);
  line-height: .95;
}

.ops-app-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.5;
}

.ops-role-grid,
.ops-owner-panel,
.ops-account-state,
.ops-permission-panel,
.ops-login-gate {
  margin-top: 16px;
}

.ops-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.ops-role-card,
.ops-owner-panel,
.ops-account-state,
.ops-job-preview,
.ops-permission-panel,
.ops-login-gate {
  border: 1px solid #d7e3de;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 32px rgba(7,27,20,.06);
}

.ops-role-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

.ops-account-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.ops-account-state span {
  color: #00875a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ops-account-state strong {
  display: block;
  margin-top: 6px;
  color: #10201a;
  font-size: 24px;
}

.ops-account-state p {
  margin-bottom: 0;
  color: #607269;
  line-height: 1.45;
}

.ops-account-state a {
  min-height: 42px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: #10201a;
  font-weight: 950;
  text-decoration: none;
}

.ops-account-state.is-pending {
  border-color: #ffd7b8;
  background: #fff7ef;
}

.order-role-gate {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(16, 32, 26, .14);
  border-radius: 8px;
  padding: 10px 12px;
  background: #eef7f2;
  color: #10201a;
  font-size: 13px;
  line-height: 1.35;
}

.order-role-gate strong {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.order-role-gate span {
  color: #51635b;
  font-weight: 750;
}

.app-setup-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 88px;
  display: grid;
  gap: 18px;
}

.app-setup-hero,
.app-setup-panel,
.app-setup-warning,
.app-setup-grid article {
  border: 1px solid rgba(16, 32, 26, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 32, 26, .08);
}

.app-setup-hero {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(26px, 6vw, 56px);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(5, 21, 15, .18), rgba(5, 21, 15, .88)),
    url("mi-eshop-logo.png") center / min(520px, 68vw) no-repeat,
    #10201a;
}

.app-setup-hero span,
.app-setup-panel span,
.app-setup-grid span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.app-setup-hero h1,
.app-setup-panel h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 7vw, 70px);
  line-height: .96;
}

.app-setup-hero p,
.app-setup-panel p,
.app-setup-grid p,
.app-setup-tests p,
.app-setup-warning p {
  margin: 0;
  color: inherit;
  line-height: 1.5;
}

.app-setup-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .86);
  font-weight: 750;
}

.app-setup-actions,
.app-setup-grid,
.app-setup-tests {
  display: grid;
  gap: 12px;
}

.app-setup-actions {
  grid-template-columns: repeat(3, minmax(0, 180px));
}

.app-setup-actions a,
.app-setup-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 14px;
  color: #10201a;
  background: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

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

.app-setup-grid article,
.app-setup-panel,
.app-setup-warning {
  padding: 18px;
}

.app-setup-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.app-setup-grid strong,
.app-setup-tests strong,
.app-setup-warning strong {
  color: #10201a;
  font-size: 20px;
  line-height: 1.1;
}

.app-setup-grid p,
.app-setup-tests p,
.app-setup-panel p {
  color: #607269;
}

.app-setup-grid a {
  margin-top: auto;
  color: #ffffff;
  background: #10201a;
}

.app-setup-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.app-setup-panel h2 {
  color: #10201a;
  font-size: clamp(28px, 4vw, 44px);
}

.app-setup-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.app-setup-panel li,
.app-setup-tests article {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(16, 32, 26, .1);
  border-radius: 8px;
  padding: 12px;
  background: #f7faf8;
}

.app-setup-panel li span {
  color: #607269;
  font-size: 13px;
  font-weight: 760;
  text-transform: none;
}

.app-setup-tests {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.app-setup-warning {
  border-color: #ffd7b8;
  background: #fff7ef;
}

@media (max-width: 820px) {
  .app-setup-actions,
  .app-setup-grid,
  .app-setup-panel,
  .app-setup-tests {
    grid-template-columns: 1fr;
  }

  .app-setup-hero {
    min-height: 420px;
  }
}

.ops-role-card.is-active {
  border-color: #00875a;
  background: #e8f8ef;
}

.ops-role-card strong {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.ops-role-card p,
.ops-login-gate p {
  color: #607269;
  line-height: 1.45;
}

.ops-role-card a {
  margin-top: auto;
}

.ops-permission-panel,
.ops-owner-panel,
.ops-login-gate {
  padding: clamp(18px, 3vw, 28px);
}

.ops-job-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.ops-job-preview {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  background: #fff;
}

.ops-job-preview span {
  color: #00875a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ops-job-preview strong {
  margin-top: 12px;
  color: #10201a;
  font-size: 24px;
  line-height: 1.1;
}

.ops-job-preview p {
  color: #607269;
  line-height: 1.45;
}

.ops-job-preview ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.ops-job-preview li {
  padding: 8px 10px;
  border-radius: 10px;
  background: #eef6f2;
  color: #304038;
  font-size: 13px;
  font-weight: 900;
}

.ops-job-preview a {
  margin-top: auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 12px;
  background: #10201a;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}

.ops-panel-heading h2,
.ops-login-gate strong {
  display: block;
  margin: 8px 0 14px;
  color: #10201a;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.ops-permission-table {
  overflow: hidden;
  border: 1px solid #d7e3de;
  border-radius: 16px;
}

.ops-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(6, 1fr);
  min-height: 46px;
  align-items: stretch;
}

.ops-row + .ops-row {
  border-top: 1px solid #d7e3de;
}

.ops-row > * {
  display: flex;
  align-items: center;
  padding: 10px;
  border-right: 1px solid #d7e3de;
  font-size: 13px;
  font-weight: 850;
}

.ops-row > *:last-child {
  border-right: 0;
}

.ops-head {
  color: #fff;
  background: #10201a;
}

.ops-row:not(.ops-head) b {
  color: #10201a;
  background: #f7fbf8;
}

.ops-row span {
  color: #607269;
}

@media (max-width: 920px) {
  .ops-row {
    min-width: 940px;
  }

  .ops-permission-table {
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .ops-app-shell {
    width: calc(100% - 18px);
  }

  .ops-app-topbar {
    min-height: 60px;
  }

  .ops-app-hero {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .ops-app-hero h1 {
    font-size: 32px;
  }

  .ops-app-hero p {
    font-size: 14px;
  }

  .ops-role-grid {
    grid-template-columns: 1fr;
  }

  .ops-account-state {
    align-items: stretch;
    flex-direction: column;
  }

  .ops-account-state a {
    width: 100%;
  }

  .ops-job-preview-grid {
    grid-template-columns: 1fr;
  }
}

body.mi-app-page .cookie-consent-panel {
  right: 12px;
  bottom: calc(86px + env(safe-area-inset-bottom));
  left: 12px;
  grid-template-columns: 1fr;
  width: auto;
  max-width: 430px;
  margin-inline: auto;
  padding: 14px;
  border-radius: 20px;
}

body.mi-app-page .cookie-consent-panel p {
  font-size: .9rem;
  line-height: 1.35;
}

body.mi-app-page .cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.app-account-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 42px;
}

.app-account-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 10px 0;
  background: rgba(238, 243, 240, .92);
  backdrop-filter: blur(14px);
}

.app-account-hero,
.app-account-card,
.app-account-dashboard,
.app-account-notice,
.mi-app-account-cta {
  border: 1px solid #d7e3de;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(7,27,20,.06);
}

.app-account-hero {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 5vw, 54px);
  color: #fff;
  background: linear-gradient(135deg, rgba(7,27,20,.96), rgba(20,96,76,.84)), #10201a;
}

.app-account-hero span,
.app-account-card span,
.app-account-dashboard span,
.mi-app-account-cta span {
  color: #55e19d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.app-account-hero h1 {
  max-width: 900px;
  margin: 10px 0;
  color: #fff;
  font-size: clamp(34px, 7vw, 70px);
  line-height: .95;
}

.app-account-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.5;
}

.app-account-notice {
  margin-top: 14px;
  padding: 14px 16px;
  color: #10201a;
  font-weight: 900;
}

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

.app-account-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(18px, 3vw, 28px);
}

.app-account-card h2 {
  margin: 0;
  color: #10201a;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.app-account-card label {
  color: #304038;
  font-weight: 950;
}

.app-account-card input,
.app-account-card select {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  padding: 0 14px;
  border: 1px solid #d7e3de;
  border-radius: 14px;
  background: #fff;
  color: #10201a;
  font-weight: 850;
}

.app-account-card button,
.app-account-dashboard-actions a,
.mi-app-account-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #10201a;
  font-weight: 950;
  text-decoration: none;
}

.app-account-card p,
.app-account-dashboard p,
.mi-app-account-cta p {
  color: #607269;
  line-height: 1.45;
}

.app-account-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.app-account-dashboard strong,
.mi-app-account-cta strong {
  display: block;
  margin-top: 8px;
  color: #10201a;
  font-size: 24px;
  line-height: 1.1;
}

.app-account-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.mi-app-account-cta {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px auto 0;
  padding: clamp(18px, 3vw, 28px);
}

@media (max-width: 760px) {
  .app-account-grid,
  .app-account-dashboard {
    grid-template-columns: 1fr;
  }

  .mi-app-account-cta,
  .app-account-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .app-account-dashboard-actions {
    justify-content: stretch;
  }

  .app-account-dashboard-actions a,
  .mi-app-account-cta a {
    width: 100%;
  }
}

.mi-app-hero,
.mi-app-role-switch,
.mi-app-status-grid,
.mi-app-module-grid,
.mi-app-builder,
.mi-app-orders,
.mi-app-claims,
.mi-app-proof {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.mi-app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  min-height: 440px;
  margin-top: 18px;
  padding: clamp(24px, 5vw, 54px);
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7,27,20,.97), rgba(7,27,20,.74) 56%, rgba(7,27,20,.25)),
    radial-gradient(circle at 82% 20%, rgba(34,167,232,.48), transparent 25%),
    radial-gradient(circle at 75% 82%, rgba(236,43,142,.34), transparent 24%),
    linear-gradient(135deg, #0b2a20, #06100d);
  box-shadow: 0 24px 70px rgba(7, 27, 20, .16);
}

.mi-app-hero-copy { align-self: center; max-width: 760px; }
.mi-app-eyebrow,
.mi-app-section-heading span,
.mi-app-live-card span,
.mi-app-module span,
.mi-app-order-code {
  color: #55e19d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mi-app-hero h1 {
  margin: 12px 0;
  color: #fff !important;
  font-size: clamp(36px, 7vw, 72px);
  line-height: .92;
  letter-spacing: 0;
  text-shadow: 0 2px 22px rgba(0,0,0,.24);
}

.mi-app-hero p { max-width: 680px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.55; }
.mi-app-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.mi-app-primary,
.mi-app-secondary,
.mi-app-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  font-weight: 950;
  text-decoration: none;
}

.mi-app-primary { color: #062015; background: #a6ec1a; }
.mi-app-secondary { color: #fff; background: rgba(255,255,255,.16); }
.mi-app-ghost { color: #10201a; background: #eef6f2; border: 1px solid #d7e3de; }
.mi-app-live-card {
  align-self: end;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.mi-app-live-card strong { display: block; margin-top: 12px; font-size: 42px; }
.mi-app-live-card p { color: rgba(255,255,255,.78); }
.mi-app-meter { height: 9px; margin: 16px 0 0; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.18); }
.mi-app-meter i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #a6ec1a, #22a7e8); }
.mi-app-role-switch,
.mi-app-status-grid,
.mi-app-module-grid,
.mi-app-chat-preview,
.mi-app-evidence-grid { display: grid; gap: 12px; }
.mi-app-role-switch { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 16px; }
.mi-app-role,
.mi-app-status-grid article,
.mi-app-builder,
.mi-app-orders,
.mi-app-claims,
.mi-app-proof {
  border: 1px solid #d7e3de;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 32px rgba(7,27,20,.06);
}

.mi-app-role { min-height: 96px; padding: 16px; text-align: left; }
.mi-app-role.is-active { border-color: #00875a; background: #e8f8ef; }
.mi-app-role span { color: #00875a; font-weight: 950; }
.mi-app-role strong,
.mi-app-role small { display: block; }
.mi-app-role small { margin-top: 4px; color: #607269; font-weight: 800; }
.mi-app-status-grid { grid-template-columns: repeat(4, 1fr); margin-top: 16px; }
.mi-app-status-grid article { padding: 16px; }
.mi-app-status-dot { display: inline-block; width: 12px; height: 12px; margin-bottom: 12px; border-radius: 50%; }
.mi-app-status-dot.good { background: #00875a; box-shadow: 0 0 0 5px rgba(0,135,90,.12); }
.mi-app-status-dot.warn { background: #ff7d23; box-shadow: 0 0 0 5px rgba(255,125,35,.14); }
.mi-app-status-grid strong { display: block; font-size: 18px; }
.mi-app-status-grid p,
.mi-app-section-heading p,
.mi-app-order-card p,
.mi-app-chat-preview p,
.mi-app-evidence-grid p,
.mi-app-signature-box p { color: #607269; line-height: 1.45; }
.mi-app-module-grid { grid-template-columns: repeat(4, 1fr); margin-top: 16px; margin-bottom: 22px; }
.mi-app-module {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-radius: 22px;
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  background:
    linear-gradient(160deg, rgba(7,27,20,.1), rgba(7,27,20,.9)),
    linear-gradient(135deg, #163a2d, #0b1512);
}

.mi-app-module strong { margin: 10px 0; font-size: 22px; line-height: 1.05; }
.mi-app-module small { color: rgba(255,255,255,.76); font-weight: 800; }
.mi-app-module.quote { border-top: 5px solid #a6ec1a; }
.mi-app-module.orders { border-top: 5px solid #22a7e8; }
.mi-app-module.claims { border-top: 5px solid #ec2b8e; }
.mi-app-module.proof { border-top: 5px solid #ff7d23; }
.mi-app-builder,
.mi-app-orders,
.mi-app-claims,
.mi-app-proof { margin-top: 18px; padding: clamp(18px, 3vw, 28px); scroll-margin-top: 88px; }
.mi-app-section-heading { margin-bottom: 18px; }
.mi-app-section-heading h2 { margin: 8px 0; font-size: clamp(28px, 4vw, 46px); line-height: 1; }
.mi-app-quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 18px; align-items: start; }
.mi-app-segmented { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 6px; border-radius: 16px; background: #eef6f2; }
.mi-app-segmented button { min-height: 44px; border: 0; border-radius: 12px; color: #607269; background: transparent; font-weight: 950; }
.mi-app-segmented .is-active { color: #fff; background: #071b14; }
.mi-app-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.mi-app-builder label,
.mi-app-builder legend { color: #304038; font-weight: 950; }
.mi-app-builder select,
.mi-app-builder input,
.mi-app-builder textarea { width: 100%; margin-top: 6px; border: 1px solid #d7e3de; border-radius: 14px; background: #fff; color: #10201a; font-weight: 850; }
.mi-app-builder select,
.mi-app-builder input { min-height: 48px; padding: 0 14px; }
.mi-app-builder textarea { min-height: 120px; padding: 14px; resize: vertical; }
.mi-app-builder label small { display: block; margin-top: 4px; color: #00875a; text-align: center; }
.mi-app-custom-dim.is-hidden { display: none; }
.mi-app-choice-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; padding: 14px; border: 1px solid #d7e3de; border-radius: 18px; }
.mi-app-choice-chips label { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 12px; border: 1px solid #d7e3de; border-radius: 999px; background: #fff; }
.mi-app-choice-chips.compact label { font-size: 14px; }
.mi-app-notes { display: block; margin-top: 16px; }
.mi-app-sticky-summary { position: sticky; top: 92px; padding: 18px; border-radius: 22px; color: #fff; background: linear-gradient(145deg, #082018, #173b2e); box-shadow: 0 24px 70px rgba(7, 27, 20, .16); }
.mi-app-sticky-summary span { color: #55e19d; font-weight: 950; text-transform: uppercase; font-size: 12px; }
.mi-app-sticky-summary > strong { display: block; margin: 10px 0 16px; font-size: 38px; }
.mi-app-sticky-summary dl { margin: 0; }
.mi-app-sticky-summary div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.14); }
.mi-app-sticky-summary dt { color: rgba(255,255,255,.65); }
.mi-app-sticky-summary dd { margin: 0; text-align: right; font-weight: 950; }
.mi-app-sticky-summary .wide { width: 100%; margin-top: 10px; }
.mi-app-order-card { display: grid; grid-template-columns: minmax(0, 1fr) 1.2fr; gap: 16px; align-items: center; padding: 16px; border: 1px solid #d7e3de; border-radius: 20px; background: #fff; }
.mi-app-order-card h3 { margin: 8px 0 4px; font-size: 24px; }
.mi-app-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 0; margin: 0; list-style: none; }
.mi-app-timeline li { padding: 10px; border-radius: 12px; color: #607269; background: #eef6f2; font-weight: 900; text-align: center; }
.mi-app-timeline .done { color: #fff; background: #00875a; }
.mi-app-timeline .active { color: #102018; background: #a6ec1a; }
.mi-app-chat-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.mi-app-chat-preview article,
.mi-app-evidence-grid article,
.mi-app-signature-box { padding: 16px; border: 1px solid #d7e3de; border-radius: 18px; background: #eef6f2; }
.mi-app-chat-preview span { color: #00875a; font-weight: 950; text-transform: uppercase; font-size: 12px; }
.mi-app-claim-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.mi-app-claim-grid button,
.mi-app-upload-zones button { min-height: 42px; padding: 14px; border: 1px solid #d7e3de; border-radius: 12px; color: #10201a; background: #fff; font-weight: 950; text-align: left; }
.mi-app-claim-grid button:hover { border-color: #00875a; background: #e8f8ef; }
.mi-app-evidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.mi-app-evidence-grid span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #00875a; background: #fff; font-weight: 950; }
.mi-app-evidence-grid strong { display: block; margin-top: 12px; font-size: 18px; }
.mi-app-proof-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mi-app-upload-zones { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mi-app-upload-zones button { min-height: 120px; border-style: dashed; }
.mi-app-signature-box { min-height: 250px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(238,246,242,.88)), repeating-linear-gradient(0deg, transparent, transparent 34px, rgba(16,32,26,.08) 35px); }
.mi-app-signature-box span { color: #607269; font-weight: 950; }

@media (max-width: 920px) {
  .mi-app-hero,
  .mi-app-quote-layout,
  .mi-app-order-card,
  .mi-app-proof-layout { grid-template-columns: 1fr; }
  .mi-app-status-grid,
  .mi-app-module-grid,
  .mi-app-evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .mi-app-claim-grid { grid-template-columns: repeat(2, 1fr); }
  .mi-app-sticky-summary { position: sticky; top: auto; bottom: 84px; }
}

@media (max-width: 640px) {
  .mi-app-hero,
  .mi-app-role-switch,
  .mi-app-status-grid,
  .mi-app-module-grid,
  .mi-app-builder,
  .mi-app-orders,
  .mi-app-claims,
  .mi-app-proof { width: calc(100% - 20px); }
  .mi-app-hero { min-height: auto; margin-top: 10px; padding: 18px; border-radius: 22px; gap: 12px; }
  .mi-app-hero h1 { font-size: 31px; line-height: .98; }
  .mi-app-hero p { font-size: 14px; line-height: 1.45; }
  .mi-app-actions { margin-top: 16px; }
  .mi-app-primary,
  .mi-app-secondary,
  .mi-app-ghost { min-height: 42px; padding: 10px 14px; border-radius: 13px; }
  .mi-app-live-card { padding: 14px; border-radius: 18px; }
  .mi-app-live-card strong { margin-top: 6px; font-size: 28px; }
  .mi-app-live-card p { margin: 6px 0; font-size: 13px; line-height: 1.3; }
  .mi-app-meter { height: 6px; margin: 8px 0 0; }
  .mi-app-role-switch,
  .mi-app-status-grid,
  .mi-app-module-grid,
  .mi-app-form-grid,
  .mi-app-chat-preview,
  .mi-app-evidence-grid,
  .mi-app-upload-zones { grid-template-columns: 1fr; }
  .mi-app-segmented { grid-template-columns: repeat(2, 1fr); }
  .mi-app-builder,
  .mi-app-orders,
  .mi-app-claims,
  .mi-app-proof { padding: 16px; border-radius: 20px; }
  .mi-app-timeline { grid-template-columns: 1fr; }
}

/* v179 app workflow testing cockpit */
.mi-app-upload-room,
.mi-app-payments,
.mi-app-comms,
.mi-app-test-cockpit {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #d7e3de;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 32px rgba(7,27,20,.06);
  scroll-margin-top: 88px;
}

.mi-app-upload-board,
.mi-app-file-drops,
.mi-app-payment-lane,
.mi-app-comms-grid,
.mi-app-test-grid {
  display: grid;
  gap: 12px;
}

.mi-app-upload-board,
.mi-app-payment-lane,
.mi-app-comms-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mi-app-file-drops,
.mi-app-test-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mi-app-upload-board article,
.mi-app-payment-lane article,
.mi-app-comms-grid article,
.mi-app-test-grid article {
  padding: 16px;
  border: 1px solid #d7e3de;
  border-radius: 18px;
  background: #fff;
}

.mi-app-upload-board span,
.mi-app-payment-lane span,
.mi-app-comms-grid span {
  color: #00875a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mi-app-upload-board strong,
.mi-app-payment-lane strong,
.mi-app-comms-grid strong,
.mi-app-test-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.mi-app-upload-board p,
.mi-app-payment-lane p,
.mi-app-comms-grid p,
.mi-app-test-grid p {
  color: #607269;
  line-height: 1.45;
}

.mi-app-file-drops button {
  min-height: 96px;
  padding: 16px;
  border: 1px dashed #91aaa0;
  border-radius: 16px;
  background: #f7fbf8;
  color: #10201a;
  font-weight: 950;
  text-align: left;
}

.mi-app-permission-note {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #b9d8ca;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbf8, #e8f8ef);
}

.mi-app-permission-note strong {
  display: block;
  color: #10201a;
  font-size: 18px;
}

.mi-app-permission-note p {
  max-width: 820px;
  color: #607269;
  line-height: 1.45;
}

.order-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 16px 0 22px;
}

.order-action-card,
.order-staff-proof-room {
  padding: 16px;
  border: 1px solid #d7e3de;
  border-radius: 18px;
  background: #fff;
}

.order-action-card span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef6f2;
  color: #607269;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
}

.order-action-card.is-open span {
  background: #dff5e8;
  color: #116333;
}

.order-action-card.is-view span {
  background: #e8f1ff;
  color: #174a8b;
}

.order-action-card.is-locked span {
  background: #f1eee8;
  color: #74685c;
}

.order-action-card strong {
  display: block;
  margin-top: 10px;
  color: #10201a;
  font-size: 18px;
}

.order-action-card p {
  color: #607269;
  line-height: 1.45;
}

.order-staff-proof-room {
  margin: 18px 0 24px;
  background: #f7fbf8;
}

@media (max-width: 920px) {
  .mi-app-upload-board,
  .mi-app-file-drops,
  .mi-app-payment-lane,
  .mi-app-comms-grid,
  .mi-app-test-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mi-app-upload-room,
  .mi-app-payments,
  .mi-app-comms,
  .mi-app-test-cockpit {
    width: calc(100% - 20px);
    padding: 16px;
    border-radius: 20px;
  }

  .mi-app-upload-board,
  .mi-app-file-drops,
  .mi-app-payment-lane,
  .mi-app-comms-grid,
  .mi-app-test-grid {
    grid-template-columns: 1fr;
  }
}

/* v180 app proof capture and install layer */
.mi-app-device-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.mi-app-device-actions button,
.mi-app-signature-actions button {
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.12);
  font-weight: 950;
}

.mi-app-network {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  font-weight: 850;
}

.mi-app-network.is-offline {
  color: #ffd08c;
}

.mi-app-safe-room,
.mi-app-proof-log,
.mi-app-install-room {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
}

.mi-app-safe-room {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid #b9d8ca;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7fbf8, #e8f8ef);
}

.mi-app-safe-room span {
  color: #00875a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mi-app-safe-room strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.mi-app-safe-room p {
  max-width: 850px;
  margin: 8px 0 0;
  color: #607269;
  line-height: 1.45;
}

.mi-app-proof-input {
  position: relative;
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 14px;
  border: 1px dashed #91aaa0;
  border-radius: 12px;
  background: #fff;
  color: #10201a;
  font-weight: 950;
  cursor: pointer;
}

.mi-app-proof-input input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.mi-app-proof-input small,
.mi-app-upload-zones button small {
  display: block;
  margin-top: 6px;
  color: #607269;
  font-weight: 800;
}

#miAppSignaturePad {
  width: 100%;
  min-height: 180px;
  border: 1px solid #d7e3de;
  border-radius: 16px;
  background: #f7fbf8;
  touch-action: none;
}

.mi-app-signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.mi-app-signature-actions button {
  color: #10201a;
  border-color: #d7e3de;
  background: #fff;
}

.mi-app-proof-log {
  padding: 16px;
  border: 1px solid #d7e3de;
  border-radius: 18px;
  background: #fff;
}

.mi-app-proof-log strong {
  display: block;
  color: #10201a;
}

.mi-app-proof-log p {
  color: #607269;
}

.mi-app-proof-log ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.mi-app-proof-log li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #eef6f2;
}

.mi-app-proof-log b {
  color: #00875a;
  text-transform: uppercase;
}

.mi-app-install-room {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #d7e3de;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 32px rgba(7,27,20,.06);
  scroll-margin-top: 88px;
}

.mi-app-install-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mi-app-install-grid article {
  min-height: 112px;
  padding: 16px;
  border: 1px solid #d7e3de;
  border-radius: 18px;
  background: #fff;
}

.mi-app-install-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #00875a;
  background: #e8f8ef;
  font-weight: 950;
}

.mi-app-install-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

@media (max-width: 920px) {
  .mi-app-safe-room {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .mi-app-safe-room,
  .mi-app-proof-log,
  .mi-app-install-room {
    width: calc(100% - 20px);
    border-radius: 20px;
  }

  .mi-app-install-grid {
    grid-template-columns: 1fr;
  }

  .mi-app-proof-log li {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* v191 ecosystem profile wallet */
.app-loyalty-wallet {
  display: grid;
  gap: 18px;
  margin: 18px 0 24px;
  padding: 22px;
  border: 1px solid #d4dfdb;
  border-left: 6px solid #068557;
  border-radius: 8px;
  background: #fff;
}

.app-loyalty-wallet.is-waiting {
  border-left-color: #d39220;
}

.app-loyalty-heading span {
  color: #068557;
  font-size: 12px;
  font-weight: 900;
}

.app-loyalty-heading h2 {
  margin: 6px 0 8px;
  font-size: 24px;
}

.app-loyalty-heading p,
.app-loyalty-boundary,
.app-loyalty-unavailable p {
  margin: 0;
  color: #5f6b67;
  line-height: 1.5;
}

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

.app-loyalty-values article {
  display: flex;
  min-width: 0;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid #d9e3df;
  border-top: 4px solid #068557;
  border-radius: 6px;
  background: #f8fbfa;
}

.app-loyalty-values article:nth-child(2) { border-top-color: #1b77b7; }
.app-loyalty-values article:nth-child(3) { border-top-color: #c58c16; }
.app-loyalty-values article:nth-child(4) { border-top-color: #c83e61; }

.app-loyalty-values span,
.app-loyalty-values small {
  color: #65716d;
  font-size: 12px;
}

.app-loyalty-values strong {
  margin: 7px 0 4px;
  overflow-wrap: anywhere;
  font-size: 23px;
}

.app-loyalty-values a {
  color: #0869a2;
  font-weight: 800;
}

.app-loyalty-unavailable,
.app-loyalty-boundary {
  padding: 13px 14px;
  border-left: 4px solid #d39220;
  background: #fff7dd;
}

.app-loyalty-activity {
  margin-top: 18px;
  border-top: 1px solid rgba(18, 38, 49, .16);
  padding-top: 14px;
}

.app-loyalty-activity-head,
.app-loyalty-activity article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.app-loyalty-activity-head span,
.app-loyalty-activity small,
.app-loyalty-activity article span {
  color: #607078;
  font-size: 12px;
}

.app-loyalty-activity article {
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 38, 49, .1);
}

.app-loyalty-activity article > div {
  display: grid;
  gap: 3px;
}

.app-loyalty-activity article > div:last-child {
  justify-items: end;
}

@media (max-width: 620px) {
  .app-loyalty-activity-head { align-items: flex-start; flex-direction: column; }
}

.app-loyalty-boundary {
  border-left-color: #65716d;
  background: #f1f5f3;
  font-size: 12px;
}

@media (max-width: 900px) {
  .app-loyalty-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .app-loyalty-wallet { margin-inline: 10px; padding: 16px; }
  .app-loyalty-values { grid-template-columns: 1fr; }
}

/* Product selector pattern: reusable for banners, gifts, clothing and display systems. */
.flying-banner-visual-selector {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
  gap: 22px;
  margin-top: 22px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(9, 78, 88, .16);
  border-radius: 28px;
  background: linear-gradient(145deg, #effbfa 0%, #fff8eb 100%);
}

.flying-selector-copy h3,
.flying-selector-summary h3 {
  margin: 4px 0 8px;
}

.flying-selector-copy > p:not(.eyebrow) {
  max-width: 70ch;
  color: var(--muted);
}

.flying-selector-stage {
  display: flex;
  align-items: end;
  gap: clamp(7px, 1.3vw, 14px);
  min-height: 360px;
  margin-top: 18px;
  padding: 22px 12px 12px;
  overflow-x: auto;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.88)),
    repeating-linear-gradient(to top, rgba(15, 97, 105, .12) 0 1px, transparent 1px 62px);
  scrollbar-width: thin;
}

.flying-banner-choice {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  align-items: end;
  justify-items: center;
  gap: 4px;
  min-width: 66px;
  height: 318px;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: #10263a;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.flying-banner-choice:hover,
.flying-banner-choice:focus-visible,
.flying-banner-choice.is-selected {
  transform: translateY(-4px);
  border-color: rgba(0, 143, 145, .28);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 30px rgba(12, 63, 69, .12);
  outline: none;
}

.flying-choice-flag {
  position: relative;
  width: clamp(34px, 3.8vw, 50px);
  height: var(--banner-height);
  min-height: 105px;
  align-self: end;
  border: 2px solid #173a54;
  border-radius: 70% 18% 32% 12% / 22% 12% 88% 78%;
  background: linear-gradient(160deg, #ffb52e 0%, #ff6a0a 46%, #ef345d 100%);
  box-shadow: inset -9px 0 18px rgba(126, 18, 69, .16);
}

.flying-choice-flag::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 46px;
  height: 11px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #173a54;
  box-shadow: 0 5px 0 -2px #081a2b;
}

.flying-banner-choice strong { font-size: 12px; }
.flying-banner-choice small { color: var(--muted); font-size: 10px; }
.flying-banner-choice em { color: #ef5e11; font-size: 11px; font-style: normal; font-weight: 800; }

.flying-selector-summary {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: #10263a;
  color: #fff;
  box-shadow: 0 18px 44px rgba(14, 39, 57, .2);
}

.flying-selector-summary .eyebrow { color: #7ee2dc; }
.product-sku-chip {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: #ffb52e;
  color: #10263a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
}

.flying-selected-specs {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8px;
}

.flying-selected-specs span,
.flying-selected-price {
  display: grid;
  gap: 3px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.flying-selected-specs small,
.flying-selected-price span,
.flying-selector-summary > small { color: #b9ccd7; }
.flying-selector-summary input[type='number'] { color: #10263a; }
.flying-selector-summary fieldset { display: grid; gap: 8px; padding: 0; border: 0; }
.flying-selector-summary fieldset label { display: flex; align-items: center; gap: 8px; }
.flying-selected-price { grid-template-columns: 1fr auto; align-items: center; }
.flying-selected-price strong { color: #ffcb58; font-size: 19px; }

.flyer-box-estimate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #b8e1df;
  border-radius: 18px;
  background: #effbfa;
}

.flyer-box-estimate > div:first-child { display: grid; gap: 4px; }
.flyer-box-estimate span { color: var(--muted); font-size: 12px; }
.flyer-box-number,
.flyer-box-cost {
  display: grid;
  min-width: 88px;
  justify-items: center;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}
.flyer-box-number strong,
.flyer-box-cost strong { color: #0a7375; font-size: 19px; }
.flyer-box-number small,
.flyer-box-cost small { color: var(--muted); font-size: 9px; text-transform: uppercase; }

.price-matrix-details {
  margin-top: 16px;
  border: 1px solid rgba(16, 38, 58, .12);
  border-radius: 16px;
  background: #fff;
}

.price-matrix-details > summary {
  padding: 14px 16px;
  color: #173a54;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style-position: inside;
}

.price-matrix-details[open] > summary { border-bottom: 1px solid rgba(16, 38, 58, .1); }
.price-matrix-details .price-matrix-table-wrap { margin: 0; border: 0; border-radius: 0 0 16px 16px; }

@media (max-width: 940px) {
  .flying-banner-visual-selector { grid-template-columns: 1fr; }
  .flying-selector-summary { position: static; }
}

@media (max-width: 620px) {
  .flying-banner-visual-selector { margin-inline: -2px; padding: 14px; border-radius: 20px; }
  .flying-selector-stage { min-height: 310px; margin-inline: -6px; padding-inline: 6px; }
  .flying-banner-choice { min-width: 60px; height: 274px; }
  .flyer-box-estimate { grid-template-columns: 1fr 1fr; }
  .flyer-box-estimate > div:first-child { grid-column: 1 / -1; }
}

/* v200 order-first homepage and progressive request flow */
.home-order-first-v200 .legacy-hero,
.home-order-first-v200 .intro-strip,
.home-order-first-v200 .print-job-launcher,
.home-order-first-v200 .campaign-showcase,
.home-order-first-v200 .outcome-planner,
.home-order-first-v200 .product-family-deep-dive,
.home-order-first-v200 .visual-story,
.home-order-first-v200 .production-capability,
.home-order-first-v200 .capability-scope-strip,
.home-order-first-v200 .designer-progress-banner {
  display: none !important;
}

#products .home-category-market-card::before {
  background: var(--market-image) center / cover no-repeat !important;
}

.hero-request-builder > summary {
  cursor: pointer;
  list-style: none;
}
.hero-request-builder > summary::-webkit-details-marker { display: none; }
.hero-request-builder > summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  border-radius: 50%;
  color: #fff;
  background: #087a55;
  font-size: 22px;
  line-height: 1;
}
.hero-request-builder[open] > summary::after { content: "−"; }

.request-stepper { display: none; }
.request-form.is-stepped .request-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 22px;
}
.request-stepper button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 9px 10px;
  border: 1px solid #d7e3de;
  border-radius: 10px;
  color: #587068;
  background: #f5f9f7;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.request-stepper button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: #7b9189;
  font-weight: 950;
}
.request-stepper button strong { font-size: 12px; line-height: 1.15; }
.request-stepper button[aria-current="step"] {
  border-color: #07845a;
  color: #09261d;
  background: #e8f8ef;
  box-shadow: 0 8px 22px rgba(7, 132, 90, .11);
}
.request-stepper button[aria-current="step"] span { background: #07845a; }
.request-stepper button.is-complete span { background: #1b77b7; }

.request-form.is-stepped .request-step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  scroll-margin-top: 100px;
}
.request-form.is-stepped .request-step[hidden] { display: none !important; }
.request-step > h3,
.request-step > fieldset,
.request-step > .full,
.request-step > .wetransfer-panel,
.request-step > .specs-callout,
.request-step > .request-review,
.request-step > .request-step-actions,
.request-step > h2,
.request-step > .form-grid,
.request-step > button[type="submit"] { grid-column: 1 / -1; }
.request-step > h3 {
  margin: 0 0 4px;
  color: #10251d;
  font-size: clamp(22px, 3vw, 31px);
}
.request-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid #dfe8e4;
}
.request-step-actions [data-request-next] { margin-left: auto; }
.request-review {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #b9d8ca;
  border-left: 5px solid #07845a;
  border-radius: 12px;
  background: #f4fbf7;
}
.request-review > strong { font-size: 20px; }
.request-review [data-request-review-lines] { display: grid; gap: 0; }
.request-review [data-request-review-lines] > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid #d7e3de;
}
.request-review span,
.request-review small { color: #5d7169; }

@media (max-width: 760px) {
  .request-form.is-stepped .request-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .request-form.is-stepped .request-step { grid-template-columns: 1fr; }
  .request-step > * { grid-column: 1 !important; }
  .request-stepper button strong { font-size: 11px; }
  .request-step-actions .button { flex: 1 1 0; }
  .request-review [data-request-review-lines] > div { align-items: flex-start; flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .request-step,
  .request-step * { scroll-behavior: auto !important; transition: none !important; }
}
