:root {
  --ink: #17364f;
  --ink-soft: #284e6a;
  --paper: #f5f8fa;
  --white: #ffffff;
  --muted: #627584;
  --line: #dbe5ea;
  --accent: #6f9f3e;
  --accent-dark: #4f7f2d;
  --brand-blue: #2f6fa3;
  --sky: #eaf3f8;
  --sand: #f6f2e9;
  --steel: #6f8797;
  --shell: min(1240px, calc(100% - 48px));
  --radius: 4px;
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.home-partnership-strip {
  padding: 28px 0;
  background: #f8fbfc;
  border-bottom: 1px solid var(--line);
}

.partnership-strip-inner {
  padding: 30px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(47,111,163,.18);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(23,54,79,.07);
}

.partnership-strip-inner h2 {
  max-width: 840px;
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.partnership-strip-inner p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.partnership-actions,
.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-docs-cta {
  margin-top: 28px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.product-docs-cta h3 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.product-docs-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-blog-section {
  background: #f8fbfc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding-bottom: 14px;
}

.blog-rail .blog-card {
  min-height: 292px;
  scroll-snap-align: start;
}

.home-blog-footer {
  margin-top: 10px;
}

.document-section-head {
  margin-top: 42px;
  padding-top: 10px;
}

.document-section-head h2 {
  max-width: 860px;
  margin: 6px 0 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.document-section-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.catalog-product-details {
  scroll-margin-top: 120px;
}

.value-table {
  min-width: 680px;
}

.value-table tbody th {
  width: 190px;
}

.quick-contact-section {
  background: #f8fbfc;
}

.quick-contact-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(23,54,79,.07);
}

.quick-contact-card h2 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.quick-contact-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.blog-card-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.blog-card {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(23,54,79,.07);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(47,111,163,.34);
  box-shadow: 0 22px 60px rgba(23,54,79,.12);
}

.blog-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.blog-card h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-block {
  margin-top: 28px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(23,54,79,.07);
}

.faq-block > h2 {
  max-width: 780px;
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.faq-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid article {
  padding: 22px;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.article-hero .page-hero-inner {
  max-width: 1000px;
}

.article-meta {
  width: fit-content;
  margin-top: 24px;
  padding: 10px 14px;
  color: var(--brand-blue);
  background: rgba(47,111,163,.08);
  border: 1px solid rgba(47,111,163,.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.article-section {
  background: var(--white);
}

.seo-article {
  max-width: 900px;
}

.seo-article h2 {
  margin: 38px 0 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.seo-article p {
  margin: 16px 0 0;
  color: #536577;
  font-size: 18px;
  line-height: 1.82;
}

.seo-article .article-lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.62;
  letter-spacing: -.015em;
}

.article-cta {
  margin-top: 42px;
  padding: 32px;
  background: linear-gradient(135deg, #17364f, #2f6fa3);
  color: var(--white);
  border-radius: 18px;
}

.article-cta h2 {
  margin: 0;
  color: var(--white);
}

.article-cta p {
  color: rgba(255,255,255,.82);
}

.article-cta .button {
  margin-top: 22px;
}

@media (max-width: 1020px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-contact-card {
    grid-template-columns: 1fr;
  }

  .partnership-strip-inner,
  .product-docs-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .blog-card-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-card,
  .faq-block,
  .article-cta,
  .partnership-strip-inner,
  .product-docs-cta {
    padding: 24px 18px;
  }

  .seo-article h2,
  .faq-block > h2,
  .quick-contact-card h2 {
    font-size: 28px;
  }

  .seo-article p {
    font-size: 16px;
  }

  .seo-article .article-lead {
    font-size: 19px;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-sans); font-feature-settings: "kern" 1, "liga" 1; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, .brand-copy strong, .catalog-cover strong { font-family: var(--font-display); }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 12px 16px; background: var(--accent); color: var(--ink); font-weight: 700; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.15); transition: background .25s, color .25s, border-color .25s; }
.site-header.scrolled { background: rgba(244,243,239,.96); color: var(--ink); border-color: var(--line); backdrop-filter: blur(16px); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; min-width: max-content; }
.brand-mark { width: 34px; height: 34px; position: relative; display: inline-block; transform: skewY(-5deg); }
.brand-mark span { position: absolute; left: 0; height: 5px; background: var(--accent); }
.brand-mark span:nth-child(1) { top: 4px; width: 34px; }
.brand-mark span:nth-child(2) { top: 14px; width: 25px; }
.brand-mark span:nth-child(3) { top: 24px; width: 16px; }
.brand-copy { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand-copy strong { font-size: 24px; letter-spacing: -.04em; }
.brand-copy strong span { color: var(--accent); }
.site-header.scrolled .brand-copy strong span { color: var(--ink); }
.brand-copy small { font-size: 8px; letter-spacing: .18em; font-weight: 700; opacity: .72; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--accent); transition: right .22s; }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: 12px 16px; color: var(--ink); background: var(--accent); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 11px; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s; }

.hero { position: relative; min-height: 820px; height: 100svh; max-height: 980px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.5) contrast(1.05); }
.hero-shade { background: linear-gradient(90deg, rgba(11,14,12,.95) 0%, rgba(11,14,12,.78) 47%, rgba(11,14,12,.16) 82%), linear-gradient(0deg, rgba(11,14,12,.65), transparent 45%); }
.hero-grid { opacity: .13; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 82px 0 120px; }
.hero-copy { max-width: 790px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.eyebrow::before { content: ""; width: 36px; height: 3px; background: var(--accent-dark); }
.eyebrow.light { color: rgba(255,255,255,.7); }
.hero h1 { margin: 0; max-width: 880px; font-size: clamp(54px, 7vw, 100px); line-height: .94; letter-spacing: -.055em; font-weight: 800; text-wrap: balance; }
.hero h1 span { color: var(--accent); }
.hero-lead { max-width: 680px; margin: 32px 0 0; color: rgba(255,255,255,.78); font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { min-height: 52px; padding: 0 22px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .03em; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.button-accent { background: var(--accent); color: var(--ink); }
.button-accent:hover { background: #e4ff74; }
.button-ghost { border-color: rgba(255,255,255,.4); color: var(--white); background: rgba(0,0,0,.08); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-note { margin: 25px 0 0; max-width: 630px; font-size: 12px; line-height: 1.55; color: rgba(255,255,255,.55); }
.hero-note span { color: var(--accent); margin-right: 8px; }
.hero-slider-controls { width: fit-content; max-width: 100%; margin-top: 20px; display: flex; align-items: center; gap: 12px; padding: 8px; color: var(--ink); background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.72); border-radius: 7px; backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(23,54,79,.09); }
.hero-slider-controls > button { width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 5px; color: var(--brand-blue); background: transparent; font-size: 17px; transition: color .2s, background .2s; }
.hero-slider-controls > button:hover { color: var(--white); background: var(--brand-blue); }
.hero-dots { display: flex; align-items: center; gap: 7px; }
.hero-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: #a9bac5; transition: width .25s, background .25s; }
.hero-dots button.active { width: 24px; background: var(--accent); }
.hero-slide-label { min-width: 190px; padding-left: 4px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-stats { position: absolute; left: 0; right: 0; bottom: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 680px; border-top: 1px solid rgba(255,255,255,.28); }
.hero-stats div { padding: 20px 22px 0 0; }
.hero-stats strong { display: block; font-size: 28px; line-height: 1; }
.hero-stats span { display: block; margin-top: 7px; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.4; }

.principles { background: var(--white); border-bottom: 1px solid var(--line); }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.principle-grid article { min-height: 154px; display: flex; gap: 16px; padding: 34px 24px; border-right: 1px solid var(--line); }
.principle-grid article:first-child { border-left: 1px solid var(--line); }
.principle-grid article > span { color: var(--accent-dark); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.principle-grid strong { display: block; margin-bottom: 9px; font-size: 15px; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.section { padding: 120px 0; }
.section-intro { max-width: 980px; margin-bottom: 62px; }
.section-intro.narrow { max-width: 760px; text-align: center; }
.section-intro.narrow .eyebrow { justify-content: center; }
.section h2, .closing-cta h2 { margin: 0; font-size: clamp(40px, 5.2vw, 72px); line-height: 1; letter-spacing: -.055em; }
.section h2 span { color: var(--steel); }
.section-intro > p:last-child { max-width: 790px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }

.system-section { background: var(--paper); }
.system-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.system-heading > p { max-width: 480px; margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.system-showcase { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(330px, .62fr); min-height: 620px; background: var(--ink); }
.system-visual { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #c7cbc8; }
.system-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.03); transition: transform .7s ease, filter .7s ease; }
.system-visual:hover img { transform: scale(1.018); filter: saturate(.88) contrast(1.03); }
.system-visual-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,11,10,.58), transparent 48%), linear-gradient(90deg, rgba(9,11,10,.16), transparent 50%); pointer-events: none; }
.system-visual-label { position: absolute; left: 30px; bottom: 48px; z-index: 2; color: var(--white); }
.system-visual-label span { display: block; margin-bottom: 10px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.system-visual-label strong { display: block; font-size: clamp(24px, 3vw, 40px); letter-spacing: -.04em; }
.system-visual figcaption { position: absolute; z-index: 2; right: 18px; bottom: 16px; color: rgba(255,255,255,.55); font-size: 9px; }
.system-summary { padding: 48px 38px; color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.system-summary-top { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.16); }
.system-summary-top span { color: var(--accent); font-size: 56px; line-height: 1; font-weight: 800; letter-spacing: -.06em; }
.system-summary-top p { margin: 8px 0 0; color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .06em; }
.system-summary h3 { margin: 34px 0 0; font-size: 28px; line-height: 1.12; letter-spacing: -.04em; }
.system-summary > p { margin: 20px 0 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.65; }
.system-summary a { width: fit-content; margin-top: 34px; padding-bottom: 6px; border-bottom: 1px solid var(--accent); color: var(--white); text-decoration: none; font-size: 12px; font-weight: 800; }
.system-summary a span { margin-left: 12px; color: var(--accent); }
.system-features { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); border-top: 0; }
.system-features article { min-height: 142px; display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 30px 24px; border-right: 1px solid var(--line); }
.system-features article:last-child { border-right: 0; }
.system-features article > span { color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.system-features h3 { margin: 0 0 9px; font-size: 15px; }
.system-features p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.solutions-section { background: var(--white); }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.section-head > p { margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { background: var(--paper); border: 1px solid var(--line); }
.card-media { position: relative; height: 320px; overflow: hidden; background: #cfd2cf; }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,12,11,.48), transparent 55%); }
.card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68); transition: transform .5s, filter .5s; }
.solution-card:hover .card-media img { transform: scale(1.035); filter: saturate(.9); }
.card-media > span { position: absolute; z-index: 2; left: 22px; bottom: 20px; color: var(--white); font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.card-media > small { position: absolute; z-index: 2; right: 18px; top: 18px; padding: 8px 10px; color: var(--white); background: rgba(47,111,163,.88); border-radius: 4px; font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.card-media-system img { object-position: center; filter: saturate(.72) contrast(1.04); }
.card-body { padding: 28px 26px 32px; }
.card-index { margin-bottom: 18px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.card-body h3 { margin: 0; font-size: 27px; letter-spacing: -.035em; }
.card-body h2 { margin: 0; font-size: 27px; line-height: 1.1; letter-spacing: -.035em; }
.card-body > p { margin: 14px 0 22px; min-height: 68px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.card-body ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.card-body li { position: relative; padding: 12px 0 12px 17px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.card-body li::before { content: "+"; position: absolute; left: 0; color: var(--accent-dark); }

.spans-section { background: var(--ink); color: var(--white); overflow: hidden; }
.spans-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.spans-copy > p:not(.eyebrow) { margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.65; }
.span-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 42px; }
.span-tabs button { min-width: 66px; height: 46px; border: 1px solid rgba(255,255,255,.2); color: var(--white); background: transparent; font-size: 13px; font-weight: 800; }
.span-tabs button:hover, .span-tabs button.active { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.span-panel { position: relative; min-height: 460px; padding: 42px; border: 1px solid rgba(255,255,255,.2); background: #1d211e; overflow: hidden; }
.span-watermark { position: absolute; right: -24px; bottom: -80px; color: rgba(255,255,255,.035); font-size: 330px; line-height: 1; font-weight: 800; letter-spacing: -.09em; pointer-events: none; }
.span-panel-top { position: relative; display: flex; justify-content: space-between; align-items: end; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.18); }
.span-panel-top span, .span-panel-grid span { color: rgba(255,255,255,.48); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.span-panel-top strong { color: var(--accent); font-size: 42px; letter-spacing: -.04em; }
.span-panel-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; margin-top: 10px; }
.span-panel-grid div { min-height: 108px; padding: 24px 22px 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.span-panel-grid div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
.span-panel-grid div:nth-child(even) { padding-left: 22px; }
.span-panel-grid strong { display: block; margin-top: 12px; max-width: 250px; font-size: 15px; line-height: 1.45; }
.span-panel > p { position: relative; margin: 24px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.6; }

.detail-section { padding: 0; background: var(--paper); }
.detail-layout { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.detail-image { position: relative; min-height: 760px; overflow: hidden; }
.detail-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55); }
.image-tag { position: absolute; right: 0; bottom: 0; padding: 20px 26px; background: var(--accent); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.image-tag span { margin-right: 14px; }
.detail-copy { align-self: center; max-width: 690px; padding: 90px clamp(36px, 7vw, 110px); }
.detail-copy > p:not(.eyebrow) { margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.detail-points { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; margin-top: 40px; border-top: 1px solid var(--line); }
.detail-points article { padding: 24px 0; border-bottom: 1px solid var(--line); }
.detail-points strong { font-size: 14px; }
.detail-points p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article { min-height: 280px; padding: 30px 24px; border-right: 1px solid var(--line); }
.process-grid article:first-child { border-left: 1px solid var(--line); }
.process-grid span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 48px; background: var(--ink); color: var(--accent); font-size: 11px; font-weight: 800; }
.process-grid h3 { margin: 0 0 14px; font-size: 19px; letter-spacing: -.02em; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.catalog-section { background: var(--paper); }
.catalog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.catalog-card { min-height: 430px; display: grid; grid-template-columns: .72fr 1.28fr; background: var(--white); border: 1px solid var(--line); overflow: hidden; }
.catalog-cover { position: relative; min-height: 430px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--ink); overflow: hidden; }
.catalog-cover::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.32) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.32) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(135deg, #000, transparent 72%); }
.catalog-cover::after { content: ""; position: absolute; width: 230px; height: 230px; right: -105px; top: -75px; border: 34px solid var(--accent); transform: rotate(45deg); opacity: .92; }
.catalog-cover.mini { background: #343a35; }
.catalog-cover > * { position: relative; z-index: 1; }
.catalog-cover > span { position: absolute; left: 28px; top: 26px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.catalog-cover strong { font-size: 31px; letter-spacing: -.05em; }
.catalog-cover p { margin: 9px 0 0; color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.catalog-cover small { margin-top: 13px; max-width: 180px; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.45; }
.catalog-info { padding: 36px 30px; display: flex; flex-direction: column; justify-content: center; }
.catalog-info > div { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.catalog-info > div span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.catalog-info > div em { padding: 6px 8px; color: #58622d; background: #eff7ce; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .04em; }
.catalog-info h3 { margin: 27px 0 0; font-size: 26px; line-height: 1.15; letter-spacing: -.035em; }
.catalog-info > p { margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.catalog-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.catalog-actions .button { min-height: 44px; padding-inline: 17px; font-size: 11px; }
.button-primary { color: var(--white); background: var(--brand-blue); }
.button-primary:hover { color: var(--white); background: #245d8b; }
.catalog-download { color: var(--brand-blue); font-size: 11px; font-weight: 800; text-decoration: none; }
.catalog-download small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 700; }
.catalog-download:hover { text-decoration: underline; text-underline-offset: 4px; }

.builder-section { background: var(--sand); color: var(--ink); }
.builder-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.builder-copy { position: sticky; top: 120px; }
.builder-copy > p:not(.eyebrow) { color: rgba(255,255,255,.63); font-size: 16px; line-height: 1.65; }
.builder-warning { margin-top: 40px; padding: 22px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.05); }
.builder-warning strong { color: var(--accent); font-size: 11px; letter-spacing: .12em; }
.builder-warning p { margin: 9px 0 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.6; }
.project-builder { padding: 40px; background: var(--paper); color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; margin-bottom: 28px; }
.form-grid label { display: flex; flex-direction: column; gap: 9px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-grid input, .form-grid select { width: 100%; height: 52px; padding: 0 14px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 0; text-transform: none; letter-spacing: normal; }
.form-grid small { margin-top: -4px; color: var(--muted); font-size: 10px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.project-builder > .button { border: 0; }
.builder-result { margin-top: 28px; padding: 24px; background: var(--ink); color: var(--white); }
.result-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.16); }
.result-head strong { color: var(--accent); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.result-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.result-head button, .result-head a { min-height: 35px; padding: 8px 12px; display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.25); background: transparent; color: var(--white); text-decoration: none; font-size: 11px; font-weight: 700; }
.result-head a { border-color: var(--accent); color: var(--ink); background: var(--accent); }
.builder-result pre { margin: 18px 0 0; white-space: pre-wrap; color: rgba(255,255,255,.75); font: 13px/1.7 Arial, sans-serif; }
.copy-status { min-height: 18px; margin: 10px 0 0; color: var(--accent); font-size: 11px; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; list-style: none; font-size: 17px; font-weight: 700; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -4px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.closing-cta { padding: 78px 0; color: var(--white); background: var(--ink); }
.closing-inner { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.closing-inner h2 { max-width: 830px; font-size: clamp(38px, 4.5vw, 65px); }
.button-light { flex: 0 0 auto; background: var(--white); color: var(--ink); }

.site-footer { color: var(--muted); background: #f4f8fa; }
.footer-main { display: grid; grid-template-columns: 1.15fr .65fr .72fr 1.48fr; gap: 48px; padding: 72px 0 60px; }
.footer-brand { color: var(--white); }
.footer-main > div:first-child > p { max-width: 320px; margin: 22px 0 0; font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links strong, .footer-contact > strong { margin-bottom: 4px; color: var(--white); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: rgba(255,255,255,.62); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--accent); }
.footer-links a small { margin-left: 6px; color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.social-links { display: flex; gap: 8px; margin-top: 25px; }
.social-link { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.58); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-link.is-pending { cursor: default; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-email { margin-top: 12px; color: var(--accent); text-decoration: none; font-size: 16px; font-weight: 800; }
.footer-email:hover { color: var(--white); }
.footer-contact address { width: 100%; margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; font-style: normal; }
.footer-contact address span { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.55; }
.footer-contact address b { display: block; margin-bottom: 6px; color: var(--white); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; letter-spacing: .06em; }

.reveal { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 36px, 960px); }
  .site-nav { gap: 19px; }
  .hero { min-height: 740px; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .principle-grid article:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .principle-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .spans-layout, .builder-layout { grid-template-columns: 1fr; }
  .system-heading { grid-template-columns: 1fr; gap: 24px; }
  .system-showcase { grid-template-columns: 1fr; }
  .system-visual { min-height: 580px; }
  .system-summary { min-height: 390px; }
  .system-features { grid-template-columns: 1fr 1fr; }
  .system-features article:nth-child(2) { border-right: 0; }
  .system-features article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 25px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .solution-card:last-child .card-media { height: 100%; min-height: 380px; }
  .detail-layout { grid-template-columns: .85fr 1.15fr; }
  .detail-copy { padding: 70px 42px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid article { border-bottom: 1px solid var(--line); }
  .catalog-card { grid-template-columns: .8fr 1.2fr; }
  .builder-copy { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1.3fr .7fr .8fr; }
  .footer-contact { grid-column: 1 / -1; max-width: 720px; }
}

@media (max-width: 780px) {
  :root { --shell: calc(100% - 28px); }
  .header-inner { height: 70px; }
  .menu-toggle { display: block; color: currentColor; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 70px 0 0; padding: 38px 24px; display: flex; flex-direction: column; align-items: stretch; gap: 0; color: var(--ink); background: var(--paper); transform: translateX(100%); visibility: hidden; transition: transform .28s, visibility .28s; }
  .site-nav.open { transform: translateX(0); visibility: visible; }
  .site-nav a { padding: 19px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .site-nav .nav-cta { margin-top: 24px; padding: 18px; text-align: center; border: 0; }
  .hero { height: auto; min-height: 790px; max-height: none; }
  .hero-media img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(11,14,12,.96), rgba(11,14,12,.62)), linear-gradient(0deg, rgba(11,14,12,.82), transparent 55%); }
  .hero-content { min-height: 790px; padding: 120px 0 190px; justify-content: flex-start; }
  .hero h1 { max-width: 650px; font-size: clamp(48px, 14vw, 74px); line-height: .98; letter-spacing: -.05em; }
  .hero-lead { font-size: 18px; }
  .hero-actions .button { flex: 1 1 180px; }
  .hero-stats { bottom: 24px; grid-template-columns: repeat(3, 1fr); }
  .hero-stats div { padding-right: 12px; }
  .hero-stats strong { font-size: 22px; }
  .section { padding: 84px 0; }
  .section h2, .closing-cta h2 { font-size: clamp(38px, 11vw, 58px); }
  .section-intro { margin-bottom: 42px; }
  .system-visual { min-height: 430px; }
  .system-visual-label { left: 20px; bottom: 38px; }
  .system-visual figcaption { left: 20px; right: 20px; bottom: 14px; }
  .system-summary { min-height: 0; padding: 38px 26px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card:last-child { grid-column: auto; display: block; }
  .solution-card:last-child .card-media, .card-media { height: 280px; min-height: 0; }
  .span-panel { padding: 28px 22px; }
  .span-panel-top { display: block; }
  .span-panel-top strong { display: block; margin-top: 12px; }
  .span-panel-grid { grid-template-columns: 1fr; }
  .span-panel-grid div:nth-child(odd) { border-right: 0; }
  .span-panel-grid div:nth-child(even) { padding-left: 0; }
  .detail-layout { display: block; }
  .detail-image { min-height: 520px; }
  .detail-copy { padding: 75px 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article { min-height: 245px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .project-builder { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .closing-inner { display: block; }
  .closing-inner .button { margin-top: 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .footer-main > div:first-child, .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 7px; }
  .hero-copy { padding-top: 0; }
  .hero h1 { font-size: 48px; }
  .hero-stats span { font-size: 9px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 120px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .principle-grid article:first-child { border-top: 0; }
  .system-visual { min-height: 350px; }
  .system-visual img { object-position: 58% center; }
  .system-features { grid-template-columns: 1fr; }
  .system-features article { border-right: 0; border-bottom: 1px solid var(--line); }
  .system-features article:last-child { border-bottom: 0; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-cover { min-height: 320px; }
  .catalog-info { padding: 30px 24px; }
  .catalog-info > div { align-items: flex-start; flex-direction: column; gap: 10px; }
  .result-head { align-items: flex-start; flex-direction: column; }
  .result-actions { justify-content: flex-start; }
  .detail-points { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; }
  .process-grid span { margin-bottom: 28px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child, .footer-contact { grid-column: auto; }
  .footer-contact address { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 2026 corporate light identity */
.site-header,
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23,54,79,.06);
  backdrop-filter: blur(18px);
}
.header-inner { height: 88px; }
.brand-logo { display: block; width: 214px; height: auto; }
.site-nav a { color: var(--ink); }
.site-nav > a:not(.nav-cta)::after { background: var(--brand-blue); }
.nav-cta { color: var(--white) !important; background: var(--brand-blue); border-radius: var(--radius); }
.nav-cta:hover { background: var(--ink-soft); }
.language-switch { padding: 8px 10px; color: var(--brand-blue) !important; border: 1px solid rgba(47,111,163,.28); border-radius: 6px; }
.language-switch:hover { color: var(--white) !important; background: var(--brand-blue); border-color: var(--brand-blue); }
.skip-link { color: var(--white); background: var(--brand-blue); }

.hero { min-height: 780px; color: var(--ink); background: var(--sky); }
.hero-media img { filter: saturate(.92) contrast(1.02) brightness(1.05); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(250,253,255,.99) 0%, rgba(250,253,255,.95) 38%, rgba(250,253,255,.74) 58%, rgba(250,253,255,.12) 84%),
    linear-gradient(0deg, rgba(234,243,248,.86), transparent 40%);
}
.hero-grid {
  opacity: .1;
  background-image: linear-gradient(rgba(47,111,163,.36) 1px, transparent 1px), linear-gradient(90deg, rgba(47,111,163,.36) 1px, transparent 1px);
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}
.hero-content { padding-top: 126px; }
.hero-copy { max-width: 830px; }
.hero h1 { max-width: 960px; font-size: clamp(50px, 6vw, 84px); line-height: 1; }
.hero h1 span { color: var(--brand-blue); }
.eyebrow.light { color: var(--brand-blue); }
.eyebrow::before { background: var(--accent); }
.hero-lead { max-width: 700px; color: #486274; }
.button { border-radius: var(--radius); }
.button-accent { color: var(--white); background: var(--brand-blue); }
.button-accent:hover { background: var(--ink-soft); }
.button-ghost { color: var(--brand-blue); background: rgba(255,255,255,.82); border-color: rgba(47,111,163,.42); }
.button-ghost:hover { color: var(--white); background: var(--brand-blue); border-color: var(--brand-blue); }
.hero-note { color: #647987; }
.hero-note span { color: var(--accent); }
.hero-stats {
  max-width: 760px;
  bottom: 30px;
  border: 1px solid rgba(47,111,163,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(23,54,79,.12);
  overflow: hidden;
}
.hero-stats div { padding: 20px 22px; }
.hero-stats div + div { border-left: 1px solid var(--line); }
.hero-stats strong { color: var(--brand-blue); }
.hero-stats span { color: var(--muted); }

.principles { background: var(--white); }
.principle-grid article > span,
.system-features article > span { color: var(--brand-blue); }
.section h2, .closing-cta h2 { color: var(--ink); }
.section h2 span { color: var(--brand-blue); }
.system-section { background: var(--paper); }
.system-showcase {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 70px rgba(23,54,79,.09);
  overflow: hidden;
}
.system-visual img { filter: saturate(.9) contrast(1.02); }
.system-visual:hover img { filter: saturate(1) contrast(1.02); }
.system-summary { color: var(--ink); background: var(--sky); }
.system-summary-top { border-color: rgba(47,111,163,.18); }
.system-summary-top span { color: var(--brand-blue); }
.system-summary-top p,
.system-summary > p { color: var(--muted); }
.system-summary h3 { color: var(--ink); }
.system-summary a { color: var(--brand-blue); border-color: var(--brand-blue); }
.system-summary a span { color: var(--accent); }
.system-features { border-radius: 0 0 12px 12px; overflow: hidden; }

.solutions-section { background: var(--white); }
.solution-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 14px 45px rgba(23,54,79,.07);
  overflow: hidden;
}
.card-media img { filter: saturate(.88); }
.solution-card:hover .card-media img { filter: saturate(1); }
.card-body li::before { color: var(--accent); }

.about-section { background: var(--sand); }
.about-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.about-heading { position: sticky; top: 130px; }
.about-heading h2 { font-size: clamp(38px, 4.5vw, 64px); }
.about-copy > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.about-copy > p + p { margin-top: 22px; }
.about-copy .about-credential { margin-top: 22px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.about-credential strong { color: inherit; font-weight: 700; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-values article { min-height: 210px; padding: 28px 22px; border-right: 1px solid var(--line); }
.about-values article:first-child { border-left: 1px solid var(--line); }
.about-values span { display: block; margin-bottom: 36px; color: var(--brand-blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.about-values strong { font-size: 15px; }
.about-values p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.spans-section { color: var(--ink); background: var(--sky); }
.spans-copy > p:not(.eyebrow) { color: var(--muted); }
.span-tabs button { color: var(--brand-blue); background: var(--white); border-color: rgba(47,111,163,.24); border-radius: 6px; }
.span-tabs button:hover,
.span-tabs button.active { color: var(--white); background: var(--brand-blue); border-color: var(--brand-blue); }
.span-panel {
  background: var(--white);
  border-color: var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 65px rgba(23,54,79,.1);
}
.span-watermark { color: rgba(47,111,163,.05); }
.span-panel-top { border-color: var(--line); }
.span-panel-top span,
.span-panel-grid span { color: var(--muted); }
.span-panel-top strong { color: var(--brand-blue); }
.span-panel-grid div { border-color: var(--line); }
.span-panel-grid div:nth-child(odd) { border-color: var(--line); }
.span-panel-grid strong { color: var(--ink); }
.span-panel > p { color: var(--muted); }

.detail-section { background: var(--sand); }
.detail-image img { filter: saturate(.82); }
.image-tag { color: var(--white); background: var(--brand-blue); }
.process-grid span { color: var(--white); background: var(--brand-blue); border-radius: 6px; }

.catalog-section { background: var(--paper); }
.catalog-card { border-radius: 12px; box-shadow: 0 16px 50px rgba(23,54,79,.07); }
.catalog-cover { background: var(--brand-blue); }
.catalog-cover.mini { background: var(--accent); }
.catalog-cover::after { border-color: rgba(255,255,255,.78); }
.catalog-cover > span,
.catalog-cover p { color: var(--white); }
.catalog-cover small { color: rgba(255,255,255,.76); }
.catalog-info > div em { color: #356b21; background: #edf6e8; }

.builder-section { color: var(--ink); background: var(--sand); }
.builder-copy > p:not(.eyebrow) { color: var(--muted); }
.builder-warning { background: var(--white); border-color: var(--accent); }
.builder-warning strong { color: var(--accent-dark); }
.builder-warning p { color: var(--muted); }
.project-builder { background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 22px 65px rgba(23,54,79,.09); }
.form-grid input,
.form-grid select { background: #fbfdfe; border-radius: 6px; }
.builder-result { background: var(--ink); border-radius: 8px; }
.result-head strong { color: #a9d698; }
.result-head a { color: var(--white); background: var(--accent); border-color: var(--accent); }

.faq-section { background: var(--white); }
.faq-list { border-color: var(--brand-blue); }
.faq-list summary::after { color: var(--brand-blue); }
.closing-cta {
  color: var(--ink);
  background: linear-gradient(120deg, #e6f1f7 0%, #edf5e8 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.button-light { color: var(--white); background: var(--brand-blue); }
.button-light:hover { background: var(--ink-soft); }

.site-footer { color: var(--muted); background: #f4f8fa; }
.footer-brand { color: var(--ink); }
.footer-links strong,
.footer-contact > strong,
.footer-contact address b { color: var(--ink); }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--brand-blue); }
.footer-links a small { color: var(--accent-dark); }
.social-link { color: var(--brand-blue); background: var(--white); border-color: var(--line); border-radius: 6px; }
.footer-email { color: var(--brand-blue); }
.footer-email:hover { color: var(--accent-dark); }
.footer-contact address span { color: var(--muted); border-color: var(--line); }
.footer-bottom { border-color: var(--line); }

@media (max-width: 780px) {
  .header-inner { height: 74px; }
  .brand-logo { width: 176px; }
  .site-nav { inset: 74px 0 0; background: var(--white); }
  .site-nav .language-switch { margin-top: 18px; padding: 14px; text-align: center; }
  .hero { min-height: 820px; }
  .hero-media img { object-position: 64% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(250,253,255,.98), rgba(250,253,255,.82)),
      linear-gradient(0deg, rgba(234,243,248,.95), transparent 52%);
  }
  .hero-content { min-height: 820px; padding: 118px 0 205px; }
  .hero h1 { font-size: clamp(43px, 12vw, 64px); }
  .hero-stats { bottom: 22px; }
  .hero-stats div { padding: 17px 13px; }
  .system-summary { min-height: 0; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-heading { position: static; }
  .about-values { grid-template-columns: 1fr; }
  .about-values article { min-height: 0; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .about-values article:last-child { border-bottom: 0; }
  .about-values span { margin-bottom: 20px; }
}

@media (max-width: 500px) {
  .brand-logo { width: 158px; }
  .hero h1 { font-size: 43px; }
  .hero-stats { grid-template-columns: 1fr; position: relative; bottom: auto; margin-top: 38px; }
  .hero-stats div + div { border-left: 0; border-top: 1px solid var(--line); }
  .hero-content { min-height: 0; padding-bottom: 70px; }
  .hero { min-height: 0; }
}

@media (max-width: 620px) {
  .hero-slider-controls { width: 100%; gap: 9px; }
  .hero-slide-label { min-width: 0; flex: 1; font-size: 8px; letter-spacing: .06em; }
  .hero-slider-controls > button { flex: 0 0 32px; width: 32px; height: 32px; }
}

@media (min-width: 781px) {
  .hero-slider-controls { position: absolute; right: 0; bottom: 145px; margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .reveal, .button, .card-media img { transition: none !important; }
}

/* Corporate header and contact refinement */
.header-utility {
  height: 32px;
  overflow: hidden;
  color: rgba(255,255,255,.86);
  background: var(--ink);
  transition: height .25s ease, opacity .25s ease;
}
.header-utility-inner { height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.header-utility-inner > div { display: flex; align-items: center; gap: 22px; }
.header-utility a { color: var(--white); text-decoration: none; letter-spacing: .06em; }
.header-utility a:hover { color: #a9d698; }
.header-inner { height: 90px; transition: height .25s ease; }
.brand-logo { width: 246px; }
.site-nav { gap: 23px; }
.site-nav a { font-size: 12px; letter-spacing: .035em; }
.nav-cta { padding: 14px 18px; box-shadow: 0 8px 20px rgba(47,111,163,.16); }
.site-header.scrolled .header-utility { height: 0; opacity: 0; }
.site-header.scrolled .header-inner { height: 78px; }

.footer-main { grid-template-columns: 1.35fr .62fr .72fr; gap: 48px 58px; }
.footer-contact { grid-column: 1 / -1; max-width: none; margin-top: 8px; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 18px 55px rgba(23,54,79,.07); scroll-margin-top: 110px; }
.footer-contact-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-contact-head > div { display: flex; flex-direction: column; gap: 7px; }
.footer-contact-head strong { color: var(--ink); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact-head > div > span { color: var(--muted); font-size: 13px; }
.footer-email { min-width: 300px; margin: 0; padding: 13px 17px; display: flex; align-items: center; gap: 13px; color: var(--white); background: var(--brand-blue); border-radius: 7px; box-shadow: 0 9px 22px rgba(47,111,163,.17); }
.footer-email:hover { color: var(--white); background: var(--ink-soft); }
.footer-email svg { flex: 0 0 25px; width: 25px; height: 25px; fill: currentColor; }
.footer-email > span { display: flex; flex-direction: column; gap: 2px; font-size: 15px; letter-spacing: .01em; }
.footer-email small { color: rgba(255,255,255,.68); font-size: 8px; letter-spacing: .14em; }
.footer-contact .office-grid { width: 100%; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; font-style: normal; }
.office-card { min-height: 190px; padding: 24px; display: flex; flex-direction: column; background: #f8fbfc; border: 1px solid var(--line); border-radius: 9px; }
.office-card-head { display: flex; align-items: flex-start; gap: 13px; }
.office-card-head > span { flex: 0 0 30px; height: 30px; display: grid; place-items: center; color: var(--white); background: var(--brand-blue); border-radius: 5px; font-size: 9px; font-weight: 800; }
.office-card-head div { display: flex; flex-direction: column; gap: 4px; }
.office-card-head b { margin: 0; color: var(--ink); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.office-card-head small { color: var(--accent-dark); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.office-card p { margin: 18px 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.office-card > a { width: fit-content; margin-top: auto; color: var(--brand-blue); font-size: 11px; font-weight: 800; text-decoration: none; }
.office-card > a:hover { color: var(--accent-dark); }
.office-card > a span { margin-left: 5px; }

@media (min-width: 781px) {
  .hero-content { padding-top: 168px; }
}

@media (max-width: 1120px) and (min-width: 781px) {
  .brand-logo { width: 218px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 11px; }
  .nav-cta { padding-inline: 13px; }
}

@media (max-width: 780px) {
  .header-utility { display: none; }
  .header-inner, .site-header.scrolled .header-inner { height: 78px; }
  .brand-logo { width: 190px; }
  .site-nav { inset: 78px 0 0; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-contact { grid-column: auto; }
  .footer-contact { padding: 24px 20px; }
  .footer-contact-head { align-items: stretch; flex-direction: column; gap: 20px; }
  .footer-email { min-width: 0; width: 100%; }
  .footer-contact .office-grid { grid-template-columns: 1fr; }
  .office-card { min-height: 0; }
}

@media (max-width: 500px) {
  .brand-logo { width: 174px; }
  .footer-contact { margin-inline: -2px; }
}

/* Knowledge hub, comparison tables and quote flow */
.site-nav { gap: 18px; }
.site-nav a { font-size: 11px; }
.nav-cta { padding-inline: 16px; }

.knowledge-section { background: var(--white); }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.knowledge-grid article {
  min-height: 260px;
  padding: 30px 26px;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(23,54,79,.05);
}
.knowledge-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--brand-blue);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.knowledge-grid h2,
.knowledge-grid h3 { margin: 0; font-size: 24px; line-height: 1.12; letter-spacing: -.035em; }
.knowledge-grid p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.comparison-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: .45fr .55fr;
  gap: 34px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(23,54,79,.07);
}
.comparison-copy h2,
.comparison-copy h3 { margin: 0; font-size: clamp(30px, 3vw, 44px); line-height: 1.05; letter-spacing: -.045em; }
.comparison-copy p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.comparison-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 12px; }
.comparison-table th,
.comparison-table td { padding: 15px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table thead th { color: var(--white); background: var(--brand-blue); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.comparison-table tbody th { width: 170px; color: var(--ink); background: #f2f7fa; font-weight: 800; }
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: 0; }

.email-note { margin: 14px 0 0; color: rgba(255,255,255,.66); font-size: 11px; line-height: 1.55; }

.system-summary h2 { margin: 34px 0 0; color: var(--ink); font-size: 28px; line-height: 1.12; letter-spacing: -.04em; }
.catalog-info h2 { margin: 27px 0 0; font-size: 26px; line-height: 1.15; letter-spacing: -.035em; }
.featured-catalog { border-color: rgba(75,143,47,.45); box-shadow: 0 24px 70px rgba(75,143,47,.16); scroll-margin-top: 120px; }
.featured-catalog .catalog-cover { background: linear-gradient(145deg, #285c85, #17364f); }
.featured-catalog .catalog-info > div em { color: var(--ink); background: #dfff8b; }
.featured-catalog .button-accent { color: var(--ink); }

.blog-feature {
  margin-bottom: 24px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--ink));
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(23,54,79,.14);
}
.blog-feature .eyebrow { color: rgba(255,255,255,.72); }
.blog-feature h2 { margin: 0; max-width: 850px; color: var(--white); font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -.055em; }
.blog-feature p:not(.eyebrow) { max-width: 820px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.7; }
.blog-feature .button { white-space: nowrap; }

.legal-section { background: var(--white); }
.legal-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.legal-layout article { padding: 30px; background: #f8fbfc; border: 1px solid var(--line); border-radius: 14px; }
.legal-layout h2 { margin: 0; font-size: 28px; line-height: 1.12; letter-spacing: -.04em; }
.legal-layout p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.legal-layout a { color: var(--brand-blue); font-weight: 800; text-decoration: none; }

@media (max-width: 1180px) and (min-width: 781px) {
  .brand-logo { width: 204px; }
  .site-nav { gap: 10px; }
  .site-nav a { font-size: 10px; }
  .nav-cta { padding-inline: 12px; }
}

@media (max-width: 920px) {
  .knowledge-grid { grid-template-columns: 1fr 1fr; }
  .comparison-card { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .site-nav {
    height: calc(100dvh - 78px);
    min-height: calc(100dvh - 78px);
    overflow-y: auto;
    gap: 0 !important;
    z-index: 101;
  }
  .site-nav a { font-size: 18px; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-grid article { min-height: 0; }
  .comparison-card { padding: 24px 18px; }
}

/* Multipage structure */
.landing-page .site-header:not(.scrolled) {
  color: var(--white);
  background: rgba(12,41,61,.38);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.landing-page .site-header:not(.scrolled) .site-nav a:not(.nav-cta),
.landing-page .site-header:not(.scrolled) .language-switch { color: var(--white) !important; }
.landing-page .site-header:not(.scrolled) .language-switch { border-color: rgba(255,255,255,.36); }
.landing-page .site-header:not(.scrolled) .menu-toggle { color: var(--white); }

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-align: left;
}
.home-hero-media,
.home-hero-shade { position: absolute; inset: 0; }
.home-hero-media .hero-slide { position: absolute; inset: 0; margin: 0; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.05); }
.home-hero-shade { background: linear-gradient(rgba(10,36,54,.64), rgba(10,36,54,.62)), linear-gradient(0deg, rgba(13,49,73,.74), transparent 46%); }
.home-hero-content { position: relative; z-index: 2; max-width: 900px; padding-top: 128px; padding-bottom: 92px; }
.home-hero .eyebrow { justify-content: flex-start; color: rgba(255,255,255,.78); }
.home-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.home-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.hero-actions.centered { justify-content: flex-start; }
.landing-page .button-ghost { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.42); }
.landing-page .button-ghost:hover { background: rgba(255,255,255,.18); border-color: var(--white); }

.home-menu-tab {
  position: fixed;
  z-index: 120;
  left: 0;
  top: 47%;
  width: 54px;
  min-height: 146px;
  padding: 14px 9px;
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--brand-blue);
  border: 0;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 18px 44px rgba(23,54,79,.22);
}
.home-menu-tab span { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.home-menu-tab b { width: 18px; height: 2px; display: block; background: currentColor; box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor; }
.home-menu-tab:hover { background: var(--ink); }
.home-drawer-overlay {
  position: fixed;
  z-index: 118;
  inset: 0;
  background: rgba(5, 19, 31, .38);
  backdrop-filter: blur(2px);
}
.home-menu-drawer {
  position: fixed;
  z-index: 121;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(380px, calc(100vw - 38px));
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: rgba(10, 28, 42, .96);
  border: 1px solid rgba(255,255,255,.18);
  border-left: 0;
  border-radius: 0 22px 22px 0;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  transform: translateX(-104%);
  visibility: hidden;
  transition: transform .34s ease, visibility .34s ease;
}
.home-menu-drawer.open { transform: translateX(0); visibility: visible; }
.home-drawer-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
}
.home-slide-label { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.16); }
.home-slide-label span,
.home-menu-drawer nav a span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.home-slide-label strong { display: block; margin-top: 10px; font-size: 15px; line-height: 1.35; }
.home-menu-drawer nav { display: grid; margin-top: 18px; }
.home-menu-drawer nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 58px;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 15px;
  font-weight: 800;
}
.home-menu-drawer nav a:hover { color: var(--white); transform: translateX(4px); }
.home-drawer-contact { margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); display: grid; gap: 8px; }
.home-drawer-contact span { color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.home-drawer-contact a { color: var(--white); font-size: 16px; font-weight: 900; text-decoration: none; }
.home-drawer-contact small { color: rgba(255,255,255,.62); line-height: 1.5; }
.home-dots { display: flex; align-items: center; gap: 7px; }
.home-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.42); transition: width .25s, background .25s; }
.home-dots button.active { width: 26px; background: var(--accent); }
.home-auto-indicator { margin-top: 26px; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero-price-card {
  max-width: 520px;
  margin-top: 32px;
  padding: 20px 22px;
  display: grid;
  gap: 7px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}
.hero-price-card span { color: var(--brand-blue); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.hero-price-card strong { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.08; letter-spacing: -.04em; }
.hero-price-card a { width: fit-content; color: var(--accent-dark); font-size: 12px; font-weight: 900; text-decoration: none; border-bottom: 2px solid currentColor; }
.home-contact-strip {
  position: absolute;
  z-index: 4;
  left: 28px;
  right: 28px;
  bottom: 24px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.home-contact-strip a { color: var(--white); text-decoration: none; }
.home-contact-strip a:hover { color: var(--accent); }

.news-ticker { position: relative; z-index: 6; overflow: hidden; color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 0; animation: tickerMove 34s linear infinite; }
.ticker-track a { min-height: 48px; padding: 0 34px; display: inline-flex; align-items: center; color: rgba(255,255,255,.82); text-decoration: none; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.14); }
.ticker-track a::before { content: ""; width: 8px; height: 8px; margin-right: 14px; border-radius: 999px; background: var(--accent); }
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.page-hero {
  padding: 210px 0 96px;
  color: var(--ink);
  background: linear-gradient(120deg, #e6f1f7 0%, #f6f2e9 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 980px; }
.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.document-note {
  margin-top: 26px;
  padding: 26px 30px;
  background: var(--white);
  border: 1px dashed rgba(47,111,163,.42);
  border-radius: 12px;
}
.document-note strong { color: var(--brand-blue); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.document-note p { margin: 10px 0 0; color: var(--muted); line-height: 1.65; }
.compact-footer .footer-bottom a { color: inherit; text-decoration: none; }
.compact-footer .footer-bottom a:hover { color: var(--brand-blue); }
.standalone-contact { margin-top: 0; }
.contact-page-section { background: var(--paper); }

.home-footer { background: #eff5f8; border-top: 1px solid var(--line); }
.home-footer-grid { padding: 64px 0 50px; display: grid; grid-template-columns: 1.15fr .62fr 1.22fr .65fr; gap: 42px; }
.home-footer-grid p { max-width: 360px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.footer-email.compact { min-width: 0; width: fit-content; margin-top: 22px; text-decoration: none; }
.footer-menu { display: flex; flex-direction: column; gap: 12px; }
.footer-menu strong,
.footer-addresses strong { color: var(--ink); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-menu a { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 800; }
.footer-menu a:hover { color: var(--brand-blue); }
.footer-addresses address { margin-top: 14px; display: grid; gap: 14px; font-style: normal; }
.footer-addresses span { padding: 18px; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 12px; font-size: 12px; line-height: 1.6; }
.footer-addresses b { display: block; margin-bottom: 6px; color: var(--ink); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 920px) {
  .home-footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-feature,
  .legal-layout { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .landing-page .site-header:not(.scrolled) {
    color: var(--ink);
    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 30px rgba(23,54,79,.06);
  }
  .landing-page .site-header:not(.scrolled) .site-nav a:not(.nav-cta),
  .landing-page .site-header:not(.scrolled) .language-switch { color: var(--ink) !important; }
  .home-hero { min-height: 760px; text-align: left; }
  .home-hero-content { margin-left: 0; padding-top: 118px; padding-bottom: 136px; }
  .home-menu-tab { top: auto; bottom: 108px; min-height: 112px; }
  .home-hero .eyebrow { justify-content: flex-start; }
  .home-hero h1 { font-size: clamp(44px, 13vw, 66px); }
  .home-hero p:not(.eyebrow) { margin-left: 0; }
  .hero-actions.centered { justify-content: flex-start; }
  .hero-price-card { margin-top: 24px; padding: 18px; }
  .home-contact-strip { justify-content: flex-start; flex-wrap: wrap; gap: 10px 18px; left: 14px; right: 14px; bottom: 18px; font-size: 10px; }
  .page-hero { padding: 150px 0 74px; }
  .home-footer-grid { grid-template-columns: 1fr; }
  body.menu-open .site-nav,
  .site-nav.open { transform: translateX(0) !important; visibility: visible !important; transition: none !important; }
}

/* Refined corporate homepage */
.landing-page { background: #f5f8fa; }
.home-hero {
  min-height: 92svh;
  place-items: center start;
}
.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 44, 65, .88) 0%, rgba(13, 44, 65, .66) 42%, rgba(13, 44, 65, .16) 100%),
    linear-gradient(0deg, rgba(13, 44, 65, .62), transparent 45%);
}
.home-hero-content {
  max-width: 820px;
  padding-top: 134px;
  padding-bottom: 132px;
}
.home-hero h1 {
  max-width: 850px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 760;
}
.home-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.6;
}
.hero-actions { margin-top: 30px; }
.button {
  min-height: 50px;
  border-radius: 2px;
  letter-spacing: .02em;
}
.button-primary,
.button-accent {
  color: var(--white);
  background: var(--brand-blue);
}
.button-primary:hover,
.button-accent:hover {
  color: var(--white);
  background: var(--ink);
}
.featured-catalog .button-accent {
  color: var(--white);
  background: var(--brand-blue);
}
.featured-catalog .button-accent:hover {
  color: var(--white);
  background: var(--ink);
}
.landing-page .button-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.44);
}
.hero-price-card {
  max-width: 470px;
  margin-top: 30px;
  padding: 18px 20px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(5, 25, 38, .18);
}
.hero-price-card span {
  color: var(--brand-blue);
  font-size: 10px;
  letter-spacing: .13em;
}
.hero-price-card strong {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
}
.home-auto-indicator {
  margin-top: 22px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: .08em;
}
.home-dots button.active { background: var(--white); }
.home-hero-arrows {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.home-hero-arrows button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 2px;
  font-size: 18px;
  line-height: 1;
  transition: background .2s, border-color .2s;
}
.home-hero-arrows button:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.home-menu-tab {
  width: 48px;
  min-height: 132px;
  border-radius: 0 4px 4px 0;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(23, 54, 79, .22);
}
.home-menu-tab:hover { background: var(--brand-blue); }
.home-menu-drawer {
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border-color: var(--line);
  border-radius: 0;
}
.home-drawer-close {
  color: var(--ink);
  background: #f2f6f8;
  border-color: var(--line);
}
.home-slide-label { border-color: var(--line); }
.home-slide-label span,
.home-menu-drawer nav a span { color: var(--brand-blue); }
.home-slide-label strong,
.home-drawer-contact a { color: var(--ink); }
.home-menu-drawer nav a {
  color: var(--ink);
  border-color: var(--line);
}
.home-menu-drawer nav a:hover { color: var(--brand-blue); }
.home-drawer-contact { border-color: var(--line); }
.home-drawer-contact span { color: var(--brand-blue); }
.home-drawer-contact small { color: var(--muted); }

.news-ticker {
  background: #16384f;
  border: 0;
}
.ticker-track { animation-duration: 38s; }
.ticker-track:hover { animation-play-state: running; }
.ticker-track a {
  min-height: 44px;
  padding-inline: 30px;
  font-size: 11px;
  letter-spacing: .06em;
}
.ticker-track a::before {
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.home-products-section {
  padding: 88px 0 96px;
  background: var(--white);
}
.home-section-kicker {
  display: grid;
  grid-template-columns: minmax(160px, .34fr) minmax(0, 1fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 36px;
}
.home-section-kicker .eyebrow {
  margin: 0 0 8px;
  color: var(--brand-blue);
}
.home-section-kicker h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 760;
}
.home-section-kicker p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.product-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
}
.product-type-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 250px 1fr;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  border-right: 1px solid var(--line);
  transition: background .2s, transform .2s;
}
.product-type-card:last-child { border-right: 0; }
.product-type-card:hover {
  background: #f8fbfc;
  transform: translateY(-3px);
}
.product-type-card figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #d9e2e7;
}
.product-type-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 45, 66, .32), transparent 58%);
}
.product-type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
  transition: transform .5s ease, filter .5s ease;
}
.product-type-card:hover img {
  transform: scale(1.035);
  filter: saturate(.98) contrast(1.04);
}
.product-type-card div {
  min-height: 236px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
}
.product-type-card span {
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}
.product-type-card h3 {
  margin: 20px 0 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 760;
}
.product-type-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
.product-type-card em {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-type-card em::after {
  content: " →";
  margin-left: 8px;
}

.home-comparison-section {
  padding: 94px 0;
  background: #edf4f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.comparison-layout {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
  gap: 48px;
  align-items: start;
}
.home-comparison-copy .eyebrow {
  color: var(--brand-blue);
}
.home-comparison-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 760;
}
.home-comparison-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.home-comparison-copy .button { margin-top: 30px; }
.home-comparison-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 54px rgba(23, 54, 79, .08);
}
.home-comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.5;
}
.home-comparison-table th,
.home-comparison-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.home-comparison-table thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.home-comparison-table tbody th {
  width: 150px;
  color: var(--ink);
  background: #f7fafb;
  font-weight: 850;
}
.home-comparison-table td { color: var(--muted); }
.home-comparison-table .is-highlight {
  color: var(--ink);
  background: #eef7ef;
  border-left: 3px solid var(--accent);
  font-weight: 650;
}
.home-comparison-table .price-row th,
.home-comparison-table .price-row td {
  border-top: 3px solid rgba(111, 159, 62, .36);
}
.home-comparison-table .price-row .is-highlight strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-weight: 900;
}
.home-comparison-table tbody tr:last-child th,
.home-comparison-table tbody tr:last-child td { border-bottom: 0; }

.home-action-strip {
  padding: 0 0 96px;
  background: #edf4f7;
}
.action-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(23, 54, 79, .06);
}
.action-arrow {
  min-height: 130px;
  padding: 28px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background .2s, color .2s;
}
.action-arrow:last-child { border-right: 0; }
.action-arrow span {
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.action-arrow strong {
  max-width: 260px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.action-arrow em {
  font-style: normal;
  font-size: 28px;
  line-height: 1;
}
.action-arrow.primary {
  color: var(--white);
  background: var(--brand-blue);
}
.action-arrow.primary span { color: rgba(255,255,255,.72); }
.action-arrow:hover {
  color: var(--white);
  background: var(--ink);
}

@media (max-width: 1100px) {
  .product-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-type-card:nth-child(2) { border-right: 0; }
  .product-type-card:nth-child(3),
  .product-type-card:nth-child(4) { border-top: 1px solid var(--line); }
  .comparison-layout { grid-template-columns: 1fr; }
  .action-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .action-arrow:nth-child(2) { border-right: 0; }
  .action-arrow:nth-child(3),
  .action-arrow:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 780px) {
  .home-hero { min-height: 780px; }
  .home-hero-content {
    padding-top: 120px;
    padding-bottom: 150px;
  }
  .home-hero h1 { font-size: clamp(42px, 12vw, 62px); }
  .home-section-kicker {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .home-products-section,
  .home-comparison-section { padding: 68px 0; }
  .product-type-grid { grid-template-columns: 1fr; }
  .product-type-card,
  .product-type-card:nth-child(2) {
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .product-type-card:first-child { border-top: 0; }
  .product-type-card { grid-template-rows: 230px auto; }
  .product-type-card div { min-height: 0; }
  .home-comparison-table { min-width: 720px; }
  .home-action-strip { padding-bottom: 68px; }
  .action-strip-grid { grid-template-columns: 1fr; }
  .action-arrow {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .action-arrow:last-child { border-bottom: 0; }
}

/* Corporate navigation and homepage extensions */
.corporate-nav {
  gap: 22px;
}
.nav-group {
  position: relative;
}
.nav-parent {
  min-height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
}
.nav-parent::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-mega {
  position: absolute;
  top: calc(100% + 18px);
  left: -22px;
  width: 420px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  box-shadow: 0 22px 62px rgba(23,54,79,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.nav-group:hover .nav-mega,
.nav-group:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-mega a {
  min-height: 92px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  background: #f7fafb;
  border: 1px solid var(--line);
}
.nav-mega a::after { display: none; }
.nav-mega span {
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.home-process-section {
  padding: 0 0 96px;
  background: var(--white);
}
.process-flow {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23,54,79,.055);
}
.process-flow-head {
  padding: 34px 30px;
  color: var(--white);
  background: var(--ink);
}
.process-flow-head .eyebrow {
  margin-bottom: 24px;
  color: rgba(255,255,255,.72);
}
.process-flow-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.process-flow article {
  min-height: 270px;
  padding: 30px 24px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.process-flow article span {
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}
.process-flow article strong {
  margin-top: auto;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.process-flow article p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-documents-section {
  padding: 92px 0;
  background: #f7fafb;
  border-top: 1px solid var(--line);
}
.document-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.document-card {
  min-height: 240px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background .2s, transform .2s;
}
.document-card:last-child { border-right: 0; }
.document-card:hover {
  background: #eef6fa;
  transform: translateY(-3px);
}
.document-card span {
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.document-card strong {
  margin-top: auto;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.document-card small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.catalog-documents {
  margin-top: 28px;
}

.home-reference-strip {
  overflow: hidden;
  padding: 22px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reference-slider {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: tickerMove 44s linear infinite;
}
.reference-slider span {
  min-width: 190px;
  padding: 18px 24px;
  display: inline-flex;
  justify-content: center;
  color: var(--ink);
  background: #f3f7f9;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.home-quote-module {
  padding: 92px 0;
  background: #16384f;
  color: var(--white);
}
.quote-module-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .42fr);
  gap: 48px;
  align-items: center;
}
.quote-module-grid h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.quote-module-grid p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}
.quote-module-card {
  padding: 32px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.28);
}
.quote-module-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.quote-module-card ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.quote-module-card li {
  padding: 13px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
}
.quote-module-card li:last-child { border-bottom: 1px solid var(--line); }
.quote-module-card .button { width: 100%; }
.quote-mail {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .corporate-nav { gap: 14px; }
  .nav-mega { left: -80px; }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .process-flow-head { grid-column: 1 / -1; }
  .process-flow article:nth-child(2n) { border-left: 0; }
  .document-card-grid { grid-template-columns: repeat(2, 1fr); }
  .document-card:nth-child(2) { border-right: 0; }
  .document-card:nth-child(3),
  .document-card:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 780px) {
  .nav-parent {
    width: 100%;
    justify-content: space-between;
    text-align: left;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }
  .nav-mega {
    position: static;
    width: 100%;
    padding: 12px 0 18px;
    grid-template-columns: 1fr;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-mega a {
    min-height: 76px;
    padding: 14px;
    font-size: 14px !important;
  }
  .home-process-section,
  .home-documents-section,
  .home-quote-module { padding: 68px 0; }
  .process-flow,
  .document-card-grid,
  .quote-module-grid { grid-template-columns: 1fr; }
  .process-flow article {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .document-card {
    min-height: 190px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .document-card:first-child { border-top: 0; }
  .reference-slider { animation-duration: 58s; }
  .reference-slider span { min-width: 170px; }
}

/* Cleaner corporate revision */
.clean-nav {
  gap: 18px;
}
.clean-nav > a,
.clean-nav .nav-parent {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.clean-nav .nav-mega.simple-dropdown {
  width: 390px;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  border: 1px solid #d8e3e8;
  box-shadow: 0 20px 54px rgba(23,54,79,.12);
}
.clean-nav .nav-mega.simple-dropdown a {
  min-height: 108px;
  padding: 18px 20px;
  justify-content: center;
  gap: 6px;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
}
.clean-nav .nav-mega.simple-dropdown a:last-child {
  border-bottom: 0;
}
.clean-nav .nav-mega.simple-dropdown a:hover {
  background: #f4f8fa;
}
.clean-nav .nav-mega.simple-dropdown strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -.015em;
}
.clean-nav .nav-mega.simple-dropdown small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
  letter-spacing: 0;
}

.home-hero-content {
  max-width: 760px;
}
.home-hero h1 {
  max-width: 780px;
}
.home-hero .hero-actions {
  margin-top: 34px;
}
.home-auto-indicator {
  margin-top: 28px;
  opacity: .78;
}

.corporate-dropdown-menu {
  width: 430px !important;
}

.product-type-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-type-card {
  grid-template-rows: 300px 1fr;
}
.product-type-card div {
  min-height: 320px;
}
.product-type-card h3 {
  font-size: clamp(24px, 2.45vw, 34px);
}
.product-type-card p {
  font-size: 14px;
  line-height: 1.7;
}

.product-detail-stack {
  margin-top: 42px;
  display: grid;
  gap: 22px;
}
.product-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 520px;
  background: #f7fafb;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(23,54,79,.055);
  overflow: hidden;
}
.product-detail-panel.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}
.product-detail-panel.reverse figure {
  order: 2;
}
.product-detail-panel figure {
  margin: 0;
  min-height: 100%;
  background: #dbe5ea;
}
.product-detail-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.86) contrast(1.03);
}
.product-detail-copy {
  align-self: center;
  padding: clamp(34px, 5vw, 64px);
}
.product-code {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-detail-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.7vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.product-detail-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.product-detail-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.product-detail-copy li {
  position: relative;
  padding: 14px 0 14px 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}
.product-detail-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.inline-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.inline-arrow::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.home-system-section {
  padding-top: 96px;
  background: #eef5f8;
}
.home-system-section .system-showcase {
  box-shadow: 0 24px 70px rgba(23,54,79,.12);
}
.home-spans-section {
  border-top: 1px solid rgba(255,255,255,.1);
}

.process-flow {
  grid-template-columns: 1fr repeat(4, minmax(0, .82fr));
}
.process-flow article {
  padding: 0 0 26px;
  overflow: hidden;
  background: var(--white);
}
.process-flow article figure {
  width: 100%;
  height: 130px;
  margin: 0 0 24px;
  overflow: hidden;
  background: #dbe5ea;
}
.process-flow article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.03);
}
.process-flow article span,
.process-flow article strong,
.process-flow article p {
  margin-left: 22px;
  margin-right: 22px;
}
.process-flow article strong {
  margin-top: auto;
}

.document-card-grid {
  grid-template-columns: repeat(3, 1fr);
}
.product-sheet-card {
  min-height: 280px;
}
.product-sheet-card small {
  font-size: 13px;
  line-height: 1.65;
}

.home-builder-section {
  background: #16384f;
  color: var(--white);
}
.home-builder-section .builder-layout {
  align-items: stretch;
}
.home-builder-section .builder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-builder-section .project-builder {
  background: var(--white);
  box-shadow: 0 24px 70px rgba(5, 25, 38, .18);
}

@media (max-width: 1180px) {
  .clean-nav {
    gap: 10px;
  }
  .clean-nav > a,
  .clean-nav .nav-parent {
    font-size: 10px;
  }
  .product-type-grid,
  .document-card-grid {
    grid-template-columns: 1fr;
  }
  .product-type-card,
  .product-type-card:nth-child(2),
  .product-type-card:nth-child(3) {
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .product-type-card:first-child {
    border-top: 0;
  }
  .product-type-card div {
    min-height: 0;
  }
  .product-detail-panel,
  .product-detail-panel.reverse {
    grid-template-columns: 1fr;
  }
  .product-detail-panel.reverse figure {
    order: 0;
  }
  .product-detail-panel img {
    min-height: 360px;
  }
  .process-flow {
    grid-template-columns: 1fr 1fr;
  }
  .process-flow-head {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .clean-nav .nav-mega.simple-dropdown {
    width: 100%;
    box-shadow: none;
    border: 0;
  }
  .clean-nav .nav-mega.simple-dropdown a {
    min-height: 94px;
    padding: 14px;
    border: 1px solid var(--line);
    border-bottom: 0;
  }
  .clean-nav .nav-mega.simple-dropdown a:last-child {
    border-bottom: 1px solid var(--line);
  }
  .product-type-card {
    grid-template-rows: 240px auto;
  }
  .product-detail-copy {
    padding: 30px 24px 36px;
  }
  .product-detail-panel img {
    min-height: 260px;
  }
  .process-flow {
    grid-template-columns: 1fr;
  }
  .process-flow article {
    border-left: 0;
  }
}

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

@media (max-width: 1180px) {
  .catalog-documents {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .catalog-documents {
    grid-template-columns: 1fr;
  }
}

/* Corporate content depth */
.corporate-proof-band {
  padding: 42px 0;
  background: var(--ink);
  color: var(--white);
}
.corporate-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.14);
}
.corporate-proof-grid article {
  min-height: 176px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.corporate-proof-grid article:last-child { border-right: 0; }
.corporate-proof-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.corporate-proof-grid strong {
  display: block;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.corporate-proof-grid p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.6;
}
.corporate-story-section {
  background: var(--white);
}
.corporate-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}
.corporate-story-grid.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}
.corporate-story-grid.reverse figure {
  order: 2;
}
.corporate-story-grid figure {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  background: #dce6eb;
}
.corporate-story-grid img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
}
.corporate-story-copy h2,
.corporate-section-head h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.corporate-story-copy p,
.corporate-section-head p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.corporate-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.corporate-list li {
  position: relative;
  padding: 15px 0 15px 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}
.corporate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 9px;
  height: 9px;
  background: var(--accent);
}
.corporate-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.corporate-link-card {
  min-height: 230px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background .2s, transform .2s;
}
.corporate-link-card:last-child { border-right: 0; }
.corporate-link-card:hover {
  background: #eef6fa;
  transform: translateY(-3px);
}
.corporate-link-card span {
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.corporate-link-card strong {
  margin-top: auto;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.corporate-link-card small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.corporate-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.corporate-timeline article {
  min-height: 260px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}
.corporate-timeline article:last-child { border-right: 0; }
.corporate-timeline span {
  display: block;
  margin-bottom: 48px;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.corporate-timeline h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.corporate-timeline p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.corporate-cta {
  padding: 70px 0;
  color: var(--white);
  background: #16384f;
}
.corporate-cta .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.corporate-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.corporate-cta p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.project-builder .full-field {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.project-builder textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 14px;
  color: var(--ink);
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}
.project-builder textarea::placeholder {
  color: #8b9ca8;
}
.project-builder textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .corporate-proof-grid,
  .corporate-link-grid,
  .corporate-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .corporate-proof-grid article:nth-child(2),
  .corporate-link-card:nth-child(2),
  .corporate-timeline article:nth-child(2) {
    border-right: 0;
  }
  .corporate-proof-grid article:nth-child(n+3),
  .corporate-link-card:nth-child(n+3),
  .corporate-timeline article:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
  .corporate-proof-grid article:nth-child(n+3) {
    border-top-color: rgba(255,255,255,.14);
  }
  .corporate-story-grid,
  .corporate-story-grid.reverse {
    grid-template-columns: 1fr;
  }
  .corporate-story-grid.reverse figure {
    order: 0;
  }
  .corporate-cta .shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .corporate-proof-grid,
  .corporate-link-grid,
  .corporate-timeline {
    grid-template-columns: 1fr;
  }
  .corporate-proof-grid article,
  .corporate-link-card,
  .corporate-timeline article {
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .corporate-proof-grid article {
    border-top-color: rgba(255,255,255,.14);
  }
  .corporate-proof-grid article:first-child,
  .corporate-link-card:first-child,
  .corporate-timeline article:first-child {
    border-top: 0;
  }
  .corporate-story-grid figure,
  .corporate-story-grid img {
    min-height: 320px;
  }
}

/* Final publishing polish */
.clean-nav .nav-mega.simple-dropdown {
  width: 360px;
  border-radius: 12px;
  overflow: hidden;
}
.corporate-dropdown-menu {
  width: 390px !important;
}
.clean-nav .nav-mega.simple-dropdown a {
  min-height: 86px;
  padding: 14px 18px;
}
.clean-nav .nav-mega.simple-dropdown strong {
  font-size: 15px;
}
.clean-nav .nav-mega.simple-dropdown small {
  font-size: 11px;
}
.process-flow article img[src$=".svg"] {
  padding: 0;
  background: #dce9ef;
}
.builder-result .result-actions a {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.catalog-documents {
  grid-template-columns: repeat(3, 1fr);
}
.document-detail-section {
  background: var(--white);
}
.document-hero-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  background: #f7fafb;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(23,54,79,.055);
}
.document-hero-card figure {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  background: #dce9ef;
}
.document-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.document-hero-card h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.document-hero-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.process-check-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.process-check-grid article {
  min-height: 220px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.process-check-grid article:nth-child(3n) {
  border-right: 0;
}
.process-check-grid article:nth-child(n+4) {
  border-top: 1px solid var(--line);
}
.process-check-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}
.process-check-grid h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.process-check-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.document-cta-line {
  margin-top: 32px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--ink));
}
.document-cta-line p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .catalog-documents,
  .process-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-check-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .process-check-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 780px) {
  .site-nav {
    inset: 74px 14px 14px !important;
    width: auto;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100dvh - 92px);
    padding: 18px 20px !important;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(23,54,79,.18);
  }
  .site-nav a,
  .clean-nav > a,
  .clean-nav .nav-parent {
    min-height: 44px;
    padding: 12px 0;
    font-size: 14px !important;
    line-height: 1.2;
  }
  .nav-parent {
    display: flex;
    align-items: center;
  }
  .clean-nav .nav-mega.simple-dropdown a {
    min-height: 70px;
    padding: 11px 13px;
  }
  .clean-nav .nav-mega.simple-dropdown strong {
    font-size: 14px;
  }
  .clean-nav .nav-mega.simple-dropdown small {
    font-size: 10px;
    line-height: 1.35;
  }
  .site-nav .nav-cta {
    margin-top: 12px;
    padding: 13px 14px;
    text-align: center;
  }
  .document-hero-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .document-hero-card figure,
  .document-hero-card img {
    min-height: 280px;
  }
  .catalog-documents,
  .process-check-grid {
    grid-template-columns: 1fr;
  }
  .process-check-grid article,
  .process-check-grid article:nth-child(2n),
  .process-check-grid article:nth-child(3n) {
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .process-check-grid article:first-child {
    border-top: 0;
  }
}

/* Mandatory mobile navigation and responsive publishing rules */
@media (max-width: 780px) {
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    z-index: 99;
    inset: 0;
    background: rgba(8, 28, 44, .38);
    backdrop-filter: blur(2px);
  }
  .site-header,
  .site-header.scrolled,
  .landing-page .site-header:not(.scrolled) {
    color: var(--ink) !important;
    background: rgba(255,255,255,.98) !important;
    border-color: var(--line) !important;
    box-shadow: 0 10px 28px rgba(23,54,79,.12) !important;
    backdrop-filter: blur(16px);
  }
  .header-utility {
    display: none !important;
  }
  .header-inner,
  .site-header.scrolled .header-inner {
    height: 72px !important;
    gap: 12px;
  }
  .brand-logo {
    width: clamp(154px, 44vw, 188px) !important;
  }
  .menu-toggle {
    position: relative;
    z-index: 104;
    display: grid !important;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--ink) !important;
    background: #f3f8fb;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    margin: 0;
    background: var(--brand-blue);
  }
  .menu-toggle span:not(.sr-only) + span:not(.sr-only) {
    margin-top: 5px;
  }
  .menu-toggle[aria-expanded="true"] {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
  }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only) {
    background: var(--white);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .site-nav {
    position: fixed !important;
    z-index: 103 !important;
    inset: 84px 14px auto 14px !important;
    width: auto !important;
    max-height: calc(100dvh - 104px) !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink) !important;
    background: rgba(255,255,255,.98) !important;
    border: 1px solid var(--line) !important;
    border-radius: 18px !important;
    box-shadow: 0 26px 76px rgba(5,25,38,.24) !important;
    transform: translateY(-14px) scale(.98) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease !important;
  }
  .site-nav.open {
    transform: translateY(0) scale(1) !important;
    opacity: 1;
    visibility: visible !important;
    pointer-events: auto;
  }
  .site-nav a,
  .clean-nav > a,
  .clean-nav .nav-parent,
  .landing-page .site-header:not(.scrolled) .site-nav a:not(.nav-cta),
  .landing-page .site-header:not(.scrolled) .language-switch {
    width: 100%;
    min-height: 46px;
    padding: 13px 14px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink) !important;
    background: #f8fbfc;
    border: 1px solid var(--line) !important;
    border-radius: 12px;
    font-size: 13px !important;
    font-weight: 850;
    letter-spacing: .02em !important;
    line-height: 1.25;
    text-decoration: none;
  }
  .site-nav > a:not(.nav-cta)::after,
  .nav-mega a::after {
    display: none !important;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .clean-nav .nav-parent:hover,
  .clean-nav .nav-parent:focus-visible {
    color: var(--brand-blue) !important;
    background: #eef6fa;
  }
  .nav-parent {
    cursor: pointer;
  }
  .nav-parent::after {
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-color: var(--brand-blue);
    transition: transform .2s ease;
  }
  .nav-group.open .nav-parent::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }
  .clean-nav .nav-mega.simple-dropdown,
  .nav-mega {
    position: static !important;
    width: 100% !important;
    max-width: none;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin: 6px 0 4px;
    padding: 0 !important;
    color: var(--ink) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .nav-group.open .nav-mega {
    display: grid !important;
  }
  .clean-nav .nav-mega.simple-dropdown a,
  .nav-mega a {
    min-height: 68px !important;
    padding: 12px 14px 12px 18px !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 4px !important;
    background: var(--white) !important;
    border: 1px solid #e2edf2 !important;
    border-left: 4px solid var(--brand-blue) !important;
    border-radius: 12px !important;
  }
  .clean-nav .nav-mega.simple-dropdown span,
  .nav-mega span {
    color: var(--brand-blue) !important;
    font-size: 9px !important;
    font-weight: 900;
    letter-spacing: .13em;
  }
  .clean-nav .nav-mega.simple-dropdown strong,
  .nav-mega strong {
    color: var(--ink) !important;
    font-size: 13px !important;
    line-height: 1.2;
  }
  .clean-nav .nav-mega.simple-dropdown small,
  .nav-mega small {
    color: var(--muted) !important;
    font-size: 10px !important;
    line-height: 1.38;
  }
  .language-switch {
    justify-content: center !important;
    min-height: 42px !important;
    color: var(--brand-blue) !important;
    background: #eef6fa !important;
  }
  .site-nav .nav-cta,
  .nav-cta {
    justify-content: center !important;
    margin-top: 4px !important;
    color: var(--white) !important;
    background: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    box-shadow: 0 12px 24px rgba(47,111,163,.18);
  }
  .home-hero {
    min-height: auto !important;
    padding-top: 72px;
  }
  .home-hero-content {
    padding-top: 72px !important;
    padding-bottom: 94px !important;
  }
  .home-hero h1 {
    font-size: clamp(38px, 11vw, 56px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.04em !important;
  }
  .home-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px !important;
    line-height: 1.58 !important;
  }
  .hero-actions,
  .hero-actions.centered {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .home-auto-indicator {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-size: 10px;
  }
  .home-hero-arrows,
  .home-dots {
    width: 100%;
    justify-content: flex-start;
  }
  .product-type-grid,
  .product-detail-stack,
  .document-card-grid,
  .catalog-documents {
    width: calc(100% - 28px);
  }
  .product-type-card {
    grid-template-rows: 220px auto !important;
  }
  .product-type-card div,
  .product-detail-copy {
    padding: 24px 20px !important;
  }
  .product-detail-copy h3 {
    font-size: clamp(28px, 8vw, 40px) !important;
  }
  .home-comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .home-comparison-table {
    min-width: 720px;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100% - 24px);
  }
  .brand-logo {
    width: 148px !important;
  }
  .site-nav {
    inset: 80px 10px auto 10px !important;
    max-height: calc(100dvh - 92px) !important;
    padding: 10px !important;
  }
  .site-nav a,
  .clean-nav > a,
  .clean-nav .nav-parent {
    font-size: 12px !important;
  }
  .clean-nav .nav-mega.simple-dropdown a,
  .nav-mega a {
    min-height: 64px !important;
  }
}

/* Focused contact and language additions */
.header-social {
  opacity: .86;
}

.language-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-toggle {
  height: 34px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-blue);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(47,111,163,.28);
  border-radius: 7px;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-menu.open .language-toggle {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.flag {
  width: 22px;
  height: 15px;
  flex: 0 0 22px;
  display: inline-block;
  object-fit: cover;
  border: 1px solid rgba(23,54,79,.18);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(5,25,38,.12);
  vertical-align: -2px;
}

.language-caret {
  font-size: 10px;
  line-height: 1;
  transition: transform .2s ease;
}

.language-menu.open .language-caret {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  z-index: 130;
  top: calc(100% + 10px);
  right: 0;
  width: 178px;
  padding: 8px;
  display: grid;
  gap: 4px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(5,25,38,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.language-menu.open .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  min-height: 38px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink) !important;
  background: transparent;
  border-radius: 9px;
  font-size: 12px !important;
  font-weight: 850;
  letter-spacing: .01em !important;
  text-decoration: none;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-current {
  color: var(--brand-blue) !important;
  background: #eef6fa;
}

.language-option.is-disabled {
  color: var(--muted) !important;
  cursor: default;
  opacity: .62;
}

.landing-page .site-header:not(.scrolled) .language-toggle {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.36);
}

.landing-page .site-header:not(.scrolled) .language-toggle:hover,
.landing-page .site-header:not(.scrolled) .language-toggle:focus-visible,
.landing-page .site-header:not(.scrolled) .language-menu.open .language-toggle {
  color: var(--brand-blue);
  background: var(--white);
  border-color: var(--white);
}

.footer-contact-stack {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-phone {
  width: fit-content;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  text-decoration: none;
}

.footer-phone:hover {
  color: var(--brand-blue);
  border-color: rgba(47,111,163,.34);
}

.footer-phone > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
}

.footer-phone small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .14em;
}

.footer-social,
.footer-social-inline,
.contact-social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.social-link,
.contact-pill {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  background: #eef6fa;
  border: 1px solid rgba(47,111,163,.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
}

.social-link {
  min-width: 42px;
  padding: 0 12px;
}

.social-link:hover,
.contact-pill:hover {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.contact-social-row {
  margin: 18px 0 0;
}

.footer-social-inline {
  justify-content: flex-end;
}

.footer-social-inline a + a {
  margin-left: 10px;
}

@media (max-width: 780px) {
  .site-nav .language-menu,
  .site-nav .language-toggle {
    width: 100%;
  }

  .site-nav .language-toggle {
    min-height: 46px;
    justify-content: space-between;
    padding: 13px 14px !important;
    color: var(--ink) !important;
    background: #f8fbfc !important;
    border: 1px solid var(--line) !important;
    border-radius: 12px;
    font-size: 13px !important;
  }

  .site-nav .language-options {
    position: static;
    width: 100%;
    margin: 6px 0 4px;
    padding: 0;
    display: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-nav .language-menu.open .language-options {
    display: grid;
  }

  .site-nav .language-option {
    min-height: 44px;
    padding: 11px 14px !important;
    background: var(--white);
    border: 1px solid #e2edf2;
    border-radius: 12px;
  }

  .footer-contact-stack,
  .footer-phone,
  .footer-social-inline {
    width: 100%;
  }

  .footer-social-inline {
    justify-content: flex-start;
  }
}

/* Blog typography refinement and no horizontal page overflow */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.blog-page .page-hero-inner {
  max-width: 980px;
}

.blog-page .page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 720;
}

.blog-page .page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.72;
}

.blog-feature {
  grid-template-columns: minmax(0, 1fr) auto;
}

.blog-feature h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 720;
}

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

.blog-rail {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0;
}

.blog-card {
  min-width: 0;
  min-height: 0;
  padding: 24px;
  border-radius: 14px;
}

.blog-rail .blog-card {
  min-height: 230px;
}

.blog-card span {
  font-size: 10px;
  letter-spacing: .11em;
}

.blog-card h2 {
  margin-top: auto;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.18;
  letter-spacing: -.025em;
  font-weight: 720;
  overflow-wrap: break-word;
}

.blog-card p {
  font-size: 13px;
  line-height: 1.62;
}

.comparison-copy h2,
.faq-block > h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 720;
}

.faq-accordion {
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-item {
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  min-height: 64px;
  padding: 20px 58px 20px 22px;
  display: flex;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  border: 1px solid rgba(47,111,163,.28);
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.faq-item[open] summary {
  background: var(--white);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .blog-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .blog-page .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .blog-feature,
  .blog-card-grid,
  .blog-rail {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 22px 20px;
  }

  .blog-card h2 {
    font-size: 22px;
  }
}

/* Final conversion fixes: visible CTA, direct partnership nav and homepage FAQ */
.site-nav > a.nav-partnership {
  color: inherit;
  white-space: nowrap;
}

.nav-cta,
.site-nav .nav-cta,
a.nav-cta,
.button-accent,
a.button-accent,
button.button-accent {
  color: #fff !important;
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  font-weight: 850;
  text-shadow: none !important;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-accent:hover,
.button-accent:focus-visible {
  color: #fff !important;
  background: var(--ink) !important;
  border-color: var(--ink) !important;
}

.home-faq-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.home-faq-accordion {
  max-width: 980px;
  margin-inline: auto;
}

.home-faq-section .faq-item {
  background: #f8fbfc;
  box-shadow: 0 10px 28px rgba(23,54,79,.045);
}

.home-faq-section .faq-item summary {
  font-size: 17px;
}

.action-strip-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (max-width: 1180px) {
  .site-nav > a.nav-partnership {
    font-size: 10px;
  }
}

/* Final visibility fixes for language dropdown and bottom quote section */
.language-options {
  color: var(--ink) !important;
  background: #fff !important;
  border-color: var(--line) !important;
}

.language-option,
.language-option span {
  color: var(--ink) !important;
}

.language-option.is-disabled,
.language-option.is-disabled span {
  color: #6c7d8a !important;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-current {
  color: var(--brand-blue) !important;
  background: #eef6fa !important;
}

.home-builder-section .builder-copy,
.home-builder-section .builder-copy h2,
.home-builder-section .builder-copy p,
.home-builder-section .builder-copy .eyebrow {
  color: #fff !important;
}

.home-builder-section .builder-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.82) !important;
}

.project-builder .phone-field {
  grid-column: span 1;
  padding: 14px;
  background: #eef6fa;
  border: 1px solid rgba(47,111,163,.18);
  border-radius: 10px;
}

.project-builder .phone-field small {
  color: var(--brand-blue);
  font-size: 11px;
  letter-spacing: normal;
  text-transform: none;
}
