/* ============================================
   MISTER PRINT — design tokens
   Concept: the site as a print production sheet.
   Registration marks, job-ticket labels, CMYK
   separation as the signature visual device.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --paper: #ffffff;
  --paper-dim: #f2f2f0;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --navy: #0f1b2d;
  --cyan: #00aeef;
  --magenta: #ec008c;
  --yellow: #ffd400;

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.3rem; }

p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ---------- registration mark motif ---------- */

.reg-mark {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.35;
  pointer-events: none;
}
.reg-mark::before, .reg-mark::after {
  content: '';
  position: absolute;
  background: var(--navy);
}
.reg-mark::before { width: 100%; height: 1px; top: 50%; left: 0; }
.reg-mark::after { width: 1px; height: 100%; left: 50%; top: 0; }
.reg-mark span {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e8e6;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* footer sits on navy — give the logo a paper-white chip so it stays legible */
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--paper);
  padding: 14px 22px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.logo-chip img { height: 54px; }

.main-nav ul {
  display: flex;
  gap: 32px;
  font-size: 1rem;
  font-weight: 500;
}

.main-nav a { position: relative; padding: 4px 0; }
.main-nav a.active { color: var(--magenta); }
.main-nav a:not(.active):hover { color: var(--navy); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle { display: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--magenta); }

.btn-outline {
  background: transparent;
  color: var(--navy);
}
.btn-outline:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--cyan); }

.btn-sm { padding: 10px 18px; font-size: 0.74rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid #e8e8e6;
}

.hero .reg-mark:nth-of-type(1) { top: 30px; left: 30px; }
.hero .reg-mark:nth-of-type(2) { top: 30px; right: 30px; }
.hero .reg-mark:nth-of-type(3) { bottom: 30px; left: 30px; }
.hero .reg-mark:nth-of-type(4) { bottom: 30px; right: 30px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.misreg {
  position: relative;
  display: inline-block;
}
.misreg .layer {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.misreg .layer-c, .misreg .layer-m, .misreg .layer-y {
  position: absolute;
  top: 0; left: 0;
  mix-blend-mode: multiply;
  animation: converge 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.misreg .layer-c { color: var(--cyan); animation-delay: 0s; }
.misreg .layer-m { color: var(--magenta); animation-delay: 0.05s; }
.misreg .layer-y { color: var(--yellow); animation-delay: 0.1s; }
.misreg .layer-k { color: var(--ink); position: relative; }

@keyframes converge {
  0% { transform: translate(10px, -8px); opacity: 0.75; }
  100% { transform: translate(0, 0); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .misreg .layer-c, .misreg .layer-m, .misreg .layer-y { animation: none; opacity: 0; }
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 46ch;
  margin: 26px 0 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-dim);
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.placeholder-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #9a9a97;
  letter-spacing: 0.02em;
}

.placeholder-mark {
  width: 46px;
  height: auto;
  opacity: 0.16;
  margin: 0 auto 12px;
}

.category-icon {
  width: 64px;
  height: 64px;
  color: var(--navy);
  opacity: 0.45;
  margin: 0 auto 10px;
}
.category-icon svg { width: 100%; height: 100%; display: block; }
.cat-img .category-icon, .hero-visual .category-icon { width: 84px; height: 84px; opacity: 0.4; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid #e8e8e6;
}

.stat .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--navy);
  font-weight: 600;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ---------- sections ---------- */

.section { padding: 96px 0; }
.section-dim { background: var(--paper-dim); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #c7cfd8; }

.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}

/* ---------- USP / feature grid ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e2e2df;
  border: 1px solid #e2e2df;
}

.usp-card {
  background: var(--paper);
  padding: 32px 26px;
}

.usp-card .job-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  margin-bottom: 18px;
  display: block;
}

.usp-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.usp-card p { font-size: 0.92rem; }

/* ---------- category teaser ---------- */

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

.cat-card {
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,27,45,0.08); }

.cat-img {
  aspect-ratio: 16/11;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e2e2df;
}

.cat-body { padding: 24px; }
.cat-body h3 { margin-bottom: 8px; }
.cat-body p { font-size: 0.9rem; margin-bottom: 16px; }

/* ---------- logos strip ---------- */

.logos-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 0;
}

.logo-slot {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #b3b3b0;
  border: 1px dashed #d3d3d0;
  padding: 18px 26px;
  border-radius: var(--radius);
  text-align: center;
}

/* ---------- process steps ---------- */

.process-list { display: flex; flex-direction: column; }

.process-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #e8e8e6;
}
.process-row:first-child { border-top: 1px solid #e8e8e6; }

.process-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--magenta);
  padding-top: 4px;
}

