:root {
  color-scheme: light;
  --navy-950: #081620;
  --navy-900: #10202d;
  --navy-800: #162635;
  --navy: #1f2a37;
  --ink: #12202d;
  --teal-800: #07545f;
  --teal: #0c7a8a;
  --teal-100: #e7f3f5;
  --gold: #c9a227;
  --gold-100: #f6efd8;
  --paper: #ffffff;
  --ivory: #fffdf8;
  --warm: #fbfaf5;
  --stone: #f3f0ea;
  --mist: #f6f7f8;
  --line: #e6e0d7;
  --line-strong: #d4dde5;
  --muted: #687785;
  --muted-2: #7b8996;
  --danger-soft: #f7ebe6;
  --sage: #eff4ef;
  --radius: 10px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --container: 1320px;
  --container-narrow: 1060px;
  --shadow-soft: 0 22px 62px rgba(18, 32, 45, .075);
  --shadow-panel: 0 34px 96px rgba(8, 22, 32, .18);
  --font: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--warm);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(201, 162, 39, .045), transparent 34%),
    linear-gradient(180deg, var(--ivory) 0, rgba(246, 247, 248, .96) 54%, var(--warm) 100%);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(201, 162, 39, .34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--navy-950);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.container-narrow {
  width: min(var(--container-narrow), calc(100% - 40px));
  margin: 0 auto;
}

.band {
  padding: 108px 0;
}

.band-tight {
  padding: 72px 0;
}

.band-dark {
  padding-top: 124px;
  padding-bottom: 124px;
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 76% 36%, rgba(12, 122, 138, .18), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(201, 162, 39, .075), transparent 28%),
    linear-gradient(150deg, #07131c 0%, var(--navy-900) 55%, #073844 100%);
}

.band-mist {
  background:
    radial-gradient(circle at 92% 12%, rgba(12, 122, 138, .045), transparent 32%),
    var(--mist);
}

.band-warm {
  background: var(--ivory);
}

.band-line {
  border-top: 1px solid rgba(230, 224, 215, .82);
  border-bottom: 1px solid rgba(230, 224, 215, .82);
}

.section-head {
  display: grid;
  gap: 22px;
  margin-bottom: 46px;
}

.section-head.split {
  grid-template-columns: minmax(0, .92fr) minmax(280px, .42fr);
  align-items: end;
  gap: 44px;
}

.section-head.center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

.band-dark .eyebrow,
.band-dark .section-label {
  color: #87d8df;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 850px;
  font-size: 64px;
  font-weight: 690;
}

h2 {
  font-size: 44px;
  font-weight: 680;
}

h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.22;
}

h4 {
  font-size: 18px;
  line-height: 1.28;
}

.band-dark h1,
.band-dark h2,
.band-dark h3,
.band-dark h4 {
  color: var(--paper);
}

p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.lead {
  max-width: 760px;
  font-size: 19px;
  font-weight: 440;
  line-height: 1.84;
}

.band-dark p,
.band-dark .lead {
  color: rgba(255, 255, 255, .78);
}

.muted {
  color: var(--muted);
}

.fineprint {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .86);
  border-bottom: 1px solid rgba(230, 224, 215, .72);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(18, 32, 45, .11);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-link,
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: #3e4c5a;
  background: transparent;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
}

.nav-link:hover,
.mega-trigger:hover,
.mega-trigger[aria-expanded="true"] {
  color: var(--teal-800);
  background: rgba(231, 243, 245, .78);
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 840;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  isolation: isolate;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

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

.btn-primary {
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--teal-800) 0%, var(--teal) 58%, #1593a1 100%);
  box-shadow: 0 18px 34px rgba(12, 122, 138, .19);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(12, 122, 138, .28);
}

.hero .btn-primary,
.analysis-product .btn-primary {
  border-color: rgba(255, 255, 255, .2);
  box-shadow:
    0 22px 48px rgba(12, 122, 138, .28),
    0 0 0 1px rgba(135, 216, 223, .12),
    0 0 34px rgba(12, 122, 138, .12);
}

.hero .btn-primary:hover,
.analysis-product .btn-primary:hover {
  box-shadow:
    0 26px 58px rgba(12, 122, 138, .34),
    0 0 0 1px rgba(201, 162, 39, .2),
    0 0 34px rgba(201, 162, 39, .12);
}

.btn-primary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border-color: rgba(212, 221, 229, .92);
}

