/* Zervinar theme — v2026 visual system (WordPress site-wide)
   Source of truth: brand/v2026/system.css */

:root {
  --bg: #F8F7F4;
  --bg-soft: #F1F0EC;
  --white: #FFFFFF;
  --ink: #222222;
  --ink-2: #555555;
  --ink-3: #8A8A8A;
  --forest: #1E3A34;
  --forest-hover: #16302B;
  --forest-soft: #E8EFEC;
  --line: rgba(34, 34, 34, 0.08);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --btn-radius: 8px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --wrap: min(1100px, calc(100% - 48px));
  --section: clamp(72px, 10vw, 110px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.85s;
  --proposal-bar-h: 0px;

  /* Legacy token bridges (old templates / fluentform) */
  --black: var(--forest);
  --gray-50: var(--bg-soft);
  --gray-100: var(--bg-soft);
  --gray-200: var(--line);
  --gray-400: var(--ink-3);
  --gray-600: var(--ink-2);
  --gray-800: var(--ink);
  --container: 1100px;
  --section-pad: var(--section);
  --font-display: var(--font);
  --font-body: var(--font);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }

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

/* ── Typography ── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}

h1, h2, h3 { color: var(--ink); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; }
.h1 { font-size: clamp(40px, 6vw, 64px); color: var(--forest); }
.h2 { font-size: clamp(28px, 3.5vw, 40px); }
.h3 { font-size: clamp(20px, 1.8vw, 24px); font-weight: 600; letter-spacing: -0.02em; }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 36em;
  line-height: 1.65;
}

/* Aliases for existing WP templates */
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-desc {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 36em;
  line-height: 1.65;
}
.section-header { margin-bottom: 48px; max-width: 640px; }
.section-header--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: none;
}
.section-head { margin-bottom: 48px; max-width: 640px; }
.section-head .h2 { margin-bottom: 14px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary,
.btn-black {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 58, 52, 0.2);
}
.btn-primary:hover,
.btn-black:hover { background: var(--forest-hover); color: #fff; }

.btn-ghost,
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(30, 58, 52, 0.25);
}
.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--forest);
  background: var(--white);
}

.btn-light,
.btn-white {
  background: #fff;
  color: var(--forest);
}
.btn-light:hover,
.btn-white:hover { background: var(--forest-soft); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

/* ── Header (v2026 .site-header + theme .header) ── */
.site-header,
.header {
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .5s var(--ease), box-shadow .5s, border-color .5s;
}

/* Inner pages: fixed on-light (preview parity) */
body:not(.zerv-home) .header,
body:not(.zerv-home) .site-header,
.sticky-header-page .site-header,
.sticky-header-page .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  top: var(--proposal-bar-h);
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

/* Home: fixed transparent over hero (homepage.css refines scrolled state) */
.zerv-home .header,
.zerv-home .site-header,
.header--home {
  position: fixed;
  top: var(--proposal-bar-h);
  background: transparent;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; line-height: 0; }
.logo img,
.logo-dark,
.logo-light { height: 88px; width: auto; }

/* Inner / on-light: dark logo */
body:not(.zerv-home) .logo-light { display: none; }
body:not(.zerv-home) .logo-dark { display: block; }
.site-header.on-light .logo-light,
.header.on-light .logo-light { display: none; }
.site-header.on-light .logo-dark,
.header.on-light .logo-dark { display: block; }

/* Solid / scrolled (homepage.js toggles .scrolled; v2026 uses .is-solid) */
.site-header.is-solid,
.site-header.scrolled,
.header.is-solid,
.header.scrolled {
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-solid .logo-light,
.site-header.scrolled .logo-light,
.header.is-solid .logo-light,
.header.scrolled .logo-light { display: none; }
.site-header.is-solid .logo-dark,
.site-header.scrolled .logo-dark,
.header.is-solid .logo-dark,
.header.scrolled .logo-dark { display: block; }

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-link:hover { color: var(--forest); }
.nav-link.active {
  font-weight: 700;
  color: var(--forest);
  background: var(--forest-soft);
}

/* Transparent home header: white nav until solid */
.zerv-home .header:not(.scrolled):not(.is-solid) .nav-link,
.header--home:not(.scrolled):not(.is-solid) .nav-link,
.site-header:not(.on-light):not(.is-solid):not(.scrolled) .nav-link {
  color: #fff;
}
.zerv-home .header:not(.scrolled):not(.is-solid) .nav-link:hover,
.header--home:not(.scrolled):not(.is-solid) .nav-link:hover,
.site-header:not(.on-light):not(.is-solid):not(.scrolled) .nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
}
.zerv-home .header:not(.scrolled):not(.is-solid) .nav-link.active,
.header--home:not(.scrolled):not(.is-solid) .nav-link.active,
.site-header:not(.on-light):not(.is-solid):not(.scrolled) .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-solid .nav-link,
.site-header.scrolled .nav-link,
.header.is-solid .nav-link,
.header.scrolled .nav-link,
.site-header.on-light .nav-link {
  color: var(--ink-2);
}
.site-header.is-solid .nav-link:hover,
.site-header.scrolled .nav-link:hover,
.header.is-solid .nav-link:hover,
.header.scrolled .nav-link:hover,
.site-header.on-light .nav-link:hover { color: var(--forest); }

.site-header.is-solid .nav-link.active,
.site-header.scrolled .nav-link.active,
.header.is-solid .nav-link.active,
.header.scrolled .nav-link.active,
.site-header.on-light .nav-link.active,
body:not(.zerv-home) .nav-link.active {
  color: var(--forest);
  background: var(--forest-soft);
}

.nav-item { position: relative; }
.nav-item.has-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .5;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  box-shadow: var(--shadow-hover);
  list-style: none;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 100;
}
.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.nav-dropdown a:hover {
  background: var(--forest-soft);
  color: var(--forest);
}

