@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600&family=Sora:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #f4f4f4;
  --bg-alt: #ebebeb;
  --panel: #ffffff;
  --panel-soft: #fafafa;
  --ink: #1a1a1a;
  --muted: #5f6368;
  --line: #d8d8d8;
  --primary: #1a1a1a;
  --primary-strong: #0f0f0f;
  --accent: #e20015;
  --accent-soft: rgba(226, 0, 21, 0.14);
  --accent-hairline: rgba(226, 0, 21, 0.5);
  --success: #127d5c;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  
  --layout-gutter: clamp(0.9rem, 2vw, 1.75rem);
  --content-max: 1200px;
}

* {
  box-sizing: border-box;
}

body.site2026 {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 52%, var(--bg-alt) 100%);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.region-switcher {
  background: #10151b;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.region-switcher-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding-block: 0.4rem;
}

.region-switcher-copy {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.region-switcher-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  background: rgba(243, 139, 33, 0.18);
  color: #ffbb73;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-switcher-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.region-switcher-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.region-switcher-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.48rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.region-switcher-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.region-switcher-link.is-current {
  background: #f38b21;
  border-color: #f38b21;
  color: #17120c;
  box-shadow: 0 10px 20px rgba(243, 139, 33, 0.22);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(calc(100% - (var(--layout-gutter, 1rem) * 2)), var(--content-max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(226, 0, 21, 0), var(--accent-hairline), rgba(226, 0, 21, 0));
  pointer-events: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: clamp(188px, 15vw, 248px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.top-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.top-nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.top-nav-group {
  position: relative;
}

.top-nav-link {
  padding: 0.48rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e1e1e;
  letter-spacing: 0.005em;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.top-nav-trigger {
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.top-nav-link:hover {
  background: #f4f4f4;
  color: #121212;
  box-shadow: inset 0 -2px 0 var(--accent-soft);
}

.top-nav-link.top-nav-link-hub-cta {
  background: #f38b21;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(243, 139, 33, 0.22);
}

.top-nav-link.top-nav-link-hub-cta:hover {
  background: #db7410;
  color: #ffffff;
}

.top-nav-link.is-active,
.top-nav-group.is-active > .top-nav-link,
.top-nav-group.is-open > .top-nav-link {
  background: #fdeced;
  color: var(--accent);
  font-weight: 600;
}

.top-nav-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 280px;
  display: none;
  grid-auto-flow: row;
  gap: 0.18rem;
  padding: 0.7rem;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 0.85rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  z-index: 34;
}

.top-nav-group.is-open > .top-nav-panel {
  display: grid;
}

.top-nav-sublink {
  display: block;
  padding: 0.7rem 0.78rem;
  border-radius: 0.65rem;
  color: #37424d;
  font-size: 0.94rem;
  line-height: 1.25;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.top-nav-sublink:hover,
.top-nav-sublink.is-active {
  background: #f3f3f3;
  color: #111111;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1rem;
  border-radius: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.15;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(226, 0, 21, 0.24);
}

.button.primary:hover {
  background: #b30010;
}

.button.secondary,
.button.alt-dark {
  background: #1a1a1a;
  color: #ffffff;
}

.button.secondary:hover,
.button.alt-dark:hover {
  background: #000000;
}

.button.ghost {
  border-color: #b9b9b9;
  color: #1a1a1a;
  background: #ffffff;
}

.button.ghost:hover {
  border-color: #1a1a1a;
  background: #f7f7f7;
}

.cta-nav {
  white-space: nowrap;
  padding-inline: 1.05rem;
}

.site-header .cta-nav {
  display: none;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid #1a1a1a;
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 600;
  border-radius: 0.58rem;
  padding: 0.46rem 0.86rem;
  line-height: 1;
}

.lang-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-left: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-switch-host {
  margin-left: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-switch-host .lang-switch {
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switch-btn {
  border: 1px solid #b9b9b9;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 0.45rem;
  min-width: 2.3rem;
  padding: 0.32rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.lang-switch-btn:hover {
  border-color: #1a1a1a;
}

.lang-switch-btn.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.site-header .lang-switch {
  margin-left: 1rem;
  gap: 0.25rem;
}

.site-header .lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  border-radius: 0.25rem;
  min-width: 2rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header .lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header .lang-btn[aria-pressed="true"] {
  background: #ffffff;
  color: #1a1a1a;
}

.unit-toggle-btn {
  border: 1px solid #b9b9b9;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 0.55rem;
  padding: 0.38rem 0.66rem;
  font-size: 0.76rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.unit-toggle-btn:hover {
  border-color: #1a1a1a;
}

.unit-toggle-btn[aria-pressed="true"] {
  border-color: var(--accent);
  color: var(--accent);
}

main {
  padding: 2.2rem 0 5rem;
}

.hero {
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 1.15rem;
  padding: clamp(1.35rem, 2.4vw, 2.25rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 0, 21, 0), var(--accent-hairline), rgba(226, 0, 21, 0));
  pointer-events: none;
}

.hero h1 {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(1.75rem, 2.1vw + 1rem, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.14;
}

.hero p {
  color: var(--muted);
  max-width: 74ch;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.85rem 0 1.3rem;
}

.hero-video {
  margin: 0.2rem 0 1.2rem;
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f0f0f;
}

.hero-video-fallback,
.hero-video-media {
  display: block;
  width: 100%;
  height: clamp(260px, 58vw, 620px);
  object-fit: cover;
  object-position: center 38%;
}

.hero-video-fallback {
  background: #0f0f0f;
}

.hero-video-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero-video.is-ready .hero-video-media {
  opacity: 1;
}

.hero-video.has-fallback .hero-video-media {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero--split .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.hero--split .hero-copy {
  min-width: 0;
}

.hero-media {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  margin-top: 2.1rem;
}

.section h2 {
  margin: 0 0 0.55rem;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(1.3rem, 1.65vw + 0.8rem, 1.85rem);
  color: #141414;
  line-height: 1.2;
  position: relative;
  padding-left: 0.72rem;
}

.section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.14em;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(226, 0, 21, 0.25));
}

.section-intro {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 860px;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.calc-dashboard {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  grid-auto-flow: row dense;
}

.calc-dashboard > .card-quick {
  grid-column: span 4;
  order: 1;
}

.calc-dashboard > .card-featured {
  grid-column: span 6;
  order: 2;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1.2rem;
  box-shadow: 0 5px 18px rgba(16, 33, 53, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #e2c2c5;
  box-shadow: 0 8px 22px rgba(15, 24, 34, 0.11);
}

.card-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  margin-bottom: 0.9rem;
  background: #f2f2f2;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.04rem;
  line-height: 1.3;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.card .actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.card-quick,
.card-featured {
  height: 100%;
}

.card-quick {
  display: flex;
  flex-direction: column;
}

.card-featured {
  padding: 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.card-eletrimax {
  display: grid;
  gap: 0.58rem;
}

.card-eletrimax .calc-field {
  display: grid;
  gap: 0.24rem;
}

.calc-disclaimer {
  margin-top: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel-soft);
  overflow: hidden;
}

.calc-disclaimer summary {
  list-style: none;
  cursor: pointer;
  padding: 0.72rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2a3a;
}

.calc-disclaimer summary::-webkit-details-marker {
  display: none;
}

.calc-disclaimer summary::after {
  content: "+";
  float: right;
  font-size: 1rem;
  line-height: 1;
}

.calc-disclaimer[open] summary::after {
  content: "-";
}

.calc-disclaimer-body {
  padding: 0 0.9rem 0.9rem;
}

.calc-disclaimer-body p {
  margin: 0 0 0.72rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.calc-disclaimer-body p:last-child {
  margin-bottom: 0;
}

.card-eletrimax label {
  display: block;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2a3a;
  line-height: 1.28;
}

.card-eletrimax select,
.card-eletrimax input {
  width: 100%;
  min-height: 2.28rem;
  border-radius: 0.55rem;
  border: 1px solid #cdcdcd;
  background: #ffffff;
  color: #1a1a1a;
  padding: 0.5rem 0.62rem;
}

.card-eletrimax p {
  margin: 0;
}

.card-eletrimax .calc-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2a3a4a;
}

.card-eletrimax .calc-choice input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  min-height: 1.05rem;
  margin: 0.12rem 0 0;
  padding: 0;
  border: 2px solid #1f2f5c;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  flex: 0 0 auto;
}

.card-eletrimax .calc-choice input[type="radio"]:checked {
  background: radial-gradient(circle at center, #1f2f5c 0 45%, #ffffff 48% 100%);
}

.card-eletrimax .calc-choice input[type="radio"]:focus-visible {
  outline: 2px solid #7aa2ff;
  outline-offset: 2px;
}

.mcr-good {
  color: #1f7a1f;
  font-weight: 700;
}

.mcr-neutral {
  color: inherit;
}

.platform-portfolio .actions {
  margin-top: 1.2rem;
}

#core-families .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#core-families .card .button {
  margin-top: auto;
  align-self: flex-start;
}

#solution-clusters .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#solution-clusters .card .actions {
  margin-top: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  color: #414141;
  background: #f8f8f8;
}

.proof-bar {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.proof-item {
  background: #f8f8f8;
  border: 1px solid #dfdfdf;
  border-radius: 0.72rem;
  padding: 0.8rem;
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
}

.kpi {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
}

.list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.list li + li {
  margin-top: 0.4rem;
}

.two-col {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.68rem 0.75rem;
  border-bottom: 1px solid #e4eaf0;
  font-size: 0.92rem;
}

.spec-table th {
  color: var(--primary);
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-weight: 600;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.download-list {
  display: grid;
  gap: 0.65rem;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: var(--panel-soft);
  border: 1px solid #dcdcdc;
  border-radius: 0.65rem;
  padding: 0.72rem;
}

.download-item span {
  color: #333333;
  font-size: 0.92rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.filter-chip {
  border: 1px solid #cdcdcd;
  border-radius: 999px;
  padding: 0.35rem 0.68rem;
  background: #f8f8f8;
  color: #474747;
  font-size: 0.82rem;
}

.cta-band {
  margin-top: 2rem;
  background: linear-gradient(120deg, #1a1a1a, #2d2d2d);
  color: #f7f7f7;
  border-radius: 0.95rem;
  border: 1px solid #2a2a2a;
  border-left: 6px solid var(--accent);
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 0, 21, 0), var(--accent-hairline), rgba(226, 0, 21, 0));
  pointer-events: none;
}

.cta-band p {
  color: #dddddd;
  margin: 0.35rem 0 1rem;
}

.cta-band-light {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow);
}

.cta-band-light p {
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 0.75rem;
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: #2c2c2c;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  border-radius: 0.55rem;
  border: 1px solid #cdcdcd;
  background: #ffffff;
  color: #1a1a1a;
  padding: 0.62rem 0.68rem;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8a8a8a;
}

.form-status {
  margin: 0;
  color: #137f5e;
  font-size: 0.86rem;
}

footer.site-footer {
  margin-top: 2.2rem;
  border-top: 1px solid #d8d8d8;
  padding: 1.75rem 0 2.2rem;
  background: #f7f7f7;
  position: relative;
}

footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 0, 21, 0), var(--accent-hairline), rgba(226, 0, 21, 0));
  pointer-events: none;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-grid[data-footer-mode="simple"] {
  grid-template-columns: minmax(0, 1fr);
}

.footer-grid[data-footer-mode="simple"] .footer-brand-column {
  max-width: 34rem;
}

.footer-grid h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: #1c1c1c;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  font-size: 0.84rem;
  color: #5b5b5b;
}

.footer-brand-column p {
  margin: 0 0 0.9rem;
  max-width: 28ch;
}

.footer-link-list,
.footer-cta-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42rem;
}

.footer-cta-links {
  margin-top: 0.1rem;
}

.footer-cta-links a {
  color: #1f1f1f;
  font-weight: 600;
}

.footer-grid a:hover {
  color: var(--accent);
}

.small-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #6f6f6f;
}

.legal-inline {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #dcdcdc;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.95rem;
  font-size: 0.75rem;
  color: #6a6a6a;
}

.legal-inline a {
  color: #6a6a6a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.image-showcase {
  width: min(calc(100% - (var(--layout-gutter, 1rem) * 2)), var(--content-max));
  margin: 2.2rem auto 0;
}

.image-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
}

.image-grid .image-card:not(:first-child) {
  display: none;
}

.image-card {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card figcaption {
  padding: 0.7rem 0.85rem;
  color: #5f6368;
  font-size: 0.82rem;
}

.showcase-home {
  margin-top: 1.3rem;
}

.showcase-stage {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  background: #f0f0f0;
}

.showcase-stage img {
  width: 100%;
  min-height: 320px;
  max-height: 620px;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  top: clamp(1rem, 4vw, 3.5rem);
  width: min(450px, calc(100% - 2rem));
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d8d8d8;
  border-left: 6px solid var(--accent);
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.showcase-overlay h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1vw + 0.8rem, 1.5rem);
  line-height: 1.2;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
}

.showcase-overlay p {
  margin: 0.5rem 0 0.9rem;
  color: #4f5459;
}

.product-showcase {
  margin-top: 1.5rem;
  padding: 1.15rem;
  background: #efefef;
  border: 1px solid #d8d8d8;
  border-radius: 1rem;
}

.product-showcase-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 0.75rem;
}

.product-main-image {
  margin: 0;
  border-radius: 0.8rem;
  border: 1px solid #d6d6d6;
  overflow: hidden;
  background: #ffffff;
}

.product-main-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.product-thumbs {
  display: none;
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.45rem;
  border: 1px solid #d2d2d2;
  background: #f7f7f7;
}

.product-showcase--ftn .product-main-image img {
  aspect-ratio: auto;
  height: clamp(360px, 48vw, 680px);
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
}

.product-model-section {
  margin-top: 1.4rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid #dde3ea;
  border-radius: 1.3rem;
  background:
    radial-gradient(circle at top left, rgba(224, 231, 242, 0.9), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
}

.product-model-layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.product-model-viewer {
  display: grid;
  gap: 0.7rem;
}

.product-model-stage {
  position: relative;
  min-height: clamp(440px, 58vw, 760px);
  border-radius: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 30, 0.08);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.96), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(214, 223, 236, 0.92), transparent 36%),
    linear-gradient(180deg, #fdfefe 0%, #e9eef4 100%);
}

.product-model-stage::after {
  content: "";
  position: absolute;
  inset: auto 7% 2.3rem;
  height: 2.2rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 27, 38, 0.12), rgba(20, 27, 38, 0) 70%);
  filter: blur(16px);
  pointer-events: none;
}