.process-row h3 { margin-bottom: 6px; }
.process-row p { max-width: 60ch; }

/* ---------- testimonial placeholders ---------- */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  border: 1px dashed #d3d3d0;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
}
.testi-card .placeholder-note { margin-top: 8px; }

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid #e8e8e6;
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  color: var(--magenta);
  font-size: 1.3rem;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding-bottom: 22px; max-width: 68ch; }

/* ---------- CTA band ---------- */

.cta-band {
  text-align: center;
  padding: 90px 0;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 50ch; margin: 0 auto 32px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy);
  color: #c7cfd8;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-grid .logo { color: #fff; margin-bottom: 14px; }
.footer-grid p { font-size: 0.9rem; color: #a6b0bc; max-width: 32ch; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #7c8a99;
  flex-wrap: wrap;
  gap: 10px;
}

.todo { color: var(--yellow); }

/* ---------- catalogue page ---------- */

.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid #e8e8e6;
  text-align: center;
}
.page-hero .wrap { max-width: 720px; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 18px; }
.page-hero p { max-width: 60ch; font-size: 1.05rem; margin: 16px auto 0; }

.category-block {
  padding: 88px 0;
  border-bottom: 1px solid #e8e8e6;
  scroll-margin-top: 108px;
}
.category-block:nth-child(even) { background: var(--paper-dim); }

.category-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.category-head p { max-width: 52ch; }

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

.product-card {
  background: var(--paper);
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(15,27,45,0.08);
}
.product-card:hover .category-icon {
  opacity: 0.65;
  transform: scale(1.06);
}
.category-icon { transition: opacity 0.2s ease, transform 0.2s ease; }
.category-block:nth-child(even) .product-card { background: var(--paper); }

.product-img {
  aspect-ratio: 4/3;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e2e2df;
  position: relative;
}
.product-img .reg-mark { top: 10px; right: 10px; width: 16px; height: 16px; }

.product-body { padding: 20px; }
.product-body .job-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}
.product-body h3 { font-size: 1rem; margin-bottom: 6px; }
.product-body p { font-size: 0.86rem; margin-bottom: 16px; }

/* ---------- about page ---------- */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 88px 0;
}

.about-intro p + p { margin-top: 16px; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 30px;
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
}
.value-card .job-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--magenta);
  display: block;
  margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; }

/* ---------- contact page ---------- */

.contact-grid {
  padding: 88px 0;
}

.contact-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-areas: "steps form" "delivery form";
  gap: 60px;
  align-items: start;
}
.contact-info { display: contents; }
.how-it-works-mini { grid-area: steps; }
.contact-info-grid { grid-area: delivery; }
#quote-form { grid-area: form; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}.info-card {
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  padding: 20px;
  background: var(--paper);
}
.info-card .info-icon {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--cyan);
  margin-bottom: 12px;
}
.info-card .info-icon svg { display: block; width: 100%; height: 100%; }
.info-card .info-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 6px;
}
.info-card .info-value {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.info-card .info-value.todo {
  color: #b3b3b0;
  font-style: italic;
  font-weight: 400;
}
.info-card.info-card-wide {
  grid-column: 1 / -1;
}

.form-card {
  background: var(--paper);
  border: 1px solid #e2e2df;
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(15,27,45,0.04);
}

.contact-info .info-block { margin-bottom: 34px; }
.contact-info .info-block .job-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 10px;
}

.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--navy);
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d3d3d0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
}
.field select {
  width: 100%;
  padding: 13px 40px 13px 14px;
  border: 1px solid #d3d3d0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  text-overflow: ellipsis;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

.contact-faq { padding-bottom: 96px; }

/* ---------- category quick-links bar ---------- */

.category-nav {
  background: var(--paper-dim);
  border-bottom: 1px solid #e8e8e6;
}
.category-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.category-nav a {
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.category-nav a:hover { color: var(--magenta); }
.category-nav .soon {
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #b3b3b0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.category-nav .soon .tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: none;
  font-weight: 400;
  border: 1px solid #d3d3d0;
  border-radius: var(--radius);
  padding: 1px 6px;
}

/* ---------- language switcher ---------- */

.lang-switch {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.lang-switch summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  color: var(--ink-soft);
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary::after { content: '▾'; font-size: 0.65rem; }
.lang-switch[open] summary::after { content: '▴'; }
.lang-switch .lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--paper);
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  padding: 6px;
  min-width: 150px;
  box-shadow: 0 10px 30px rgba(15,27,45,0.1);
  z-index: 60;
}
.lang-menu a {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.lang-menu a.current { color: var(--navy); font-weight: 600; }
.lang-menu a:hover { background: var(--paper-dim); color: var(--navy); }
.lang-menu .tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: #b3b3b0;
}

.header-icons { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  color: var(--ink-soft);
  cursor: pointer;
  background: none;
}
.icon-btn:hover { color: var(--navy); border-color: var(--navy); }

/* ---------- trust bar ---------- */

.trust-bar {
  border-bottom: 1px solid #e8e8e6;
  background: var(--paper-dim);
}
.trust-bar ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px 0;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-bar .dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
}
.trust-bar li:nth-child(4n+1) .dot { background: var(--cyan); }
.trust-bar li:nth-child(4n+2) .dot { background: var(--magenta); }
.trust-bar li:nth-child(4n+3) .dot { background: var(--yellow); }
.trust-bar li:nth-child(4n+4) .dot { background: var(--ink); }