.header-right { display: flex; align-items: center; gap: 16px; }

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink-2);
  display: grid;
  place-items: center;
  border-radius: 8px;
  transition: color .3s, background .3s;
}
.search-btn:hover { color: var(--forest); background: var(--forest-soft); }
.zerv-home .header:not(.scrolled):not(.is-solid) .search-btn,
.header--home:not(.scrolled):not(.is-solid) .search-btn { color: #fff; }
.zerv-home .header:not(.scrolled):not(.is-solid) .search-btn:hover,
.header--home:not(.scrolled):not(.is-solid) .search-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.header.is-solid .search-btn,
.header.scrolled .search-btn { color: var(--ink-2); }

.header-cta,
.header-contact {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 12px 24px;
  background: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: var(--btn-radius);
  box-shadow: 0 6px 16px rgba(30, 58, 52, 0.22);
  transition: background .3s, border-color .3s, color .3s, transform .3s, box-shadow .3s;
}
.header-cta:hover,
.header-contact:hover {
  background: var(--forest-hover);
  border-color: var(--forest-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 58, 52, 0.28);
}

/* Contact CTA — always forest green (matches v2026 preview) */
.zerv-home .header .header-contact,
.zerv-home .header .header-cta,
.header--home .header-contact,
.header--home .header-cta,
.header .header-contact,
.header .header-cta {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  box-shadow: 0 6px 16px rgba(30, 58, 52, 0.22);
}
.zerv-home .header .header-contact:hover,
.zerv-home .header .header-cta:hover,
.header--home .header-contact:hover,
.header--home .header-cta:hover {
  background: var(--forest-hover);
  border-color: var(--forest-hover);
  color: #fff;
}

/* ── Sections ── */
.section { padding: var(--section) 0; }
.section-alt,
.section-gray { background: var(--bg-soft); }
.section-forest {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.85);
}
.section-forest h2,
.section-forest .section-title { color: #fff; }
.section-forest .lede,
.section-forest .section-desc { color: #d7ddd9; }
.section-forest .eyebrow { color: rgba(255, 255, 255, 0.5); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Cap / icon cards (site-wide) */
.cap-grid,
.icon-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.icon-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cap-card .icon,
.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--forest-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.cap-card .icon svg,
.icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.cap-card h3,
.icon-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 24px);
}
.cap-card p,
.icon-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Trust — v2026 + WP aliases */
.trust,
.trust-bar {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-row,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
.trust-item,
.trust-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 16px;
  text-align: center;
  position: relative;
}
.trust-item:not(:last-child)::after,
.trust-grid > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}
.trust-item strong,
.trust-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--forest);
  line-height: 1.1;
}
.trust-item span,
.trust-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  line-height: 1.35;
}