.product-model-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-model-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.product-model-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.94;
  filter: saturate(0.96) contrast(1.02);
}

.product-model-stage.is-model-ready .product-model-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-model-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.product-model-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  margin: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 32, 46, 0.08);
  color: #344455;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.product-model-status.is-error {
  color: #9a2424;
  background: rgba(255, 244, 244, 0.95);
}

.product-model-toolbar {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-model-tool {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(22, 32, 46, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #172434;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.product-model-tool:hover,
.product-model-tool:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(22, 32, 46, 0.24);
  transform: translateY(-1px);
}

.product-model-note {
  margin: 0;
  color: #5c6c7f;
  font-size: 0.94rem;
  line-height: 1.55;
}

.product-model-copy {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  max-width: 980px;
}

.product-model-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.product-model-copy p {
  margin: 0;
  color: #4e5e70;
}

.product-model-copy .list {
  margin: 0;
}

.product-model-copy .actions {
  padding-top: 0.1rem;
}

.product-model-inline-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0.55rem;
  padding: 0.34rem 0.68rem;
  border: 1px solid rgba(23, 36, 52, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #17324f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.product-model-inline-link:hover,
.product-model-inline-link:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(23, 36, 52, 0.22);
  transform: translateY(-1px);
}

.image-showcase--ftn .image-grid {
  justify-items: start;
}

.image-showcase--ftn .image-card {
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

.image-showcase--ftn .image-card img {
  aspect-ratio: auto;
  height: clamp(320px, 44vw, 620px);
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
}

.product-copy {
  background: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 0.8rem;
  padding: 1rem 1.1rem;
}

.product-copy h2 {
  margin: 0.2rem 0 0.6rem;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.product-copy p {
  margin: 0;
  color: #4f5459;
}

.product-copy .hero-actions {
  margin-top: 0.9rem;
}

.product-copy .list {
  margin-top: 0.85rem;
}

@media (min-width: 980px) {
  .hero--split .hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.35rem;
  }

  .hero--split .hero-media {
    align-self: stretch;
  }

  .hero--split .hero-media img {
    height: 100%;
  }
}

@media (max-width: 1020px) {
  .region-switcher-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .region-switcher-links {
    width: 100%;
    justify-content: flex-start;
  }

  .calc-dashboard {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .calc-dashboard > .card-quick {
    grid-column: span 3;
  }

  .calc-dashboard > .card-featured {
    grid-column: span 6;
  }

  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.44rem;
    min-height: auto;
    padding: 0.56rem 0;
  }

  .brand {
    flex: 1 1 100%;
  }

  .brand img {
    width: clamp(156px, 40vw, 212px);
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }

  .top-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    margin-left: 0;
    flex: 1 1 auto;
    min-width: 0;
  }

  .top-nav .cta-nav {
    width: auto;
    max-width: 100%;
    padding: 0.56rem 0.82rem;
    font-size: 0.9rem;
  }

  .lang-switch-host,
  .lang-note {
    margin-left: 0;
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
  }

  .lang-switch {
    margin-left: auto;
    justify-content: flex-end;
  }

  .top-nav-links {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.45rem);
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 0.75rem;
    padding: 0.55rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    min-width: min(260px, calc(100vw - 1.6rem));
    max-width: calc(100vw - 1.6rem);
    flex-direction: column;
    align-items: stretch;
    z-index: 32;
  }

  .top-nav-links.is-open {
    display: flex;
  }

  .top-nav-group {
    width: 100%;
  }

  .top-nav-link {
    width: 100%;
  }

  .top-nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .top-nav-trigger::after {
    content: "+";
    font-size: 1rem;
    line-height: 1;
  }

  .top-nav-group.is-open .top-nav-trigger::after {
    content: "-";
  }

  .top-nav-panel {
    position: static;
    min-width: 0;
    margin-top: 0.3rem;
    padding: 0.35rem 0 0;
    border: none;
    border-top: 1px solid #ececec;
    border-radius: 0;
    box-shadow: none;
  }

  .top-nav-sublink {
    padding: 0.62rem 0.3rem 0.62rem 0.2rem;
  }

  .showcase-overlay {
    position: static;
    width: 100%;
    border-radius: 0;
    border-left-width: 6px;
    border-top: 1px solid #d8d8d8;
    border-right: none;
    border-bottom: none;
    box-shadow: none;
  }

  .product-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-model-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .region-switcher-wrap {
    gap: 0.7rem;
  }

  .region-switcher-copy,
  .region-switcher-links {
    width: 100%;
  }

  .region-switcher-link {
    flex: 1 1 150px;
  }

  .calc-dashboard {
    grid-template-columns: 1fr;
  }

  .calc-dashboard > .card-quick,
  .calc-dashboard > .card-featured {
    grid-column: auto;
  }

  .wrap {
    width: calc(100% - 1.1rem);
  }

  .image-showcase {
    width: calc(100% - 1.1rem);
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "menu"
      "cta";
    align-items: center;
    column-gap: 0;
    row-gap: 0.45rem;
    padding: 0.52rem 0;
  }

  .brand {
    grid-area: brand;
    flex: 0 0 auto;
    min-width: 0;
  }

  .brand img {
    width: clamp(146px, 39vw, 184px);
  }

  .menu-toggle {
    grid-area: menu;
    margin: 0;
    justify-self: start;
    padding: 0.44rem 0.78rem;
    font-size: 0.95rem;
    border-radius: 0.64rem;
  }

  .top-nav {
    grid-area: cta;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.42rem;
  }

  .lang-switch-host,
  .lang-note {
    width: auto;
    min-width: 0;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .top-nav .lang-switch-host,
  .top-nav .lang-note {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding: 1.05rem 0.92rem 1.1rem;
    border-left-width: 5px;
  }

  .hero h1 {
    font-size: clamp(1.38rem, 7.7vw, 1.9rem);
    line-height: 1.13;
    letter-spacing: -0.012em;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0.7rem 0 1rem;
  }

  .hero-video {
    margin: 0.2rem 0 1rem;
  }

  .hero-video-fallback,
  .hero-video-media {
    height: clamp(220px, 62vw, 420px);
    object-position: center 34%;
  }

  .section h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.46rem);
  }

  .product-model-stage {
    min-height: 340px;
  }

  .product-model-toolbar {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .product-model-tool {
    flex: 1 1 calc(50% - 0.3rem);
    justify-content: center;
  }

  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .top-nav .cta-nav {
    width: auto;
    min-width: 0;
    padding: 0.5rem 0.74rem;
    font-size: 0.86rem;
    border-radius: 0.64rem;
    box-shadow: 0 4px 12px rgba(226, 0, 21, 0.22);
  }

  .unit-toggle-btn {
    padding: 0.32rem 0.52rem;
    font-size: 0.72rem;
    border-radius: 0.58rem;
  }

  .lang-switch {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .lang-switch-btn {
    min-width: 1.95rem;
    padding: 0.28rem 0.38rem;
    font-size: 0.74rem;
  }

  .top-nav-links {
    right: 0;
    left: auto;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    row-gap: 0.46rem;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }

  .top-nav {
    flex: 1 1 100%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.42rem;
  }

  .top-nav .lang-switch-host,
  .top-nav .lang-note {
    width: 100%;
    justify-content: space-between;
  }
}

/* Visual overdrive: bold industrial polish for hub + regionals */
:root {
  --bg: #edf1f4;
  --bg-alt: #dee5eb;
  --panel: #ffffff;
  --panel-soft: #f5f8fb;
  --ink: #131a21;
  --muted: #44515f;
  --line: #cdd5dc;
  --primary: #121922;
  --primary-strong: #0a1017;
  --accent: #c91324;
  --accent-soft: rgba(201, 19, 36, 0.18);
  --accent-hairline: rgba(201, 19, 36, 0.68);
  --shadow: 0 16px 34px rgba(12, 24, 38, 0.13);
}

body.site2026 {
  font-family: "Barlow", "IBM Plex Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% -8%, rgba(201, 19, 36, 0.1), rgba(201, 19, 36, 0) 38%),
    radial-gradient(circle at 94% 0%, rgba(18, 25, 34, 0.09), rgba(18, 25, 34, 0) 35%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.52) 0,
      rgba(255, 255, 255, 0.52) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 22px
    ),
    linear-gradient(180deg, #fdfefe 0%, var(--bg) 46%, var(--bg-alt) 100%);
}

.brand,
.hero h1,
.section h2,
.card h3,
.proof-item strong,
.kpi,
.footer-grid h4 {
  font-family: "Sora", "Space Grotesk", "IBM Plex Sans", sans-serif;
}

.region-switcher {
  background: linear-gradient(90deg, #111820 0%, #1a2531 54%, #111820 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.region-switcher-kicker {
  background: rgba(201, 19, 36, 0.2);
  color: #ffb6bf;
}

.region-switcher-link {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  font-family: "Barlow", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.region-switcher-link.is-current {
  background: linear-gradient(135deg, #f0a04a 0%, #d8842a 100%);
  border-color: #f0a04a;
  color: #180f05;
}

.site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 253, 0.97) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(14, 26, 38, 0.09);
}

.site-header::before {
  height: 3px;
}

.top-nav-link {
  font-family: "Barlow", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.81rem;
  font-weight: 700;
}

.top-nav-sublink {
  font-family: "Barlow", "IBM Plex Sans", sans-serif;
  font-size: 0.88rem;
}

.top-nav-link.top-nav-link-hub-cta {
  background: linear-gradient(135deg, #f29d42 0%, #d47715 100%);
  box-shadow: 0 10px 24px rgba(212, 119, 21, 0.28);
}

.hero {
  border-radius: 1.3rem;
  border: 1px solid #c6ced6;
  border-left-width: 7px;
  background:
    radial-gradient(circle at 90% 6%, rgba(201, 19, 36, 0.14), rgba(201, 19, 36, 0) 36%),
    linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
  box-shadow: 0 22px 40px rgba(12, 24, 38, 0.14);
}

.hero::before {
  height: 2px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(120px, 28vw, 260px);
  height: clamp(120px, 28vw, 260px);
  background: radial-gradient(circle at top right, rgba(201, 19, 36, 0.22), rgba(201, 19, 36, 0) 72%);
  pointer-events: none;
}

.section h2 {
  letter-spacing: 0.012em;
  padding-left: 0.84rem;
}

.section h2::before {
  width: 4px;
}

.button {
  border-radius: 0.72rem;
  font-family: "Barlow", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-weight: 700;
  padding: 0.74rem 1.12rem;
}

.button.primary {
  background: linear-gradient(135deg, #de0014 0%, #940010 100%);
  box-shadow: 0 10px 20px rgba(194, 13, 34, 0.3);
}

.button.primary:hover {
  background: linear-gradient(135deg, #be0011 0%, #7a000d 100%);
}

.card {
  border-radius: 1.02rem;
  border-color: #c9d2da;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
  box-shadow: 0 8px 20px rgba(15, 30, 45, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 19, 36, 0), rgba(201, 19, 36, 0.72), rgba(201, 19, 36, 0));
}

.card:hover {
  border-color: #cf9aa0;
  box-shadow: 0 14px 30px rgba(12, 24, 38, 0.18);
}

.cta-band {
  border-radius: 1.1rem;
  background: linear-gradient(128deg, #111923 0%, #213040 57%, #111923 100%);
  border-color: #2b3948;
  border-left-width: 7px;
  box-shadow: 0 16px 30px rgba(8, 15, 24, 0.24);
}

.cta-band::before {
  height: 2px;
}

footer.site-footer {
  background:
    radial-gradient(circle at 85% 5%, rgba(201, 19, 36, 0.08), rgba(201, 19, 36, 0) 32%),
    linear-gradient(180deg, #f4f7f9 0%, #e7edf2 100%);
}

footer.site-footer::before {
  height: 2px;
}

.legal-inline a {
  color: #4a5564;
}

.legal-inline a:hover {
  color: var(--accent);
}

@media (max-width: 760px) {
  .top-nav-link {
    font-size: 0.86rem;
    letter-spacing: 0.035em;
  }

  .hero {
    border-left-width: 6px;
    border-radius: 1.08rem;
  }

  .card::before {
    left: 0.8rem;
    right: 0.8rem;
  }
}