/* ---------- B2B band ---------- */

.b2b-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.b2b-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}
.b2b-tags span {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 8px 14px;
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  color: var(--ink-soft);
}

/* ---------- europe coverage ---------- */

.europe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.country-chips span {
  font-size: 0.9rem;
  padding: 10px 16px;
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  background: var(--paper);
}
.europe-map {
  aspect-ratio: 1/1;
  background: var(--paper);
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.europe-map svg { width: 68%; height: auto; }

/* ---------- mobile sticky CTA ---------- */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--paper);
  border-top: 1px solid #e2e2df;
  padding: 12px 16px;
  box-shadow: 0 -6px 20px rgba(15,27,45,0.08);
}
.mobile-sticky-cta .btn { width: 100%; justify-content: center; }

/* ---------- flags sales page: bigger illustrations + gallery strip ---------- */

.product-icon-lg { width: 96px; height: 96px; opacity: 0.55; }
.hero-flag-visual {
  width: 220px;
  height: 220px;
  margin: 0 auto 8px;
  color: var(--navy);
  opacity: 0.85;
}
.hero-flag-visual svg { width: 100%; height: 100%; }

.flag-gallery {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.flag-gallery-item {
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  opacity: 0.55;
}
.flag-gallery-item svg { width: 44%; height: 44%; }

@media (max-width: 700px) {
  .flag-gallery { grid-template-columns: repeat(4, 1fr); }
  .hero-flag-visual { width: 150px; height: 150px; }
}

/* ---------- landing — patchwork drapeaux (page unique, ancienne version) ---------- */

.flag-landing {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.flag-patchwork {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
}

.flag-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.flag-tile svg {
  width: 26%;
  height: 26%;
  transform: rotate(var(--tilt, 0deg));
}

.flag-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,45,0.72) 0%, rgba(15,27,45,0.82) 60%, rgba(15,27,45,0.9) 100%);
}

.flag-landing-content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.flag-landing-logo {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 6;
}
.flag-landing-logo img {
  height: 64px;
  filter: brightness(0) invert(1);
}

.flag-landing-content .eyebrow {
  color: var(--yellow);
  justify-content: center;
}
.flag-landing-content .eyebrow::before { background: var(--cyan); }

.flag-landing-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 16ch;
  margin: 18px 0 16px;
}

.flag-landing-content p {
  color: #c7cfd8;
  max-width: 48ch;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.flag-cta-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  background: var(--yellow);
  border: none;
  padding: 26px 56px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.flag-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

/* ---------- quote modal ---------- */

.quote-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15,27,45,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.quote-modal-overlay.open { display: flex; }

.quote-modal {
  background: var(--paper);
  border-radius: 4px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-modal-close:hover { color: var(--navy); border-color: var(--navy); }

.quote-modal h2 { font-size: 1.5rem; margin-bottom: 8px; }
.quote-modal > p { margin-bottom: 26px; font-size: 0.92rem; }

.quote-modal .form-note { margin-top: 14px; }

@media (max-width: 640px) {
  .flag-patchwork { grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(14, 1fr); }
  .flag-landing-logo { top: 20px; left: 20px; }
  .flag-landing-logo img { height: 44px; }
  .flag-cta-btn { padding: 20px 36px; font-size: 1.05rem; }
  .quote-modal { padding: 28px 22px; }
}

@media (max-width: 900px) {
  .hero-grid, .about-intro, .b2b-band, .europe-grid { grid-template-columns: 1fr; }
  .contact-grid-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "steps" "form" "delivery";
  }
  .contact-info-grid { grid-template-columns: 1fr; }
  .usp-grid, .cat-grid, .value-grid, .product-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .trust-bar ul { justify-content: flex-start; gap: 22px 28px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 68px; }
}

@media (max-width: 600px) {
  .usp-grid, .cat-grid, .value-grid, .product-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 80px; }
  .section { padding: 64px 0; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .header-cta { display: none; }
  .site-header .wrap { height: 72px; }
  .logo img { height: 56px; }
  .category-nav ul { flex-wrap: nowrap; overflow-x: auto; gap: 24px; -webkit-overflow-scrolling: touch; }
  .category-nav a, .category-nav .soon { white-space: nowrap; }
}

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- homepage sales article ---------- */

.sales-article { padding: 100px 0; }
.sales-article .wrap { max-width: 800px; }
.sales-article .section-head { max-width: none; text-align: left; margin-bottom: 36px; }

.article-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 44px;
}