.band-dark .btn-secondary,
.cta-band .btn-secondary,
.hero .btn-secondary {
  color: var(--paper);
  background:
    linear-gradient(#081620, #081620) padding-box,
    linear-gradient(120deg, rgba(135, 216, 223, .58), rgba(201, 162, 39, .72)) border-box;
  border-color: transparent;
}

.btn-secondary:hover {
  border-color: rgba(12, 122, 138, .44);
  box-shadow: 0 12px 28px rgba(18, 32, 45, .08);
}

.btn-gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, #f1d77e 0%, var(--gold) 100%);
  box-shadow: 0 18px 34px rgba(201, 162, 39, .16);
}

.cta-band .btn-gold {
  box-shadow:
    0 18px 44px rgba(201, 162, 39, .28),
    0 0 36px rgba(201, 162, 39, .18);
}

.btn-small {
  min-height: 42px;
  padding: 0 15px;
  font-size: 13px;
}

.icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 6px);
  width: min(1110px, calc(100vw - 40px));
  padding: 18px;
  color: rgba(255, 255, 255, .78);
  background:
    radial-gradient(circle at 84% 16%, rgba(12, 122, 138, .2), transparent 34%),
    linear-gradient(145deg, #07131c, #10202d 56%, #062e38 100%);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 90px rgba(8, 22, 32, .38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
  visibility: hidden;
}

.nav-item:focus-within .mega-menu,
.nav-item:hover .mega-menu,
.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 320px;
  gap: 10px;
}

.mega-col {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .11);
}

.mega-col:last-of-type {
  border-right: 0;
}

.mega-heading {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.mega-link {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.mega-link:hover,
.mega-link:focus-visible {
  color: #8be0e7;
}

.mega-cta {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: rgba(255, 255, 255, .78);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)),
    linear-gradient(150deg, rgba(12, 122, 138, .18), rgba(201, 162, 39, .1));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
}

.mega-cta strong {
  color: var(--paper);
  font-size: 20px;
  line-height: 1.22;
}

.mega-cta p {
  color: rgba(255, 255, 255, .76);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(8, 22, 32, .56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 190;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 92vw);
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 84% 12%, rgba(12, 122, 138, .25), transparent 34%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 62%, #062f39);
  border-left: 1px solid rgba(255, 255, 255, .12);
  box-shadow: -22px 0 70px rgba(8, 22, 32, .26);
  transform: translateX(105%);
  transition: transform 240ms var(--ease);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.drawer-head .brand-name {
  color: var(--paper);
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  font-size: 24px;
  line-height: 1;
}

.drawer-body {
  overflow-y: auto;
  padding: 18px 20px 24px;
}

.drawer-link,
.drawer-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-weight: 850;
  text-align: left;
}

.drawer-panel {
  display: none;
  padding: 16px 0 8px;
}

.drawer-panel.is-open {
  display: grid;
  gap: 20px;
}

.drawer-group {
  display: grid;
  gap: 4px;
}

.drawer-group strong {
  color: var(--gold);
  font-size: 13px;
}

.drawer-group a {
  padding: 8px 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 730;
}

.drawer-foot {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
}

.mobile-bottom-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 120;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(8, 22, 32, .18);
  backdrop-filter: blur(14px);
}

.mobile-bottom-bar a {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
}

.mobile-bottom-bar a:last-child {
  border-right: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, .035), transparent 30%),
    radial-gradient(circle at 80% 28%, rgba(201, 162, 39, .09), transparent 30%),
    linear-gradient(145deg, #06121b 0%, var(--navy-900) 56%, #073943 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .76), transparent 84%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 5%;
  z-index: 0;
  width: min(680px, 58vw);
  height: min(680px, 58vw);
  background:
    radial-gradient(circle, rgba(12, 122, 138, .18), transparent 66%),
    radial-gradient(circle at 68% 32%, rgba(201, 162, 39, .12), transparent 40%);
  filter: blur(8px);
  opacity: .88;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, .74fr);
  gap: 72px;
  align-items: center;
  min-height: 780px;
  max-height: none;
  padding: 88px 0 104px;
}

.hero h1 {
  color: var(--paper);
  line-height: 1.04;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-lead {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .68);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.9;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: 680;
}

.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-microcopy span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-visual {
  min-width: 0;
}

.decision-cockpit {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 42%, rgba(12, 122, 138, .18), transparent 48%),
    radial-gradient(circle at 78% 20%, rgba(201, 162, 39, .11), transparent 30%),
    rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-xl);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .075);
  backdrop-filter: blur(18px);
}