/* Video */
.video-frame,
.video-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}
.video-frame.is-playable,
.video-block.is-playable { cursor: pointer; }
.video-frame img,
.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.video-frame:hover img,
.video-frame.is-playable:hover .video-poster,
.video-block.is-playable:hover .video-poster {
  transform: scale(1.04);
}
.video-play,
.video-play-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  z-index: 1;
  background: linear-gradient(to top, rgba(15, 31, 28, 0.35), rgba(15, 31, 28, 0.08));
}
.play-btn,
.play-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: transform .45s var(--ease);
  border: none;
}
.video-frame:hover .play-btn,
.video-frame:hover .play-circle,
.video-block:hover .play-circle { transform: scale(1.08); }
.video-play span,
.video-caption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.video-embed {
  position: absolute;
  inset: 0;
  display: none;
  z-index: 2;
  background: #000;
}
.video-embed.active { display: block; }
.video-embed iframe,
.video-embed video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Product cards (v2026 prod-*) */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prod-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.prod-card .img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}
.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.prod-card:hover img { transform: scale(1.06); }
.prod-card .body { padding: 24px 26px 28px; }
.prod-card h3 { color: var(--forest); margin-bottom: 8px; }
.prod-card p { font-size: 14px; margin-bottom: 14px; }
.prod-card .go {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.model-card h3 {
  color: var(--forest);
  font-size: 28px;
  margin-bottom: 12px;
}
.model-card p { font-size: 15px; margin-bottom: 20px; }
.model-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
}

/* Process (v2026 card steps) */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.process-step {
  text-align: center;
  padding: 22px 18px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.process-dot {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-align: center;
}
.process-step p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
  text-align: center;
}
.process-step span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
}

/* Sol tabs (v2026) */
.sol-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.sol-tabs button {
  padding: 12px 22px;
  border-radius: var(--btn-radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: background .35s, color .35s, transform .35s var(--ease);
}
.sol-tabs button:hover { transform: translateY(-1px); }
.sol-tabs button.active {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 58, 52, 0.22);
}
.sol-panel-wrap {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 360px;
}
.sol-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.sol-panel.active { display: grid; animation: fadePanel .6s var(--ease); }
.sol-panel--text.active { grid-template-columns: 1fr; }
.sol-panel--text .sol-copy { max-width: 52em; }
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.sol-copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.sol-copy h3 { color: var(--forest); font-size: 28px; margin: 8px 0 14px; }
.sol-copy p { font-size: 15px; margin-bottom: 24px; max-width: 34em; }
.sol-media { overflow: hidden; min-height: 360px; height: 100%; background: var(--bg-soft); }
.sol-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.sol-panel.active .sol-media img { transform: scale(1.03); }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card .img,
.blog-img,
.blog-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-card img,
.blog-img img,
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.blog-card:hover img,
.blog-card:hover .blog-img img,
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card .body,
.blog-body,
.blog-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .meta,
.blog-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.blog-card h3,
.blog-body h3,
.blog-card-body h2 {
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 600;
}

/* CTA */
.cta,
.cta-section {
  padding: var(--section) 0;
  background: #152924;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}
.cta-copy { max-width: 640px; text-align: left; }
.cta h2,
.cta-inner h2,
.cta-section h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cta p,
.cta-inner p {
  color: #d7ddd9;
  font-size: 17px;
  max-width: 36em;
  margin: 0;
}
.cta .btn,
.cta-inner .btn { flex-shrink: 0; }

/* Footer */
.footer {
  background: #152924;
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}
.footer-brand { min-width: 0; }
.footer-logo {
  display: block;
  height: 96px;
  width: auto;
  margin: 0 0 18px;
}
.footer-brand > p,
.footer-about {
  margin: 0;
  max-width: 28ch;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.footer h4,
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 16px;
}
.footer a { color: rgba(255, 255, 255, 0.55); }
.footer a:hover { color: #fff; }
.footer ul,
.footer-links,
.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer li,
.footer-links li,
.footer-contact-list li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-socials,
.socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 0;
}
.footer-socials a,
.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: none;
  transition: background .3s, color .3s, transform .3s;
}
.footer-socials a:hover,
.socials a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-1px);
}
.footer-socials svg,
.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  text-align: center;
}

/* Page hero — shared homepage banner */
.page-hero {
  display: flex;
  align-items: center;
  min-height: 320px;
  padding: 112px 0 64px;
  background:
    linear-gradient(105deg, rgba(248,247,244,.94) 0%, rgba(248,247,244,.8) 45%, rgba(248,247,244,.58) 100%),
    var(--page-hero-img, none) 58% center / cover;
}
body:not(.zerv-home) .page-hero {
  min-height: 420px;
  padding-top: calc(92px + 48px);
  padding-bottom: 80px;
}
.page-hero .wrap { width: var(--wrap); margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  color: var(--forest);
  max-width: 14ch;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.7;
}