.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 48px;
  max-width: 640px;
}
.flow-diagram svg { width: 100%; height: auto; }
.flow-diagram-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  gap: 8px;
}
.flow-diagram-labels span { flex: 1; text-align: center; }
.flow-diagram-labels span:first-child { color: var(--navy); font-weight: 600; text-align: left; }
.flow-diagram-labels span:nth-child(2) { color: var(--cyan); font-weight: 600; }
.flow-diagram-labels span:nth-child(3) { color: var(--magenta); font-weight: 600; }
.flow-diagram-labels span:last-child { color: #b8860b; font-weight: 600; text-align: right; }

@media (max-width: 640px) {
  .flow-diagram-labels { flex-wrap: wrap; }
  .flow-diagram-labels span { flex: 1 1 45%; text-align: center !important; }
}

.article-subhead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 48px 0 22px;
}

.article-benefits { display: flex; flex-direction: column; gap: 22px; margin-bottom: 12px; }
.article-benefit { display: flex; gap: 18px; align-items: flex-start; }
.article-benefit .benefit-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: var(--cyan);
  margin-top: 2px;
}
.article-benefit .benefit-icon svg { display: block; width: 100%; height: 100%; }
.article-benefit h4 { font-size: 1.02rem; color: var(--navy); margin-bottom: 4px; }
.article-benefit p { font-size: 0.94rem; margin: 0; }

.article-scenario {
  background: var(--paper-dim);
  border-left: 3px solid var(--magenta);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 8px 0 12px;
}
.article-scenario p { font-size: 0.98rem; font-style: italic; margin: 0; }

.article-qa { margin-top: 8px; }
.article-qa-item { padding: 18px 0; border-bottom: 1px solid #e8e8e6; }
.article-qa-item:first-child { border-top: 1px solid #e8e8e6; }
.article-qa-item .q { font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: 0.98rem; }
.article-qa-item .a { font-size: 0.94rem; margin: 0; }

.article-close {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #e8e8e6;
}
.article-close p { max-width: 52ch; margin: 0 auto 26px; font-size: 1rem; }
.article-close .form-note { margin-top: 14px; justify-content: center; display: block; text-align: center; }

@media (max-width: 640px) {
  .article-benefit { flex-direction: column; gap: 10px; }
}

/* ---------- persistent category sidebar ---------- */

.category-sidebar {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 196px;
  z-index: 45;
  display: none;
}
.category-sidebar .sidebar-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b3b3b0;
  margin-bottom: 14px;
  padding-left: 14px;
}
.category-sidebar ul { display: flex; flex-direction: column; gap: 2px; }
.category-sidebar a {
  display: block;
  padding: 8px 14px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.category-sidebar a:hover {
  color: var(--navy);
  border-left-color: #d3d3d0;
}
.category-sidebar a.active {
  color: var(--magenta);
  border-left-color: var(--magenta);
  font-weight: 600;
}

@media (min-width: 1360px) {
  .category-sidebar { display: block; }
  body { padding-left: 250px; }
}

/* generic scroll offset for any other in-page anchor targets on any page,
   so jumps never land the heading underneath the sticky header */
[id] { scroll-margin-top: 108px; }

/* ---------- product detail page ---------- */
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink-soft);
  padding: 20px 0;
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span.sep { margin: 0 8px; color: #c9c9c6; }
.breadcrumbs span.current { color: var(--navy); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 20px 0 80px;
  align-items: start;
}
.product-detail-visual {
  aspect-ratio: 1;
  background: var(--paper-dim);
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 110px;
}
.product-detail-visual .category-icon { width: 140px; height: 140px; opacity: 0.35; }
.product-detail-body .job-num {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 10px;
}
.product-detail-body h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.product-detail-body .lead { font-size: 1.08rem; margin-bottom: 28px; }
.product-detail-cta { margin-bottom: 36px; }
.product-detail-cta .form-note { margin-top: 12px; }

.pd-block { margin-bottom: 30px; }
.pd-block h2 { font-size: 1.15rem; color: var(--navy); margin-bottom: 14px; }
.pd-list { display: flex; flex-direction: column; gap: 10px; }
.pd-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.pd-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 7px;
  flex-shrink: 0;
}
.pd-related {
  margin-top: 8px;
  font-size: 0.9rem;
}
.pd-related a { color: var(--magenta); }

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-visual { position: static; aspect-ratio: 16/10; }
}