.orbit-shell {
  position: relative;
  min-height: 382px;
}

.orbit-ring {
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(135, 216, 223, .14);
  border-radius: 999px;
}

.orbit-ring-one {
  box-shadow: 0 0 54px rgba(12, 122, 138, .11);
}

.orbit-ring-two {
  inset: 82px;
  border-color: rgba(201, 162, 39, .16);
  transform: rotate(-10deg) scaleX(1.08);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 184px;
  padding: 18px;
  color: var(--paper);
  text-align: center;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, .13), transparent 38%),
    linear-gradient(145deg, rgba(8, 22, 32, .97), rgba(7, 84, 95, .68));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  box-shadow:
    0 30px 72px rgba(0, 0, 0, .24),
    0 0 0 12px rgba(255, 255, 255, .03),
    0 0 58px rgba(12, 122, 138, .18);
  transform: translate(-50%, -50%);
}

.orbit-core span {
  color: #8be0e7;
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0;
}

.orbit-core strong {
  margin-top: 6px;
  color: var(--paper);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.08;
}

.orbit-core em {
  margin-top: 5px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.orbit-node {
  position: absolute;
  display: grid;
  gap: 4px;
  width: 126px;
  min-height: 70px;
  padding: 13px 15px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .13);
}

.orbit-node::before {
  content: "";
  position: absolute;
  inset: auto 12px -1px 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 999px;
}

.orbit-node span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 880;
}

.orbit-node strong {
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.node-risk {
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.node-tax {
  top: 116px;
  right: 10px;
}

.node-zus {
  right: 50px;
  bottom: 18px;
}

.node-cash {
  bottom: 18px;
  left: 50px;
}

.node-process {
  top: 116px;
  left: 10px;
}

.cockpit-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.cockpit-title {
  display: grid;
  gap: 4px;
}

.cockpit-title strong {
  color: var(--paper);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.cockpit-title span,
.cockpit-badge {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 660;
}

.cockpit-badge {
  white-space: nowrap;
  padding: 9px 12px;
  color: #052f37;
  background: linear-gradient(135deg, #9ee1e6, #d8e4d0);
  border-radius: 999px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(255, 255, 255, .9));
  border: 1px solid rgba(230, 224, 215, .76);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 72px rgba(8, 22, 32, .08);
  backdrop-filter: blur(12px);
}

.proof-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(230, 224, 215, .82);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: var(--radius);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.25;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.problem-card,
.result-card,
.article-card,
.topic-card,
.service-card,
.process-card,
.template-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(230, 224, 215, .86);
  border-radius: var(--radius-md);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.problem-card:hover,
.result-card:hover,
.article-card:hover,
.topic-card:hover,
.service-card:hover,
.process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 122, 138, .34);
  box-shadow: 0 20px 46px rgba(18, 32, 45, .07);
}

.problem-card img,
.result-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius);
}

.problem-card p,
.result-card p,
.service-card p,
.topic-card p,
.article-card p {
  font-size: 14px;
  line-height: 1.68;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, .56fr);
  gap: 70px;
  align-items: center;
}

.big-statement {
  font-size: 52px;
  font-weight: 660;
  line-height: 1.08;
}

.decision-map {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.decision-axis {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 92px;
  gap: 26px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.decision-axis:last-child {
  border-bottom: 0;
}

.decision-axis:focus-visible {
  outline: 3px solid rgba(201, 162, 39, .36);
  outline-offset: 8px;
}

.decision-axis:hover,
.decision-axis:focus-visible,
.decision-axis.is-active {
  transform: translateX(3px);
}

.axis-number {
  color: var(--gold);
  font-size: 14px;
  font-weight: 760;
}

.decision-axis h3 {
  margin-bottom: 6px;
}

.decision-axis p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
}

.axis-indicator {
  justify-self: end;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .18);
  border-radius: 999px;
}

.axis-indicator::before {
  content: "";
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: inherit;
  transform-origin: left;
  transition: width 220ms var(--ease), box-shadow 220ms var(--ease);
}

.decision-axis:hover .axis-indicator::before,
.decision-axis:focus-visible .axis-indicator::before,
.decision-axis.is-active .axis-indicator::before {
  width: 100%;
  box-shadow: 0 0 16px rgba(201, 162, 39, .28);
}

.analysis-product {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(420px, .56fr);
  gap: 68px;
  align-items: center;
}