/* Timeline / about */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tl-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.tl-card .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.tl-card h4 { color: var(--forest); font-size: 18px; margin-bottom: 8px; }
.tl-card p { font-size: 14px; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-split--text { grid-template-columns: 1fr; max-width: 720px; }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vision-grid .card h3,
.vision-item h3 { margin-bottom: 10px; color: var(--forest); }
.vision-item {
  padding-top: 24px;
  border-top: 2px solid var(--forest);
}
.vision-item p { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.capability-bullets {
  margin-top: 20px;
  padding-left: 1.2em;
  line-height: 2;
  color: var(--ink-2);
  list-style: disc;
}

/* Service showcase (v2026) */
.service-showcase { display: flex; flex-direction: column; gap: 28px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 380px;
  align-items: stretch;
  transition: box-shadow .5s var(--ease), transform .5s var(--ease);
}
.service-row:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.service-row.reverse .service-row-media { order: 2; }
.service-row.reverse .service-row-copy { order: 1; }
.service-row--text { grid-template-columns: 1fr; }
.service-row-media {
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 380px;
  height: 100%;
}
.service-row-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.1s var(--ease);
}
.service-row:hover .service-row-media img { transform: scale(1.04); }
.service-row-copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.service-row-copy .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}
.service-row-copy h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  color: var(--forest);
  margin-bottom: 14px;
}
.service-row-copy p { font-size: 15px; margin-bottom: 22px; max-width: 34em; }

/* Legacy service blocks */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.service-block-image img { width: 100%; height: 100%; object-fit: cover; }
.service-block h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.service-block p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}

.process-full {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.process-card {
  padding: 28px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  background: var(--white);
}
.process-card-num {
  font-size: 28px;
  font-weight: 300;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.process-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--forest);
  text-align: center;
}
.process-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  text-align: center;
}

.solution-full-card {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--white);
}
.solution-full-card:nth-child(even) { direction: rtl; }
.solution-full-card:nth-child(even) > * { direction: ltr; }
.solution-full-image { overflow: hidden; background: var(--bg-soft); }
.solution-full-image img { width: 100%; height: 100%; object-fit: cover; }
.solution-full-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-full-body h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--forest);
}
.solution-full-body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Advantages */
.advantages-intro { margin-bottom: 28px; max-width: 640px; }
.advantages-intro h3 {
  color: var(--forest);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.advantages-intro p {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 54ch;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 64px;
}
.advantage-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
}
.advantage-card > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.advantage-card strong {
  display: block;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 12px;
}
.advantage-card p { font-size: 14px; line-height: 1.6; }

/* Products archive */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: var(--white);
  cursor: pointer;
  transition: all .2s;
  color: var(--ink-2);
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.filter-chip {
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: var(--bg-soft);
  cursor: pointer;
}
.filter-chip.active {
  border-color: var(--forest);
  background: var(--white);
  color: var(--forest);
}