/* ---------- mobile hamburger menu ---------- */

.hamburger-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  color: var(--navy);
  cursor: pointer;
}

.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  z-index: 90;
  padding: 24px 24px 100px;
  overflow-y: auto;
}
.mobile-menu-panel.open { display: block; }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-nav a {
  padding: 16px 4px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid #e8e8e6;
}
.mobile-menu-nav a.active { color: var(--magenta); }

.mobile-menu-categories {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e6;
}
.mobile-menu-categories .sidebar-title { padding-left: 0; }
.mobile-menu-categories ul { display: flex; flex-direction: column; gap: 2px; margin-top: 10px; }
.mobile-menu-categories a {
  display: block;
  padding: 10px 4px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hamburger-btn { display: flex; }
  .main-nav { display: none; }
}

/* ---------- form status messages ---------- */

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status-success { color: #1a7a3c; font-weight: 500; }
.form-status-error { color: var(--magenta); font-weight: 500; }

/* ---------- product image system (real photo + placeholder fallback) ---------- */

.product-img, .product-detail-visual, .cat-img, .related-card-img {
  position: relative;
  overflow: hidden;
}
.product-img .real-photo,
.product-detail-visual .real-photo,
.related-card-img .real-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 10%;
  z-index: 3;
}
.img-missing-note {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.66rem;
  z-index: 1;
}
.img-missing-note .filename-hint {
  display: block;
  font-family: var(--font-mono);
  color: #c2c2bf;
  margin-top: 2px;
}

.product-visual-col { display: flex; flex-direction: column; gap: 14px; }

.product-gallery-thumbs {
  display: flex;
  gap: 8px;
}
.product-gallery-thumbs .thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  border: 1px solid #e2e2df;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  padding: 0;
}
.product-gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery-thumbs .thumb.active { border-color: var(--cyan); }

.related-products {
  padding: 64px 0 96px;
  border-top: 1px solid #e8e8e6;
  margin-top: 40px;
}
.related-products-title {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 22px;
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e2e2df;
  border-radius: var(--radius);
  padding: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.related-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,27,45,0.06); }
.related-card-img {
  aspect-ratio: 1;
  background: var(--paper-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-card-img .category-icon { width: 40px; height: 40px; opacity: 0.35; }
.related-card-name {
  font-size: 0.86rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .related-products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- search modal ---------- */

.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,27,45,0.55);
  padding: 10vh 20px 20px;
}
.search-overlay.open { display: block; }

.search-modal {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  max-height: 76vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.search-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e6;
  color: var(--ink-soft);
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: none;
}
.search-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.search-close-btn:hover { color: var(--navy); }

.search-count {
  padding: 10px 20px 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-results {
  overflow-y: auto;
  padding: 10px 8px 16px;
}
.search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
}
.search-result:hover { background: var(--paper-dim); }
.search-result-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--paper-dim);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-result-img img { width: 100%; height: 100%; object-fit: contain; }
.search-result-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.search-result-name {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .search-overlay { padding: 0; }
  .search-modal { max-width: none; height: 100%; max-height: 100%; border-radius: 0; }
}

/* ---------- contact page: how-it-works mini + delivery message ---------- */

.how-it-works-mini {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e8e6;
}
.how-it-works-mini h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.process-list-compact .process-row {
  grid-template-columns: 44px 1fr;
  padding: 18px 0;
  gap: 16px;
}
.process-list-compact .process-tag {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--cyan);
  padding-top: 2px;
}
.process-list-compact h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.process-list-compact p {
  font-size: 0.88rem;
  margin: 0;
}

.info-card .info-value-sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 6px;
}

.field-hint {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .how-it-works-mini { margin-bottom: 24px; padding-bottom: 20px; }
  .process-list-compact .process-row { padding: 14px 0; }
}

/* ---------- homepage hero brand signature (small, tasteful — not a logo hero) ---------- */

.hero-brand {
  height: 34px;
  width: auto;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .hero-brand { height: 28px; margin-bottom: 18px; }
}
