:root {
  --blue: #1c47c9;
  --blue-dark: #143399;
  --blue-soft: #eaf0ff;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --muted: #4a4a52;
  --bg: #ffffff;
  --bg-soft: #f5f7fc;
  --line: #e1e5ef;
  --line-strong: #c8cee0;
  --focus-ring: 0 0 0 3px rgba(28, 71, 201, 0.4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Helvetica Neue", Arial, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

img, svg { display: block; max-width: 100%; }

/* ---------- Layout shell ---------- */

.site-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 64px;
}

main {
  display: grid;
  gap: 88px;
  margin-top: 72px;
}

/* ---------- Top bar ---------- */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 3px solid var(--ink);
  position: relative;
  z-index: 20;
}

.topbar > .brand {
  flex-shrink: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar > .nav-container {
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  font-family: "Inter", "Arial Black", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--blue);
  text-transform: uppercase;
}

.brand .brand-tag {
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ink);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topnav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
}

.topnav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.topnav a:not(.nav-cta):hover::after,
.topnav a.active::after { transform: scaleX(1); }

.topnav a:not(.nav-cta):hover { color: var(--blue); }
.topnav a.active { color: var(--blue); }

.topnav a.nav-cta {
  padding: 12px 22px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 2px solid var(--blue);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.topnav a.nav-cta:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #ffffff;
}

.topnav a.nav-cta:active {
  transform: translateY(1px);
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.topnav a.nav-cta.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  box-shadow: inset 0 -3px 0 var(--blue);
}

.topnav a.nav-cta.active:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: inset 0 -3px 0 var(--ink);
}

/* ---------- Hamburger menu ---------- */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--ink);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: "Inter", "Arial Black", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  max-width: 18ch;
}

h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

p { margin: 0; }

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--blue);
}

.lede {
  max-width: 58ch;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  gap: 28px;
  padding-top: 16px;
}

h1 .accent,
h2 .accent { color: var(--blue); }

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

/* ---------- Hero slider ---------- */

.hero-slider { gap: 36px; }

.hero-slides {
  display: grid;
  position: relative;
}

.hero-slide {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: 28px;
  align-content: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0s;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-dots {
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 40px;
  height: 6px;
  padding: 0;
  background: var(--line-strong);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-dot:hover { background: var(--ink); }

.hero-dot.is-active {
  background: var(--blue);
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.hero-arrow:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  font: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.button-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: #ffffff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
}

.text-link::after { content: "→"; transition: transform 0.2s ease; }
.text-link:hover { color: var(--ink); }
.text-link:hover::after { transform: translateX(4px); }

/* ---------- Lede row (3 stat columns) ---------- */

.lede-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.lede-row > div {
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--line);
}

.lede-row > div:last-child { border-right: none; padding-right: 0; }
.lede-row > div:not(:first-child) { padding-left: 32px; }

.lede-row strong {
  display: block;
  font-family: "Inter", "Arial Black", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--blue);
}

.lede-row span {
  display: block;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

/* ---------- Editorial section ---------- */

.section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.section-copy { max-width: 52ch; }
.section-copy p + p { margin-top: 18px; }
.section-copy .lede { margin-top: 22px; }

.section-aside {
  border-top: 3px solid var(--blue);
  padding-top: 24px;
}

.section-aside h3 {
  margin-bottom: 20px;
  color: var(--blue);
}

/* ---------- Plain lists ---------- */

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

.plain-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: baseline;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 0.98rem;
}

.plain-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--blue);
  transform: translateY(2px);
}

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

.divided-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 28px;
  align-items: baseline;
}

.divided-list li:first-child { padding-top: 0; }
.divided-list li:last-child { border-bottom: none; padding-bottom: 0; }

.divided-list strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  min-width: 7ch;
}

.divided-list span {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.divided-list a {
  color: var(--ink);
  border-bottom: 2px solid var(--line-strong);
  padding-bottom: 1px;
}

.divided-list a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* ---------- Tag row ---------- */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-row span {
  padding: 10px 18px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-block .tag-row span {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* ---------- Catalogue ---------- */

.catalogue {
  display: grid;
  gap: 56px;
}

.catalogue-cat {
  display: grid;
  gap: 24px;
}

.cat-head {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--ink);
}

.cat-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: none;
}

.cat-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 60ch;
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 22px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
  background: #ffffff;
  border-color: var(--line-strong);
  border-left-color: var(--blue);
  transform: translateY(-2px);
}

.product-card strong {
  font-family: "Inter", "Arial Black", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.product-card span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* ---------- One bold feature block per page ---------- */

.feature-block {
  position: relative;
  padding: 72px clamp(32px, 5vw, 80px);
  background: var(--blue);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  overflow: hidden;
}

.feature-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.06) 50%);
  pointer-events: none;
}

.feature-block > * { position: relative; }

.feature-block h2,
.feature-block h3 { color: #ffffff; }

.feature-block .eyebrow {
  background: #ffffff;
  color: var(--blue);
}

.feature-block p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
}