.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.product-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  position: sticky;
  top: calc(var(--proposal-bar-h) + 100px);
}
.sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
  padding: 0 8px;
}
.cat-all,
.product-sidebar .cat-all {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  border-bottom: none;
  letter-spacing: -0.01em;
  text-transform: none;
}
.cat-all.active,
.product-sidebar .cat-all.active {
  color: var(--forest);
  background: var(--forest-soft);
}
.cat-group + .cat-group {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.cat-group { border-bottom: none; }
.cat-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 8px;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: left;
  border-radius: 8px;
  transition: background .25s, color .25s;
}
.cat-toggle:hover { background: var(--bg); color: var(--forest); }
.cat-toggle:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
.cat-toggle .chev,
.cat-toggle svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform .35s var(--ease), color .25s;
  opacity: 1;
}
.cat-group.open .cat-toggle .chev,
.cat-group.open .cat-toggle svg {
  transform: rotate(180deg);
  color: var(--forest);
}
.cat-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s var(--ease), opacity .3s ease, margin .3s ease;
}
.cat-group.open .cat-sublist {
  max-height: 360px;
  opacity: 1;
  margin-bottom: 6px;
}
.cat-link,
.cat-sublist a {
  display: block;
  padding: 7px 12px 7px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-3);
  border-radius: 8px;
  line-height: 1.4;
}
.cat-link:hover,
.cat-sublist a:hover {
  color: var(--forest);
  background: var(--bg);
}
.cat-link.active,
.cat-sublist a.active {
  color: var(--forest);
  font-weight: 600;
  background: var(--forest-soft);
}
.products-main .filter-group { margin-left: 0; margin-bottom: 28px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-grid { grid-template-columns: repeat(3, 1fr); }
.product-item {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.product-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-item.is-hidden { display: none; }
.product-item-image {
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1s var(--ease);
}
.product-item:hover .product-item-image img { transform: scale(1.05); }
.product-item-body { padding: 20px 22px 24px; }
.product-item-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.product-item-body h3 {
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 600;
}
.product-item-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* Product detail */
.product-detail-section { padding-top: 40px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.product-gallery-thumbs div {
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--btn-radius);
  cursor: pointer;
}
.product-gallery-thumbs div.active { border-color: var(--forest); }
.product-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--forest);
}
.product-facts { margin: 28px 0 32px; }
.product-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-meta-row > div {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 16px;
}
.product-meta-row span,
.tag-group-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-meta-row strong {
  color: var(--forest);
  font-size: 15px;
  font-weight: 600;
}
.tag-group {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}
.tag-group:first-of-type {
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--btn-radius);
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: inherit;
  line-height: inherit;
  text-transform: none;
  letter-spacing: 0;
}
.tag-pill.clickable,
.tag-pill.selectable { cursor: pointer; transition: all .2s; user-select: none; }
.tag-pill.clickable:hover,
.tag-pill.selectable:hover {
  border-color: var(--forest);
  background: var(--white);
  color: var(--forest);
}
.tag-pill.selectable.selected,
.tag-pill.clickable:active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.tag-pill.other { border-style: dashed; color: var(--ink-3); }
.tag-pill.selectable.other.selected { border-style: solid; }
.product-info > .btn { margin-left: 16px; }
.product-description {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 28px 0;
}
.product-description h3 {
  font-size: 18px;
  color: var(--forest);
  margin: 24px 0 12px;
}
.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.spec-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform .3s, box-shadow .3s;
}
.spec-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.spec-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.spec-card h3 {
  color: var(--forest);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.spec-card p { font-size: 14px; line-height: 1.65; color: var(--ink-2); }

.related-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.related-card {
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.related-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.related-card:hover .related-card-image img { transform: scale(1.04); }
.related-card-body { padding: 22px 24px 26px; }
.related-card-body .cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.related-card-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--forest);
}
.related-card-body p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* Blog tags / archive */
.blog-tag-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.blog-tag {
  padding: 10px 18px;
  border-radius: var(--btn-radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .3s, color .3s;
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.blog-tag.active,
.blog-tag:hover {
  background: var(--forest);
  color: #fff;
}
.blog-grid-page { grid-template-columns: repeat(3, 1fr); }

/* Article */
.article-section { padding-top: 40px; }
.article-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 40px;
  align-items: start;
}
.article-header { margin-bottom: 40px; }
.article-header h1 {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 16px 0 20px;
  color: var(--forest);
}
.article-hero-img,
.article-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 28px 0 32px;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.article-hero-img img,
.article-featured img { width: 100%; height: 100%; object-fit: cover; }
.article-body p,
.article-content {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body h2,
.article-content h2 {
  font-size: 24px;
  color: var(--forest);
  margin: 32px 0 12px;
  font-weight: 600;
}
.article-content ul { margin: 0 0 20px 24px; list-style: disc; }
.article-side,
.article-sidebar {
  position: sticky;
  top: calc(var(--proposal-bar-h) + 110px);
  align-self: start;
}
.side-card,
.article-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  border: none;
}
.side-card-label,
.article-sidebar h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links li + li { margin-top: 4px; }
.side-links a,
.related-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.side-links li:last-child a,
.related-link:last-child { border-bottom: none; padding-bottom: 0; }
.side-links a:hover,
.related-link:hover { color: var(--forest); }
.side-card-cta .side-cta-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 10px;
  line-height: 1.2;
}
.side-card-cta p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 20px;
  line-height: 1.55;
}
.side-card-cta .btn-primary {
  color: #fff;
  background: var(--forest);
  text-align: center;
}
.side-card-cta .btn-primary:hover {
  background: var(--forest-hover);
  color: #fff;
}

/* Contact / forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  border: none;
}
.form-row { margin-bottom: 18px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row.hidden-field { display: none; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--forest);
  background: #fff;
  box-shadow: 0 0 0 3px var(--forest-soft);
  outline: none;
}
.contact-aside,
.contact-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px;
}
.contact-sidebar h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--forest);
}
.contact-sidebar p {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 24px;
  line-height: 1.7;
}
.contact-info-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item > span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.contact-info-item > strong {
  display: block;
  color: var(--forest);
  font-size: 15px;
  font-weight: 600;
}
.contact-info-item > strong a {
  color: inherit;
  text-decoration: none;
}
.contact-info-item > strong a:hover { color: var(--forest-hover); }
.contact-section-top { padding-top: 48px; }

/* Thank you */
.thankyou-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 100px 0 40px;
}
.thankyou-box h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--forest);
}
.thankyou-box p {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Search */
.search-hero-form {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  max-width: 560px;
}
.search-hero-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: #fff;
  font: inherit;
}
.search-hero-form input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px var(--forest-soft);
  outline: none;
}
.search-meta {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 36px;
}
.search-group,
.search-results-group { margin-bottom: 40px; }
.search-group h2,
.search-results-group h2 {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.search-item,
.search-result-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.search-type,
.search-result-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.search-item h3,
.search-result-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}
.search-item h3 a,
.search-result-item h3 a { color: var(--forest); }
.search-item h3 a:hover,
.search-result-item h3 a:hover { text-decoration: underline; }
.search-item p,
.search-result-item p { font-size: 15px; color: var(--ink-2); }

