:root {
  --navy: #1a3d70;
  --navy-2: #10233d;
  --ink: #171b28;
  --muted: #626b7d;
  --quiet: #667083;
  --paper: #fbfaf7;
  --warm: #f4f0e8;
  --surface: #ffffff;
  --line: #dfddd7;
  --gold: #8a6720;
  --green: #446d45;
  --red: #a6473f;
  --sans: 'IBM Plex Sans', 'Avenir Next', 'Segoe UI', sans-serif;
  --serif: 'IBM Plex Serif', Georgia, serif;
  --max: 1180px;
  --radius: 8px;
  --radius-sm: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: var(--navy); }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid rgba(223,221,215,0.8);
}
.nav-inner {
  max-width: var(--max);
  height: 64px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  margin-right: auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: #4c5669;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--navy); }
.lang {
  min-width: 38px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.nav-cta, .button {
  min-height: 38px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  color: #fff !important;
  background: var(--navy);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.button.secondary { color: var(--navy) !important; background: transparent; }
.nav-cta:hover, .button:hover { transform: translateY(-1px); background: #102f57; border-color: #102f57; }
.button.secondary:hover { color: #fff !important; background: var(--navy); }
.nav-toggle {
  width: 42px;
  height: 42px;
  padding: 10px;
  display: none;
  border: 0;
  background: transparent;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 2px;
  background: var(--ink);
}
.nav-toggle.open span { display: none; }
.nav-toggle.open::before { transform: translateY(3px) rotate(45deg); }
.nav-toggle.open::after { transform: translateY(-3px) rotate(-45deg); }

.shell { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.hero {
  padding: 92px 0 64px;
  position: relative;
}
.hero.shell, .section.shell { padding-left: 28px; padding-right: 28px; }
.hero::before {
  content: none;
}
.eyebrow, .section-label, .card-kicker, .status, .meta-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow, .section-label { color: var(--quiet); }
.hero h1 {
  max-width: 900px;
  margin: 20px 0 22px;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.hero-copy { max-width: 760px; margin: 0; color: var(--muted); font-size: 18px; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
}
.meta-pill, .status {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #586174;
  background: rgba(255,255,255,0.72);
  font-family: var(--sans);
  font-size: 11px;
}
.status.public { color: var(--green); background: #eef5eb; border-color: #dcead6; }
.status.archive { color: #785e24; background: #f5edda; border-color: #e8d9b4; }
.status.unlisted { color: var(--red); background: #f7eceb; border-color: #ecd4d1; }

.section { padding: 76px 0; border-top: 1px solid var(--line); }
.section-head {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
}
.section h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.section-intro { margin: 0; color: var(--muted); font-size: 15px; }

.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(26,61,112,0.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
a.card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
a.card:hover { border-color: rgba(26,61,112,0.32); transform: translateY(-3px); }
.card.featured {
  color: #f8fafc;
  background: var(--navy-2);
  border-color: rgba(255,255,255,0.08);
}
.card-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.card-kicker { color: var(--navy); }
.featured .card-kicker { color: #ead9ad; }
.card h3 { margin: 38px 0 10px; font-size: 24px; font-weight: 400; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.featured p { color: rgba(248,250,252,0.68); }
.card-link {
  margin-top: auto;
  padding-top: 30px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}
.featured .card-link { color: #fff; }

.filters { margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #4e586b;
  background: rgba(255,255,255,0.72);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}
.filter.active { color: #fff; background: var(--navy); border-color: var(--navy); }
[data-catalog-item][hidden] { display: none; }

.product-card { padding: 0; overflow: hidden; }
.product-head { padding: 27px; background: var(--warm); }
.product-card h3 { margin: 14px 0 8px; }
.product-body { padding: 0 27px 27px; }
.spec-list { margin: 0; display: grid; }
.spec {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}
.spec dt { color: var(--quiet); font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.spec dd { margin: 0; color: #485164; font-family: var(--sans); font-size: 13px; }

.policy-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.policy-step { padding: 25px; border: 1px solid var(--line); background: rgba(255,255,255,0.75); }
.policy-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.policy-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.policy-step + .policy-step { border-left: 0; }
.policy-step strong { display: block; margin: 14px 0 8px; font-size: 21px; font-weight: 400; }
.policy-step p { margin: 0; color: var(--muted); font-size: 14px; }

.callout {
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255,255,255,0.78);
}
.callout h3 { margin: 0 0 8px; font-size: 20px; font-weight: 400; }
.callout p { margin: 0; color: var(--muted); font-size: 14px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #4b5568; font-family: var(--sans); font-size: 12px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  font-family: var(--sans);
  font-size: 14px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid rgba(26,61,112,0.24); border-color: var(--navy); }
.form-note { margin: 18px 0 0; color: var(--muted); font-family: var(--sans); font-size: 12px; }
.form-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--green); font-family: var(--sans); font-size: 12px; }

.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.kpi { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.82); }
.kpi strong { display: block; color: var(--navy); font-family: var(--sans); font-size: 28px; }
.kpi span { color: var(--muted); font-family: var(--sans); font-size: 11px; }
.chart { min-height: 260px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.chart svg { width: 100%; height: 220px; display: block; }
.chart-line { fill: none; stroke: var(--navy); stroke-width: 3; vector-effect: non-scaling-stroke; }
.chart-area { fill: rgba(26,61,112,0.08); }
.chart-axis { stroke: #e1e4e9; stroke-width: 1; vector-effect: non-scaling-stroke; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 13px; }
th, td { padding: 13px 15px; border-bottom: 1px solid #e7e8ec; text-align: left; }
th { color: #626b7d; background: #f3f4f7; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }

.locale-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.locale-switch a {
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}
.locale-switch a:last-child { border-right: 0; }
.locale-switch a:hover, .locale-switch a:focus-visible { color: var(--navy); background: var(--warm); }

.corporate-hero {
  padding-top: 100px;
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 80px;
  align-items: end;
}
.corporate-hero--direct {
  grid-template-columns: minmax(0, 920px);
}
.page-header { padding-top: 90px; padding-bottom: 60px; }
.page-context {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}
.corporate-hero h1, .page-header h1 {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(44px, 6.4vw, 78px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.page-header h1 { max-width: 860px; font-size: clamp(40px, 5vw, 66px); }
.hero-note {
  padding: 28px 0 2px 28px;
  border-left: 3px solid var(--gold);
}
.hero-note strong { display: block; margin-bottom: 12px; font-size: 23px; font-weight: 400; }
.hero-note p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.text-link, .back-link {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.back-link { display: inline-block; margin-bottom: 28px; }
.text-link:hover, .back-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.product-list { border-top: 1px solid var(--line); }
.product-row {
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.product-row h3 { margin: 0 0 10px; font-size: clamp(25px, 3vw, 36px); font-weight: 400; line-height: 1.16; }
.product-row p { max-width: 760px; margin: 0; color: var(--muted); }
.product-facts { margin: 22px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-facts div { padding-top: 13px; border-top: 1px solid var(--line); }
.product-facts dt { color: var(--quiet); font-family: var(--sans); font-size: 11px; font-weight: 700; }
.product-facts dd { margin: 7px 0 0; color: #485164; font-family: var(--sans); font-size: 13px; }
.product-actions {
  min-width: 158px;
  display: grid;
  justify-items: start;
  gap: 16px;
}
.product-actions .text-link { margin-top: 8px; white-space: nowrap; }
.product-select { min-height: 36px; padding-inline: 14px; white-space: nowrap; }

.split-section, .ecosystem, .closing-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: start;
}
.split-section h2, .ecosystem h2, .closing-action h2 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 46px); font-weight: 300; line-height: 1.12; }
.split-section p, .ecosystem p { max-width: 680px; margin: 0; color: var(--muted); }
.action-list, .material-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.action-list li, .material-list li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.action-list a { display: flex; justify-content: space-between; color: var(--navy); font-family: var(--sans); font-size: 13px; font-weight: 700; text-decoration: none; }
.action-list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.process-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: process; border-top: 1px solid var(--line); }
.process-list li { min-height: 150px; padding: 22px 24px 22px 0; counter-increment: process; border-bottom: 1px solid var(--line); font-size: 15px; }
.process-list li::before { content: '0' counter(process); margin-bottom: 28px; display: block; color: var(--gold); font-family: var(--sans); font-size: 11px; font-weight: 700; }
.ecosystem { margin-top: 20px; margin-bottom: 56px; padding-top: 48px; padding-bottom: 48px; background: var(--warm); border: 0; }
.ecosystem .hero-actions { justify-content: flex-start; align-self: end; }

.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; }
.detail-grid h2 { margin: 0 0 14px; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0; }
.detail-grid p { margin: 0; color: var(--muted); }
.product-boundary h2 { margin-bottom: 14px; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0; }
.product-boundary > div { min-width: 0; }
.closing-action { align-items: center; }
.closing-action .button { justify-self: start; }

.brief-form {
  margin-top: 36px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.brief-form .form-note { padding-top: 18px; border-top: 1px solid var(--line); }
.selected-product-context {
  margin-bottom: 28px;
  padding: 2px 0 2px 20px;
  border-left: 3px solid var(--gold);
}
.selected-product-context[hidden] { display: none; }
.selected-product-context span {
  display: block;
  margin-bottom: 6px;
  color: var(--quiet);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}
.selected-product-context strong { display: block; font-size: 21px; font-weight: 400; }
.selected-product-context p { max-width: 760px; margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.callout h2 { font-family: var(--sans); font-size: 14px; font-weight: 700; }

.site-footer { margin-top: 36px; color: rgba(255,255,255,0.68); background: var(--navy-2); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 42px 28px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
.footer-brand { color: #fff; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; }
.footer-copy { max-width: 380px; margin-top: 12px; font-size: 13px; }
.footer-title { margin-bottom: 10px; color: #ead9ad; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 7px; }
.footer-links a { font-family: var(--sans); font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 18px 28px 24px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--sans); font-size: 11px; }

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

@media (max-width: 900px) {
  .site-nav {
    background: #fbfaf7;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    padding: 22px 24px 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
    overflow-y: auto;
    background: rgba(251,250,247,0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(15,25,35,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 15px; }
  .nav-toggle { display: block; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .grid.three { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .corporate-hero { grid-template-columns: 1fr; gap: 44px; }
  .product-row { grid-template-columns: 1fr; gap: 24px; }
  .product-actions { min-width: 0; display: flex; align-items: center; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-inner, .shell { padding-left: 20px; padding-right: 20px; }
  .nav-inner { gap: 10px; }
  .nav-cta { display: none; }
  .lang { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }
  .hero { padding: 62px 0 42px; }
  .hero.shell, .section.shell { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: 38px; }
  .hero-copy { font-size: 16px; }
  .section { padding: 48px 0; }
  .section h2 { font-size: 31px; }
  .grid.two, .grid.three, .policy-flow, .form-grid { grid-template-columns: 1fr; }
  .policy-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .policy-step:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .policy-step + .policy-step { border-left: 1px solid var(--line); border-top: 0; }
  .field.full { grid-column: auto; }
  .card h3 { margin-top: 28px; }
  .spec { grid-template-columns: 1fr; gap: 5px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > :first-child { grid-column: auto; }
  .footer-links a { min-height: 32px; display: flex; align-items: center; }
  .locale-switch a { min-width: 32px; padding: 0 6px; }
  .corporate-hero, .page-header { padding-top: 58px; padding-bottom: 42px; }
  .corporate-hero h1, .page-header h1 { font-size: 39px; }
  .hero-note { padding: 22px 0 0; border-left: 0; border-top: 3px solid var(--gold); }
  .product-row { gap: 20px; }
  .product-actions { align-items: stretch; flex-direction: column; }
  .product-actions .text-link { min-height: 36px; display: inline-flex; align-items: center; }
  .product-select { width: 100%; }
  .product-facts { grid-template-columns: 1fr; gap: 14px; }
  .split-section, .ecosystem, .closing-action { grid-template-columns: 1fr; gap: 30px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: auto; }
  .brief-form { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Qaz Report restoration: preserve the editorial restraint, but let the
   analytical offer open as a premium briefing rather than a plain document. */
.corporate-hero--direct {
  position: relative;
  isolation: isolate;
  max-width: none;
  min-height: 540px;
  padding-top: clamp(74px, 9vw, 146px);
  padding-bottom: clamp(74px, 9vw, 132px);
  color: #f8f5ee;
  background: #10233d;
}
.corporate-hero--direct::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: '';
  background:
    radial-gradient(circle at 86% 18%, rgba(212, 177, 97, .26), transparent 22rem),
    linear-gradient(130deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, 74px 74px;
}
.corporate-hero--direct::after {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  z-index: -1;
  width: min(32vw, 430px);
  height: min(27vw, 360px);
  border: 1px solid rgba(234, 217, 173, .45);
  border-bottom: 0;
  border-radius: 240px 240px 0 0;
  content: '';
}
.corporate-hero--direct h1 {
  max-width: 980px;
  color: inherit;
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: .98;
}
.corporate-hero--direct .hero-copy { color: rgba(248,245,238,.74); }
.corporate-hero--direct .button {
  border-color: #ead9ad;
  color: #10233d !important;
  background: #ead9ad;
}
.corporate-hero--direct .button.secondary {
  color: #f8f5ee !important;
  background: transparent;
}
.corporate-hero--direct .button:hover { border-color: #fff; background: #fff; }
.corporate-hero--direct .button.secondary:hover { color: #10233d !important; }
.product-list { counter-reset: report-product; }
.product-row {
  position: relative;
  padding: clamp(36px, 4.5vw, 58px) 0 clamp(36px, 4.5vw, 58px) clamp(52px, 6vw, 84px);
  counter-increment: report-product;
  transition: background-color .18s ease, padding-left .18s ease;
}
.product-row::before {
  position: absolute;
  top: clamp(36px, 4.5vw, 58px);
  left: 0;
  color: var(--gold);
  content: '0' counter(report-product);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}
.product-row:hover {
  margin-inline: -20px;
  padding-right: 20px;
  padding-left: calc(52px + 20px);
  background: rgba(244,240,232,.72);
}
.product-row:hover::before { left: 20px; }
.product-row h3 { letter-spacing: -.025em; }
.product-actions .button { box-shadow: 0 8px 18px rgba(16,35,61,.12); }
.process-list li { padding-right: 28px; }
.ecosystem {
  position: relative;
  overflow: hidden;
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
  color: #f8f5ee;
  background: var(--navy-2);
}
.ecosystem::after {
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(234,217,173,.35);
  border-radius: 50%;
  content: '';
}
.ecosystem h2, .ecosystem p { color: inherit; }
.ecosystem p { color: rgba(248,245,238,.7); }
.ecosystem .button.secondary { border-color: rgba(248,245,238,.65); color: #f8f5ee !important; }
@media (max-width: 640px) {
  .corporate-hero--direct { min-height: 0; padding-top: 74px; }
  .corporate-hero--direct::after { display: none; }
  .product-row { padding-left: 48px; }
  .product-row:hover { margin-inline: 0; padding-right: 0; padding-left: 48px; background: transparent; }
  .product-row:hover::before { left: 0; }
  .ecosystem { padding-left: 20px; padding-right: 20px; }
}