.product-visual {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  box-shadow: 0 34px 92px rgba(8, 22, 32, .15);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 22, 32, .08), transparent 52%),
    radial-gradient(circle at 78% 12%, rgba(201, 162, 39, .14), transparent 30%);
  pointer-events: none;
}

.product-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  color: var(--muted);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 5px;
  background: radial-gradient(circle at 36% 32%, #d7c274, var(--teal));
  border-radius: 50%;
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: 74px;
}

.process-rail {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.rail-line {
  height: 9px;
  overflow: hidden;
  margin-top: 18px;
  background: rgba(230, 224, 215, .68);
  border-radius: 999px;
}

.rail-line i {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: inherit;
  transition: width 220ms var(--ease);
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-card {
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  padding: 36px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.process-card:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.process-number {
  color: rgba(201, 162, 39, .62);
  font-size: 58px;
  font-weight: 720;
  line-height: .9;
}

.process-card.is-active {
  border-color: rgba(12, 122, 138, .34);
}

.process-card.is-active .process-number {
  color: var(--teal);
}

.process-card h3 {
  font-size: 30px;
  font-weight: 680;
}

.process-card p {
  max-width: 680px;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.expert-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .46fr);
  gap: 92px;
  align-items: center;
}

.expert-panel::before {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -42px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(12, 122, 138, .1), transparent 68%);
  pointer-events: none;
}

.expert-photo {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.expert-photo::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.expert-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 86px rgba(18, 32, 45, .1);
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(230, 224, 215, .9);
  border-bottom: 1px solid rgba(230, 224, 215, .9);
}

.trust-point {
  padding: 22px 24px 22px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(230, 224, 215, .9);
  border-radius: 0;
}

.trust-point:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-point strong {
  font-weight: 720;
}

.article-grid,
.topic-grid,
.service-grid,
.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.article-card-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  color: var(--teal-800);
  background: rgba(231, 243, 245, .78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 830;
}

.badge-gold {
  color: #5f4800;
  background: var(--gold-100);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-top: 124px;
  padding-bottom: 124px;
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 76% 32%, rgba(201, 162, 39, .12), transparent 36%),
    radial-gradient(circle at 18% 74%, rgba(12, 122, 138, .12), transparent 28%),
    linear-gradient(135deg, #07131c, var(--navy-950) 58%, #063844);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.cta-panel {
  position: relative;
  z-index: 1;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) auto;
  gap: 54px;
  align-items: center;
}

.form-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.form-panel > *,
.contact-card > *,
.trust-point > * {
  min-width: 0;
}

.form-panel a,
.contact-card a,
.trust-point a {
  overflow-wrap: anywhere;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background-color 160ms var(--ease);
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 122, 138, .12);
  outline: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 12px;
  color: var(--muted);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.4;
}

.choice input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-status {
  display: none;
  padding: 14px;
  color: #0b4d24;
  background: #e8f5ec;
  border: 1px solid #b6dec0;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 780;
}

.form-status.is-visible {
  display: block;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 850;
}

details p {
  padding: 0 20px 20px;
  font-size: 15px;
}

.footer {
  color: rgba(255, 255, 255, .74);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(160px, .42fr));
  gap: 38px;
  padding: 70px 0 42px;
}

.footer h2,
.footer h3,
.footer strong {
  color: var(--paper);
}

.footer a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.footer a:hover {
  color: #91dce3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}

.page-hero {
  padding: 78px 0 54px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero.dark {
  color: rgba(255, 255, 255, .8);
  background:
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 62%, #063844);
  border-bottom: 0;
}

.page-hero.dark h1,
.page-hero.dark h2,
.page-hero.dark h3 {
  color: var(--paper);
}

.page-hero.dark p,
.page-hero.dark .lead,
.page-hero.dark .breadcrumb {
  color: rgba(255, 255, 255, .76);
}

.page-hero.dark .breadcrumb a {
  color: #8be0e7;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .45fr);
  gap: 48px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 740;
}

.breadcrumb a {
  color: var(--teal-800);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: var(--line-strong);
}

.toc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 54px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.toc strong {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.toc a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.article-body {
  max-width: 780px;
}

.article-body h2 {
  margin-top: 46px;
  font-size: 34px;
}

.article-body h3 {
  margin-top: 28px;
}

.article-body p,
.article-body li {
  color: #41505d;
  font-size: 17px;
  line-height: 1.85;
}

.article-body p {
  margin-top: 18px;
}

.article-body ul {
  padding-left: 24px;
}

.info-box {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 22px;
  background: var(--teal-100);
  border: 1px solid rgba(12, 122, 138, .22);
  border-radius: var(--radius);
}

.warning-box {
  background: var(--danger-soft);
  border-color: rgba(138, 75, 60, .24);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 740;
}

.knowledge-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.search-input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 820;
}

.filter-btn.is-active {
  color: var(--paper);
  background: var(--teal-800);
  border-color: var(--teal-800);
}

.analysis-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, .46fr);
  gap: 36px;
  align-items: start;
}