/* Service switcher (services page) */
.service-switcher { margin-top: 8px; }
.service-switcher-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 44px;
}
.service-switcher-tabs [data-service-tab] {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 0;
  cursor: pointer;
  position: relative;
  transition: color .3s;
  font-family: inherit;
}
.service-switcher-tabs [data-service-tab]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.service-switcher-tabs [data-service-tab].active { color: var(--forest); }
.service-switcher-tabs [data-service-tab].active::after { transform: scaleX(1); }
.service-switcher-tabs [data-service-tab]:hover { color: var(--ink); }

.service-switcher-cards {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-height: 360px;
}
.service-switcher-card {
  flex: 0 0 calc(22% - 10px);
  background: var(--bg-soft);
  padding: 28px 22px;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  text-align: left;
  font-family: inherit;
  color: inherit;
  opacity: .5;
  transform: scale(.97);
  transition: flex .5s var(--ease), opacity .45s, transform .45s, box-shadow .45s, padding .45s, background .45s;
}
.service-switcher-card:hover { opacity: .75; }
.service-switcher-card.active {
  flex: 1 1 56%;
  background: var(--white);
  box-shadow: var(--shadow-hover);
  opacity: 1;
  transform: scale(1);
  padding: 40px 44px;
}
.service-switcher-icon {
  width: 48px;
  height: 48px;
  background: var(--forest-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--forest);
  transition: background .35s, color .35s;
}
.service-switcher-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.service-switcher-card.active .service-switcher-icon {
  background: var(--forest);
  color: #fff;
}
.service-switcher-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-switcher-card.active h3 { font-size: 28px; margin-bottom: 12px; color: var(--forest); }
.service-switcher-card .card-teaser {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.service-switcher-card .card-body { display: none; margin-top: 4px; }
.service-switcher-card.active .card-teaser { display: none; }
.service-switcher-card.active .card-body { display: block; }
.service-switcher-card .card-body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 10px;
}
.service-switcher-card .card-body .btn { margin-top: 16px; }

/* Vertical / stack tabs (services & solutions pages) */
.tabs-vertical-layout {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--white);
  overflow: hidden;
}
.tabs-vertical-nav {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.tabs-vertical-nav [data-vtab] {
  flex: 1;
  padding: 22px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-3);
  transition: all .3s ease;
}
.tabs-vertical-nav [data-vtab]:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.tabs-vertical-nav [data-vtab].active {
  color: var(--forest);
  background: var(--white);
  border-bottom-color: var(--forest);
}
.tabs-vertical-panels { position: relative; min-height: 420px; }
.tabs-vertical-panels [data-vpanel] {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, transform .45s ease, visibility .45s;
  transform: translateY(10px);
  display: flex;
  flex-direction: column;
}
.tabs-vertical-panels [data-vpanel].active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tab-panel-hero {
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 320px;
  overflow: hidden;
  background: var(--bg-soft);
}
.tab-panel-hero img { width: 100%; height: 100%; object-fit: cover; }
.tab-panel-body { padding: 40px 48px 48px; }
.tab-panel-body h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--forest);
}
.tab-panel-body p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: 720px;
}