.feature-block .plain-list li { color: #ffffff; }
.feature-block .plain-list li::before { background: #ffffff; }

.feature-block .divided-list li { border-bottom-color: rgba(255, 255, 255, 0.3); }
.feature-block .divided-list strong { color: #ffffff; }
.feature-block .divided-list span { color: rgba(255, 255, 255, 0.92); }
.feature-block .divided-list a { color: #ffffff; border-bottom-color: rgba(255, 255, 255, 0.4); }
.feature-block .divided-list a:hover { color: #ffffff; border-bottom-color: #ffffff; }

.feature-block .button-primary {
  background: #ffffff;
  color: var(--blue);
  border-color: #ffffff;
}

.feature-block .button-primary:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.feature-block .button-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.feature-block .button-secondary:hover {
  background: #ffffff;
  color: var(--blue);
}

/* ---------- CTA bar ---------- */

.cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 0;
  border-top: 3px solid var(--ink);
}

.cta-bar h2 { max-width: 24ch; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta-bar .hero-actions { margin-top: 0; }

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 88px;
  padding: 32px 0 0;
  border-top: 3px solid var(--ink);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-links a:hover { color: var(--blue); }

/* ---------- Support page (single column) ---------- */

.support-page {
  gap: 64px;
}

.support-page .hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); max-width: 18ch; }

.machine-card {
  padding: 36px 40px;
  background: var(--blue);
  color: #ffffff;
  display: grid;
  gap: 14px;
}

.machine-card .eyebrow {
  margin: 0;
  background: #ffffff;
  color: var(--blue);
  justify-self: start;
}

.machine-id-value {
  font-family: "Inter", "Arial Black", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  word-break: break-all;
  line-height: 1;
  text-transform: uppercase;
}

.support-form {
  display: grid;
  gap: 24px;
  max-width: 640px;
}

.support-form > h2 { margin: 0; }
.support-form > p:not(.eyebrow) { color: var(--muted); max-width: 56ch; }

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.field small {
  color: var(--muted);
  line-height: 1.5;
}

.refund-fields {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 2px solid var(--line);
  background: #f8f9fd;
}

.refund-fields[hidden],
[data-interac-email-field][hidden],
[data-card-refund-notice][hidden] {
  display: none;
}

.refund-notice,
.form-safety-note {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: #eef2ff;
  color: var(--ink);
  line-height: 1.5;
}

.refund-notice {
  display: grid;
  gap: 4px;
}

.form-safety-note {
  margin: 0;
  border-left-color: #b45309;
  background: #fff7ed;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 2px solid var(--line);
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.support-form select { appearance: none; padding-right: 28px; }

.support-form textarea {
  min-height: 140px;
  resize: vertical;
}

.support-form input::placeholder,
.support-form textarea::placeholder { color: #8a8d99; }

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #ffffff;
}

.support-form { max-width: none; }

.support-form .h-captcha {
  margin-top: 4px;
  min-height: 78px;
}

.support-form button {
  justify-self: start;
  margin-top: 8px;
}

.support-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 40px;
  border-top: 3px solid var(--ink);
}

.support-extras h3 {
  margin-bottom: 18px;
  color: var(--blue);
}

.status-message {
  min-height: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-message.is-error { color: #c01a1a; }
.status-message.is-success { color: #0f7a42; }

/* Honeypot fields — visually hidden but present in the DOM for bots */
.hp-fields {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.hp-fields input { width: 1px; }

/* ---------- Animation ---------- */

@media (prefers-reduced-motion: no-preference) {
  main > * { animation: rise 0.5s ease both; }
  main > *:nth-child(2) { animation-delay: 0.06s; }
  main > *:nth-child(3) { animation-delay: 0.12s; }
  main > *:nth-child(4) { animation-delay: 0.18s; }
  main > *:nth-child(5) { animation-delay: 0.24s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  body { font-size: 16px; }

  .site-shell {
    width: min(100% - 32px, 1200px);
    padding: 0 0 48px;
  }

  main { gap: 64px; margin-top: 56px; }

  .topbar {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
  }

  .hamburger {
    display: flex;
  }

  .topnav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 3px solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
  }

  .topnav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .topnav a {
    padding: 12px 24px;
    border-bottom: 1px solid var(--line);
  }

  .topnav a:last-child {
    border-bottom: none;
  }

  .topnav a.nav-cta {
    margin: 8px 24px;
    text-align: center;
  }

  .section,
  .feature-block,
  .support-extras {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-block { padding: 48px 28px; }

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

  .lede-row > div {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .lede-row > div:last-child { border-bottom: none; padding-bottom: 0; }
  .lede-row > div:first-child { padding-top: 0; }
  .lede-row > div:not(:first-child) { padding-left: 0; }

  .cta-bar { padding-top: 36px; }
  .site-footer {
    margin-top: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .button { padding: 0 22px; min-height: 50px; }
  .divided-list li { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Brochure ---------- */

.brochure-main { gap: 0; margin-top: 42px; }

.brochure-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 54px;
  align-items: center;
  padding: 64px 0 76px;
}

.brochure-hero h1 { max-width: 720px; font-size: clamp(3.2rem, 7vw, 6.8rem); line-height: .9; margin: 16px 0 28px; }
.brochure-hero-copy .lede { max-width: 680px; }
.machine-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.machine-option { min-height: 410px; padding: 34px 28px; border: 2px solid var(--line-strong); background: var(--bg-soft); display: flex; flex-direction: column; justify-content: flex-end; }
.machine-option-blue { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-18px); }
.machine-option-blue .eyebrow { color: #fff; }
.machine-option h2 { font-size: 1.7rem; line-height: 1.08; margin: 10px 0 14px; }
.machine-option p:last-child { margin: 0; line-height: 1.5; }
.machine-number { margin-bottom: auto; font-size: 4.8rem; font-weight: 900; line-height: 1; color: var(--line-strong); }
.machine-option-blue .machine-number { color: rgba(255,255,255,.3); }

.brochure-feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.brochure-feature-strip div { padding: 30px 24px; border-right: 1px solid var(--line-strong); }
.brochure-feature-strip div:last-child { border-right: 0; }
.brochure-feature-strip strong, .brochure-feature-strip span { display: block; }
.brochure-feature-strip strong { color: var(--blue); font-size: 1.15rem; text-transform: uppercase; }
.brochure-feature-strip span { color: var(--muted); font-size: .9rem; }

.brochure-section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.brochure-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 48px; margin-bottom: 48px; }
.brochure-heading h2 { max-width: 780px; margin: 0; font-size: clamp(2.2rem, 4.5vw, 4.4rem); line-height: 1; }
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--blue); color: #fff; }
.benefit-grid article { padding: 34px 26px; border-right: 1px solid rgba(255,255,255,.35); }
.benefit-grid article:last-child { border: 0; }
.benefit-grid article > span { font-size: .82rem; font-weight: 900; opacity: .65; }
.benefit-grid h3 { margin: 54px 0 14px; font-size: 1.22rem; line-height: 1.15; }
.benefit-grid p { margin: 0; font-size: .92rem; line-height: 1.55; opacity: .88; }

.location-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 2px solid var(--line-strong); border-left: 2px solid var(--line-strong); }
.location-grid span { min-height: 120px; padding: 24px; border-right: 2px solid var(--line-strong); border-bottom: 2px solid var(--line-strong); display: flex; align-items: flex-end; font-weight: 900; color: var(--blue-dark); text-transform: uppercase; line-height: 1.2; }

.brochure-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.brochure-split h2 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; }
.brochure-checklist { list-style: none; padding: 0; margin: 36px 0 0; border-top: 2px solid var(--ink); }
.brochure-checklist li { padding: 16px 0 16px 30px; border-bottom: 1px solid var(--line); position: relative; font-weight: 700; }
.brochure-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); }
.revenue-card { padding: 50px; background: var(--bg-soft); border-left: 8px solid var(--blue); }
.revenue-card a { display: inline-block; margin-top: 20px; color: var(--blue); font-weight: 900; }

.brochure-cta { margin-top: 88px; padding: 56px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; background: var(--ink); color: #fff; }
.brochure-cta h2 { margin: 8px 0; font-size: clamp(2.3rem, 4vw, 4rem); }
.brochure-cta p { margin-bottom: 0; }
.brochure-cta .button-secondary { border-color: #fff; color: #fff; }

@media (max-width: 1050px) {
  .brochure-hero { grid-template-columns: 1fr; }
  .machine-options { max-width: 720px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid article { border-bottom: 1px solid rgba(255,255,255,.35); }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .brochure-main { margin-top: 18px; }
  .brochure-hero { padding: 44px 0 56px; gap: 48px; }
  .machine-options, .brochure-heading, .brochure-split { grid-template-columns: 1fr; }
  .machine-option { min-height: 280px; }
  .machine-option-blue { transform: none; }
  .brochure-feature-strip { grid-template-columns: 1fr 1fr; }
  .brochure-feature-strip div:nth-child(2) { border-right: 0; }
  .brochure-feature-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line-strong); }
  .brochure-section { padding: 64px 0; }
  .brochure-heading { gap: 14px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { border-right: 0; }
  .benefit-grid h3 { margin-top: 26px; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-grid span { min-height: 100px; padding: 18px; font-size: .82rem; }
  .revenue-card { padding: 34px 26px; }
  .brochure-cta { margin-top: 64px; padding: 38px 26px; flex-direction: column; align-items: flex-start; }
}

@media print {
  .brochure-shell { width: 100%; }
  .topbar, .site-footer, .hero-actions { display: none; }
  .brochure-main { margin: 0; }
  .brochure-section, .brochure-hero { break-inside: avoid; }
}