.wizard {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.wizard-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.progress-track {
  overflow: hidden;
  height: 9px;
  background: var(--mist);
  border-radius: 999px;
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: inherit;
  transition: width 240ms var(--ease);
}

.wizard-question {
  display: grid;
  gap: 18px;
}

.option-list {
  display: grid;
  gap: 10px;
}

.option-list label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 14px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 760;
}

.option-list input {
  margin-top: 5px;
  accent-color: var(--teal);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.result-panel {
  display: none;
  gap: 16px;
  margin-top: 24px;
  padding: 22px;
  background: var(--teal-100);
  border: 1px solid rgba(12, 122, 138, .2);
  border-radius: var(--radius);
}

.result-panel.is-visible {
  display: grid;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
}

.js .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .problem-grid .reveal:nth-child(2),
.js .article-grid .reveal:nth-child(2),
.js .trust-panel .trust-point:nth-child(2) {
  transition-delay: 80ms;
}

.js .problem-grid .reveal:nth-child(3),
.js .article-grid .reveal:nth-child(3),
.js .trust-panel .trust-point:nth-child(3) {
  transition-delay: 140ms;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .desktop-nav {
    display: none;
  }

  .icon-btn {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions .phone-link,
  .header-actions .btn {
    display: none;
  }

  .hero-inner,
  .analysis-product,
  .statement-grid,
  .expert-panel,
  .page-hero-grid,
  .analysis-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    max-height: none;
  }

  .proof-grid,
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-shell,
  .toc-layout {
    grid-template-columns: 1fr;
  }

  .process-rail,
  .toc {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 78px;
  }

  .container,
  .container-narrow {
    width: min(calc(100vw - 28px), var(--container));
  }

  .band {
    padding: 64px 0;
  }

  .band-tight {
    padding: 46px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-note {
    display: none;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    max-width: calc(100vw - 28px);
    font-size: 32px;
    line-height: 1.08;
  }

  h2,
  .big-statement {
    font-size: 32px;
    line-height: 1.13;
  }

  h3 {
    font-size: 21px;
  }

  .lead,
  .hero-lead {
    font-size: 17px;
  }

  .section-head.split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0 74px;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .hero h1,
  .hero-lead {
    max-width: 100%;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .hero-microcopy {
    display: grid;
    grid-template-columns: 1fr;
  }

  .decision-cockpit {
    min-height: auto;
    padding: 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .orbit-shell {
    display: grid;
    min-height: auto;
    gap: 10px;
  }

  .orbit-ring {
    display: none;
  }

  .orbit-core {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 126px;
    border-radius: var(--radius-lg);
    transform: none;
  }

  .orbit-node,
  .node-risk,
  .node-tax,
  .node-zus,
  .node-cash,
  .node-process {
    position: relative;
    inset: auto;
    grid-template-columns: 34px 1fr;
    align-items: center;
    width: 100%;
    min-height: 54px;
    transform: none;
  }

  .cockpit-caption {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cockpit-badge {
    width: fit-content;
    white-space: normal;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal {
    min-height: auto;
    grid-template-columns: 32px 1fr;
    align-items: center;
  }

  .path-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .decision-axis {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .axis-indicator {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .proof-grid,
  .problem-grid,
  .trust-panel,
  .article-grid,
  .topic-grid,
  .service-grid,
  .template-grid,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    border-top: 1px solid rgba(230, 224, 215, .9);
    border-bottom: 1px solid rgba(230, 224, 215, .9);
  }

  .trust-point,
  .trust-point:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(230, 224, 215, .9);
  }

  .trust-point:last-child {
    border-bottom: 0;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .process-number {
    font-size: 44px;
  }

  .process-card h3 {
    font-size: 25px;
  }

  .knowledge-tools {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mobile-bottom-bar {
    display: grid;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero-copy,
  .hero-visual {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-microcopy,
  .decision-cockpit {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .hero-title-line {
    display: block;
    overflow-wrap: anywhere;
  }
}