.solution-page-tabs,
.service-stack-tabs,
.solution-stack-tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  min-height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
  overflow: hidden;
}
.service-tab-stack,
.solution-tab-stack {
  position: relative;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-right: 1px solid var(--line);
}
[data-stack-tab] {
  position: relative;
  text-align: left;
  padding: 20px 28px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  font-family: inherit;
  color: var(--ink-3);
}
[data-stack-tab] .tab-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
[data-stack-tab] .tab-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: font-size .35s;
}
[data-stack-tab].active {
  background: var(--bg-soft);
  border-left-color: var(--forest);
  color: var(--forest);
  z-index: 2;
  padding-top: 28px;
  padding-bottom: 28px;
}
[data-stack-tab].active .tab-title { font-size: 22px; }
[data-stack-tab]:not(.active) {
  transform: translateX(8px);
  opacity: .65;
}
[data-stack-tab]:not(.active):hover {
  opacity: .85;
  background: var(--bg-soft);
}
.service-tab-panels,
.solution-tab-panels,
.solution-page-panels {
  position: relative;
  background: var(--white);
}
[data-stack-panel] {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, transform .45s ease, visibility .45s;
  transform: translateX(16px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
[data-stack-panel].active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.stack-panel-image {
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 480px;
}
.stack-panel-image img { width: 100%; height: 100%; object-fit: cover; }
.stack-panel-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stack-panel-body h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--forest);
}
.stack-panel-body p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Process timeline (services page) */
.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 0 8px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-timeline-line {
  position: absolute;
  top: 14px;
  left: 8%;
  height: 1px;
  background: var(--forest);
  width: 0;
  z-index: 1;
  transition: width 1.2s ease .25s;
}
.process-timeline.revealed .process-timeline-line { width: 84%; }
.process-timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
}
.process-timeline-step.revealed {
  opacity: 1;
  transform: translateY(0);
}
.process-timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.process-timeline-step h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
  text-align: center;
}
.process-timeline-step p {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 140px;
  margin: 0 auto;
  padding: 0 6px;
  text-align: center;
}

.explore-products-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 48px;
  background: #152924;
  color: #fff;
  margin-top: 64px;
  border-radius: var(--radius-lg);
}
.explore-products-band h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.explore-products-band p { font-size: 15px; color: rgba(255, 255, 255, 0.6); }

.industry-intro { max-width: 720px; margin-bottom: 48px; }
.industry-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.industry-card {
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
  transition: box-shadow .25s, transform .25s;
}
.industry-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.industry-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--forest);
}
.industry-card .industry-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.industry-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.industry-fit { display: flex; flex-wrap: wrap; gap: 6px; }
.industry-fit span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  color: var(--ink-2);
}

.module-optional {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  position: relative;
}
.module-optional-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--bg-soft);
  color: var(--ink-2);
  border-radius: var(--btn-radius);
  z-index: 2;
}
.module-disabled { display: none; }
.tradeshow-carousel { overflow: hidden; margin-top: 32px; }
.tradeshow-track {
  display: flex;
  gap: 16px;
  transition: transform .6s ease;
}
.tradeshow-slide {
  flex: 0 0 calc(33.333% - 11px);
  min-width: calc(33.333% - 11px);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.tradeshow-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Solutions / About enrichment */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
}
.compare-table th {
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.compare-table td:first-child {
  font-weight: 700;
  color: var(--ink);
  width: 22%;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.step-card .step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--forest-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step-card .step-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-card .n {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.step-card h3 {
  color: var(--forest);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.step-card p { font-size: 14px; line-height: 1.6; }

.faq-list { margin-top: 36px; max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.faq-item p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}

.milestone-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.milestone {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.milestone:last-child { border-right: none; }
.milestone .yr {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.milestone h3 {
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 600;
}
.milestone p { font-size: 13px; line-height: 1.55; margin: 0; }

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.cert-pill {
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.crumb a { color: var(--ink-3); font-weight: 500; }
.crumb a:hover { color: var(--forest); }
.crumb [aria-current="page"] { color: var(--ink-2); font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}
.btn:focus-visible { outline-offset: 3px; }
.header-cta:focus-visible,
.header-contact:focus-visible { outline-color: var(--forest); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cat-sublist { transition: none; }
}

@media (max-width: 960px) {
  .wrap { width: min(1100px, calc(100% - 32px)); }
  .nav { display: none; }
  .cap-grid, .icon-grid-3, .icon-grid-4, .prod-grid, .model-grid, .blog-grid,
  .why-features, .sol-panel, .footer-grid, .timeline, .advantages-grid,
  .products-layout, .product-detail-grid, .about-split, .article-layout,
  .contact-grid, .product-spec-grid, .vision-grid, .blog-grid-page,
  .related-grid, .product-grid, .process-full, .related-scroll,
  .industry-matrix, .steps-row, .milestone-list {
    grid-template-columns: 1fr;
  }
  .section-header--split { grid-template-columns: 1fr; gap: 20px; }
  .trust-row, .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px 0; }
  .trust-item:nth-child(2)::after,
  .trust-grid > div:nth-child(2)::after { display: none; }
  .process { grid-template-columns: repeat(3, 1fr); }
  .sol-media { min-height: 220px; }
  .logo img, .logo-dark, .logo-light { height: 64px; }
  /* Footer logo stays 96px — do not shrink */
  .product-sidebar { position: static; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .service-row, .service-row.reverse,
  .service-block, .solution-full-card { grid-template-columns: 1fr; min-height: 0; }
  .service-row.reverse .service-row-media,
  .service-row.reverse .service-row-copy { order: initial; }
  .service-row-media { min-height: 240px; height: auto; }
  .service-row-media img { min-height: 240px; }
  .service-row-copy { padding: 32px 28px; }
  .service-block:nth-child(even),
  .solution-full-card:nth-child(even) { direction: ltr; }
  .cta-inner, .explore-products-band { flex-direction: column; grid-template-columns: 1fr; align-items: flex-start; }
  .service-stack-tabs, .solution-stack-tabs, .solution-page-tabs,
  [data-stack-panel] { grid-template-columns: 1fr; }
  .service-switcher-cards { flex-direction: column; min-height: 0; }
  .service-switcher-card,
  .service-switcher-card.active {
    flex: none;
    width: 100%;
    transform: none;
  }
  .process-timeline { flex-wrap: wrap; gap: 24px; }
  .process-timeline::before, .process-timeline-line { display: none; }
  [data-stack-tab]:not(.active) { transform: none; }
  .stack-panel-image { min-height: 240px; }
  .tab-panel-body { padding: 28px 24px 36px; }
  .filter-group { margin-left: 0; width: 100%; }
  .product-meta-row { grid-template-columns: 1fr; }
  .article-side, .article-sidebar { position: static; }
  .milestone { border-right: none; border-bottom: 1px solid var(--line); }
  .milestone:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .trust-row, .trust-grid { grid-template-columns: 1fr 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .cert-track { grid-template-columns: 1fr 1fr; }
  .cert-track.is-carousel .cert-tile { flex: 0 0 calc((100% - 16px) / 2); }
}

/* ── Service models + compare (one module) ── */
.models-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.models-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 28px 8px 24px;
  border-bottom: 1px solid var(--line);
}
.model-brief {
  padding: 4px 28px;
  position: relative;
}
.model-brief:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: var(--line);
}
.model-brief h3 {
  font-size: 22px;
  color: var(--forest);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.model-brief p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.models-table-wrap { overflow-x: auto; }
.models-block .compare-table {
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Advantage icons */
.advantage-card .adv-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--forest-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.advantage-card .adv-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Vision split — forest band */
.vision-band { padding: var(--section) 0; }
.vision-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.vision-split .vision-lead {
  position: sticky;
  top: calc(var(--proposal-bar-h) + 100px);
  padding-top: 8px;
}
.vision-split .vision-lead .h2 {
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.vision-split .vision-lead .lede {
  margin-top: 18px;
  max-width: 22em;
  color: #d7ddd9;
}
.vision-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vision-item {
  position: relative;
  padding: 26px 28px 26px 72px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.vision-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}
.vision-item .vn {
  position: absolute;
  left: 22px;
  top: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}
.vision-item h3 {
  font-size: 19px;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.vision-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36em;
}

/* Quality cert logos — 4-up, auto-carousel when >4 */
.cert-track-wrap {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
}
.cert-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cert-viewport { overflow: hidden; }
.cert-track.is-carousel {
  display: flex;
  gap: 16px;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.cert-track.is-carousel .cert-tile {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
}
.cert-tile {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 22px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cert-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.cert-tile-media {
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.cert-tile-media img {
  width: auto;
  height: 72px;
  max-width: 120px;
  object-fit: contain;
}
.cert-tile-body h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin: 0;
  line-height: 1.35;
}
.cert-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
}
.cert-track-wrap.is-rotating .cert-dots { display: flex; }
.cert-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.cert-dots button.active {
  background: var(--forest);
  transform: scale(1.2);
}

/* Contact without page hero */
.contact-page-intro {
  margin-bottom: 36px;
  max-width: 36em;
}
.contact-page-intro h1 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--forest);
  margin: 8px 0 12px;
  letter-spacing: -0.03em;
}
body.zerv-contact .contact-section-top {
  padding-top: calc(var(--proposal-bar-h) + 92px + 40px);
}

@media (max-width: 960px) {
  .models-intro { grid-template-columns: 1fr; padding: 20px 16px; }
  .model-brief { padding: 16px 4px; }
  .model-brief:not(:last-child)::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }
  .vision-split { grid-template-columns: 1fr; gap: 32px; }
  .vision-split .vision-lead { position: static; }
  .cert-track { grid-template-columns: repeat(2, 1fr); }
  .cert-track.is-carousel .cert-tile { flex: 0 0 calc((100% - 16px) / 2); }
}

