/* ===== RETHEME navy (§3-3b ページテーマ制・2026-07-03) — 元は page24.css.bak_20260703 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #16181c;
  background: #ffffff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd,
figure {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
#wrapper {
  min-width: 320px;
  overflow: clip;
}

#contents {
  min-height: 100vh;
}

.inner {
  width: min(1240px, 100% - 100px);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section--tint {
  background: #f5f6f8;
}

.section--dark {
  color: #ffffff;
  background: #101d2c;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 80px;
}

.section-heading--center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading__eyebrow {
  margin-bottom: 20px;
  color: #123A63;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.section-heading__title {
  margin-bottom: 0;
  font-size: clamp(36px, 4.1vw, 64px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.section-heading__lead {
  margin-bottom: 0;
  color: #5d6268;
  font-size: 17px;
  line-height: 2;
}

.section-heading--light .section-heading__eyebrow {
  color: #7fa9d8;
}

.section-heading--light .section-heading__lead {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 60px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.button--accent {
  color: #16181c;
  background: #f5b500;
}

.button--outline-white {
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #123A63;
  font-weight: 700;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 12px 16px;
  color: #ffffff;
  background: #16181c;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.breadcrumb {
  padding: 16px 50px;
  border-top: 1px solid #edeff1;
  border-bottom: 1px solid #edeff1;
  background: #ffffff;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.breadcrumb__item {
  color: #6e7378;
  font-size: 12px;
}

.breadcrumb__item:not(:last-child)::after {
  margin: 0 10px;
  content: "/";
  color: #a8acb1;
}

.breadcrumb__link {
  text-decoration: none;
}

.notice-box {
  padding: 24px 28px;
  border-left: 4px solid #123A63;
  background: #ffffff;
}

.notice-box__title {
  margin-bottom: 8px;
  font-weight: 700;
}

.notice-box__text {
  margin-bottom: 0;
  color: #5d6268;
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .inner {
    width: min(100% - 60px, 1240px);
  }
  .section {
    padding: 90px 0;
  }
  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 568px) {
  .inner {
    width: calc(100% - 40px);
  }
  .section {
    padding: 72px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }
  .section-heading__title {
    font-size: 34px;
  }
  .section-heading__lead {
    font-size: 15px;
    line-height: 1.9;
  }
  .button {
    width: 100%;
    min-height: 56px;
  }
  .breadcrumb {
    padding: 12px 20px;
  }
  .breadcrumb__item {
    font-size: 10px;
  }
}
.header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.header *,
.header *::before,
.header *::after {
  box-sizing: border-box;
}

.header__inner {
  width: 100%;
  padding: 0 50px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  padding-top: 0;
}

.header__logo {
  display: block;
  width: 200px;
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__tagline {
  margin: 10px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.header__utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__lang {
  position: relative;
  flex: 0 0 auto;
}

.header__lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #000;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.header__lang-arrow {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.header__lang.is-open .header__lang-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 150px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header__lang.is-open .header__lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__lang-link {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-link.is-current {
  background: #f4f6f8;
  font-weight: 600;
}

.header__actions {
  position: relative;
  top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  padding: 100px 20px 20px;
  border-radius: 0 0 10px 10px;
  background: #0C2A4D;
}

.header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__action-link img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-height: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 10px;
}

.header__nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.header__lang-button:focus-visible,
.header__lang-link:focus-visible,
.header__action-link:focus-visible,
.header__nav-link:focus-visible,
.header__logo:focus-visible {
  outline: 2px solid #0C2A4D;
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header__lang-button:hover {
    border-color: #0C2A4D;
  }
  .header__lang-link:hover {
    background: #f4f6f8;
  }
  .header__action-link:hover {
    opacity: 0.8;
  }
  .header__nav-link:hover {
    color: #0C2A4D;
  }
}
@media (max-width: 1250px) {
  .header__utility {
    gap: 20px;
  }
  .header__nav {
    gap: 22px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__tagline {
    display: none;
  }
}
@media (max-width: 850px) {
  .header__inner {
    padding: 14px 30px;
  }
  .header__top {
    align-items: center;
    gap: 16px;
  }
  .header__brand {
    padding-top: 0;
  }
  .header__logo {
    width: 160px;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__lang-button {
    width: 98px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .header__lang-menu {
    width: 140px;
  }
  .header__actions,
  .header__nav {
    display: none;
  }
}
@media (max-width: 568px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header__logo {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__lang-arrow,
  .header__lang-menu {
    transition: none;
  }
}
.footer {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.footer__inner {
  box-sizing: border-box;
  margin: 100px 0;
  padding: 0 50px;
}
.footer__top {
  display: flex;
}
.footer__intro {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
}
.footer__copy {
  display: block;
  width: 355px;
  margin: 0;
}
.footer__copy img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__description {
  display: block;
  margin: 30px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}
.footer__nav {
  width: calc(100% - 400px);
}
.footer__columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 24px 0 28px;
  list-style: none;
}
.footer__column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 33.3333333333%;
  padding: 0 35px;
  gap: 10px;
}
.footer__column--center {
  border-left: 1px dotted #f4f6f8;
}
.footer__heading {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}
.footer__heading--spaced {
  margin-top: 15px;
}
.footer__heading span {
  position: relative;
  bottom: -1px;
  display: block;
  width: 17px;
  margin-left: 5px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0C2A4D 0%, #123A63 100%);
}
.footer__heading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  content: "";
  transform: translate(-25%, -50%);
  clip-path: polygon(0 15%, 15% 0, 65% 50%, 15% 100%, 0 85%, 35% 50%, 0 15%);
  aspect-ratio: 1;
  background-color: #fff;
}
.footer__group {
  margin: 0;
}
.footer__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__summary::-webkit-details-marker {
  display: none;
}
.footer__summary::after {
  display: block;
  width: 13px;
  content: "";
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  aspect-ratio: 1;
  background-color: #000;
}
.footer__group[open] .footer__summary::after {
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
}
.footer__links {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f6f8;
}
.footer__nav-link {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.footer__logo {
  display: block;
  width: 200px;
}
.footer__bess {
  display: block;
  width: 170px;
}
.footer__logo img, .footer__bess img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.footer__link span {
  display: block;
  width: 15px;
  line-height: 1;
}
.footer__link img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  margin: 0;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}
.footer__copyright--mobile {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__heading:hover, .footer__summary:hover, .footer__nav-link:hover, .footer__link:hover {
    color: #0C2A4D;
  }
  .footer__summary:hover::after {
    background-color: #0C2A4D;
  }
}
@media (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__intro {
    flex-basis: auto;
    width: 100%;
  }
  .footer__description br {
    display: none;
  }
  .footer__nav {
    width: 100%;
    margin-top: 50px;
  }
  .footer__column {
    width: 31.6666666667%;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .footer__nav {
    margin-top: 20px;
  }
  .footer__links {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .footer__inner {
    margin: 50px 0;
    padding: 0 30px;
  }
  .footer__intro {
    align-items: center;
  }
  .footer__copy {
    width: 300px;
  }
  .footer__description {
    max-width: 500px;
    margin: 10px auto 0;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer__brand-row {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .footer__copyright--desktop {
    display: none;
  }
  .footer__company {
    align-items: center;
    width: 100%;
    gap: 24px 0;
  }
  .footer__brand-row {
    width: 100%;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__bess {
    width: 150px;
  }
  .footer__link {
    justify-content: center;
    font-size: 13px;
  }
  .footer__copyright--mobile {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 568px) {
  .footer__inner {
    padding: 0 20px;
  }
  .footer__copy {
    width: min(100%, 300px);
  }
}

.sp-menu {
  display: none;
}

@media (max-width: 850px) {
  .sp-menu {
    display: block;
  }
  .sp-menu__button {
    position: fixed;
    top: 13px;
    right: 18px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #123A63;
    gap: 5px;
  }
  .sp-menu__line {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .sp-menu.is-open .sp-menu__line:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.is-open .sp-menu__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .sp-menu__panel {
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    overflow-y: auto;
    color: #ffffff;
    background: rgba(8, 20, 34, 0.98);
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .sp-menu.is-open .sp-menu__panel {
    visibility: visible;
    opacity: 1;
  }
  .sp-menu__inner {
    min-height: 100%;
    padding: 100px 30px 50px;
  }
  .sp-menu__label {
    margin-bottom: 30px;
    color: #7fa9d8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
  }
  .sp-menu__nav {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .sp-menu__link {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }
  .sp-menu__actions {
    display: grid;
    gap: 14px;
    margin-top: 36px;
  }
  .sp-menu__button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 999px;
    color: #16181c;
    background: #f5b500;
    font-weight: 700;
    text-decoration: none;
  }
  .sp-menu__text-link {
    padding: 12px;
    text-align: center;
    text-decoration: none;
  }
  body.is-menu-open {
    overflow: hidden;
  }
}
body#hv-inv-revenue .revenue-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #ffffff;
  background: #0b1f35;
}
body#hv-inv-revenue .revenue-hero__media,
body#hv-inv-revenue .revenue-hero__shade {
  position: absolute;
  inset: 0;
}
body#hv-inv-revenue .revenue-hero__media picture,
body#hv-inv-revenue .revenue-hero__media img {
  width: 100%;
  height: 100%;
}
body#hv-inv-revenue .revenue-hero__media img {
  object-fit: cover;
  object-position: center 56%;
}
body#hv-inv-revenue .revenue-hero__shade {
  background: linear-gradient(90deg, rgba(3, 15, 28, 0.95) 0%, rgba(3, 15, 28, 0.75) 48%, rgba(3, 15, 28, 0.14) 78%, rgba(3, 15, 28, 0.08) 100%);
}
body#hv-inv-revenue .revenue-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  min-height: 760px;
  padding-top: 110px;
  padding-bottom: 80px;
  gap: 70px;
}
body#hv-inv-revenue .revenue-hero__content {
  max-width: 760px;
}
body#hv-inv-revenue .revenue-hero__eyebrow {
  margin-bottom: 22px;
  color: #7fa9d8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
body#hv-inv-revenue .revenue-hero__label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
body#hv-inv-revenue .revenue-hero__title {
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.055em;
}
body#hv-inv-revenue .revenue-hero__title span {
  color: #f5d25d;
}
body#hv-inv-revenue .revenue-hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.95;
}
body#hv-inv-revenue .revenue-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#hv-inv-revenue .revenue-hero__note {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.8;
}
body#hv-inv-revenue .revenue-hero__summary {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 4px;
  background: rgba(10, 26, 44, 0.72);
  backdrop-filter: blur(10px);
}
body#hv-inv-revenue .revenue-hero__summary-title {
  margin-bottom: 18px;
  color: #7fa9d8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
body#hv-inv-revenue .revenue-hero__summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-revenue .revenue-hero__summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 600;
}
body#hv-inv-revenue .revenue-hero__summary-item span {
  color: #f5d25d;
  font-size: 12px;
}
body#hv-inv-revenue .decision-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
body#hv-inv-revenue .decision-intro__card {
  min-height: 270px;
  padding: 32px;
  border-top: 3px solid #123A63;
  background: #f5f6f8;
}
body#hv-inv-revenue .decision-intro__number {
  margin-bottom: 60px;
  color: #123A63;
  font-size: 13px;
  font-weight: 700;
}
body#hv-inv-revenue .decision-intro__title {
  margin-bottom: 14px;
  font-size: 22px;
}
body#hv-inv-revenue .decision-intro__text {
  margin-bottom: 0;
  color: #5d6268;
  font-size: 14px;
  line-height: 1.9;
}
body#hv-inv-revenue .revenue-sources__visual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: stretch;
  margin-bottom: 28px;
  gap: 30px;
}
body#hv-inv-revenue .revenue-sources__stack {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
body#hv-inv-revenue .revenue-sources__item {
  min-height: 280px;
  padding: 28px 24px;
  border: 1px solid #dce0e5;
  background: #ffffff;
}
body#hv-inv-revenue .revenue-sources__item--balancing {
  color: #ffffff;
  border-color: #123A63;
  background: #123A63;
  transform: translateY(-18px);
}
body#hv-inv-revenue .revenue-sources__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
  border-radius: 50%;
  color: #123A63;
  background: #e4eaf1;
  font-size: 12px;
  font-weight: 700;
}
body#hv-inv-revenue .revenue-sources__item--balancing .revenue-sources__tag {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}
body#hv-inv-revenue .revenue-sources__title {
  min-height: 54px;
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.35;
}
body#hv-inv-revenue .revenue-sources__text {
  margin-bottom: 0;
  color: #5d6268;
  font-size: 13px;
  line-height: 1.9;
}
body#hv-inv-revenue .revenue-sources__item--balancing .revenue-sources__text {
  color: rgba(255, 255, 255, 0.72);
}
body#hv-inv-revenue .revenue-sources__plus {
  color: #123A63;
  font-size: 24px;
  font-weight: 700;
}
body#hv-inv-revenue .revenue-sources__image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
body#hv-inv-revenue .revenue-sources__image picture {
  position: absolute;
  inset: 0;
  display: block;
}
body#hv-inv-revenue .revenue-sources__image picture,
body#hv-inv-revenue .revenue-sources__image img {
  width: 100%;
  height: 100%;
}
body#hv-inv-revenue .revenue-sources__image img {
  object-fit: cover;
}
body#hv-inv-revenue .cashflow-logic__formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.15fr;
  align-items: stretch;
  margin-bottom: 48px;
  gap: 12px;
}
body#hv-inv-revenue .cashflow-logic__block {
  padding: 26px 20px;
  border: 1px solid #dce0e5;
  background: #ffffff;
}
body#hv-inv-revenue .cashflow-logic__block--result {
  color: #ffffff;
  border-color: #123A63;
  background: #123A63;
}
body#hv-inv-revenue .cashflow-logic__label {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
}
body#hv-inv-revenue .cashflow-logic__detail {
  margin-bottom: 0;
  color: #6e7378;
  font-size: 12px;
  line-height: 1.7;
}
body#hv-inv-revenue .cashflow-logic__block--result .cashflow-logic__detail {
  color: rgba(255, 255, 255, 0.72);
}
body#hv-inv-revenue .cashflow-logic__operator {
  display: flex;
  align-items: center;
  color: #123A63;
  font-size: 24px;
  font-weight: 700;
}
body#hv-inv-revenue .cashflow-logic__checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
body#hv-inv-revenue .cashflow-logic__check {
  padding: 28px;
  background: #f5f6f8;
}
body#hv-inv-revenue .cashflow-logic__check-label {
  margin-bottom: 34px;
  color: #123A63;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body#hv-inv-revenue .cashflow-logic__check-title {
  margin-bottom: 12px;
  font-size: 18px;
}
body#hv-inv-revenue .cashflow-logic__check-text {
  margin-bottom: 0;
  color: #5d6268;
  font-size: 13px;
  line-height: 1.8;
}
body#hv-inv-revenue .index-simulator__layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 48px;
}
body#hv-inv-revenue .index-simulator__controls {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}
body#hv-inv-revenue .index-simulator__field + .index-simulator__field {
  margin-top: 30px;
}
body#hv-inv-revenue .index-simulator__field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
body#hv-inv-revenue .index-simulator__label {
  font-size: 13px;
  font-weight: 600;
}
body#hv-inv-revenue .index-simulator__value {
  color: #f5d25d;
  font-size: 15px;
  font-weight: 700;
}
body#hv-inv-revenue .index-simulator__range {
  width: 100%;
  accent-color: #f5b500;
}
body#hv-inv-revenue .index-simulator__result {
  min-width: 0;
}
body#hv-inv-revenue .index-simulator__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
body#hv-inv-revenue .index-simulator__metric {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}
body#hv-inv-revenue .index-simulator__metric-label {
  min-height: 34px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}
body#hv-inv-revenue .index-simulator__metric-value {
  margin-bottom: 0;
  color: #f5d25d;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
body#hv-inv-revenue .index-simulator__metric-value small {
  margin-left: 4px;
  font-size: 14px;
}
body#hv-inv-revenue .index-simulator__chart {
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  margin-top: 24px;
  padding: 24px 20px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  gap: 8px;
}
body#hv-inv-revenue .index-simulator__bar {
  position: relative;
  flex: 1 1 0;
  min-width: 8px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #7fa9d8 0%, #0C2A4D 100%);
}
body#hv-inv-revenue .index-simulator__bar span {
  position: absolute;
  right: 50%;
  bottom: -24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  transform: translateX(50%);
}
body#hv-inv-revenue .index-simulator__note {
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.8;
}
body#hv-inv-revenue .sensitivity__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 46px;
  gap: 22px;
}
body#hv-inv-revenue .sensitivity__card {
  padding: 32px;
  border: 1px solid #dce0e5;
  background: #ffffff;
}
body#hv-inv-revenue .sensitivity__card--base {
  color: #ffffff;
  border-color: #123A63;
  background: #123A63;
  transform: translateY(-14px);
}
body#hv-inv-revenue .sensitivity__label {
  margin-bottom: 36px;
  color: #123A63;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
body#hv-inv-revenue .sensitivity__card--base .sensitivity__label {
  color: #7fa9d8;
}
body#hv-inv-revenue .sensitivity__title {
  margin-bottom: 20px;
  font-size: 24px;
}
body#hv-inv-revenue .sensitivity__bar {
  height: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #edeff1;
}
body#hv-inv-revenue .sensitivity__bar span {
  display: block;
  height: 100%;
  background: #123A63;
}
body#hv-inv-revenue .sensitivity__card--base .sensitivity__bar {
  background: rgba(255, 255, 255, 0.18);
}
body#hv-inv-revenue .sensitivity__card--base .sensitivity__bar span {
  background: #f5d25d;
}
body#hv-inv-revenue .sensitivity__text {
  margin-bottom: 0;
  color: #5d6268;
  font-size: 13px;
  line-height: 1.9;
}
body#hv-inv-revenue .sensitivity__card--base .sensitivity__text {
  color: rgba(255, 255, 255, 0.72);
}
body#hv-inv-revenue .sensitivity__matrix {
  border-top: 1px solid #dce0e5;
}
body#hv-inv-revenue .sensitivity__matrix-head,
body#hv-inv-revenue .sensitivity__matrix-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.2fr;
}
body#hv-inv-revenue .sensitivity__matrix-head {
  color: #ffffff;
  background: #123A63;
}
body#hv-inv-revenue .sensitivity__matrix-head p,
body#hv-inv-revenue .sensitivity__matrix-row p {
  margin: 0;
  padding: 18px 22px;
  border-right: 1px solid #dce0e5;
  border-bottom: 1px solid #dce0e5;
  font-size: 13px;
  line-height: 1.7;
}
body#hv-inv-revenue .sensitivity__matrix-head p {
  border-color: rgba(255, 255, 255, 0.15);
  font-weight: 700;
}
body#hv-inv-revenue .operation-proof__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 80px;
}
body#hv-inv-revenue .operation-proof__image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}
body#hv-inv-revenue .operation-proof__image picture {
  position: absolute;
  inset: 0;
  display: block;
}
body#hv-inv-revenue .operation-proof__image picture,
body#hv-inv-revenue .operation-proof__image img {
  width: 100%;
  height: 100%;
}
body#hv-inv-revenue .operation-proof__image img {
  object-fit: cover;
  object-position: 32% center;
}
body#hv-inv-revenue .operation-proof__content .section-heading__title {
  margin-bottom: 28px;
}
body#hv-inv-revenue .operation-proof__lead {
  margin-bottom: 38px;
  color: #5d6268;
  font-size: 16px;
  line-height: 2;
}
body#hv-inv-revenue .operation-proof__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
body#hv-inv-revenue .operation-proof__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 20px 0;
  border-top: 1px solid #dce0e5;
  gap: 18px;
}
body#hv-inv-revenue .operation-proof__item > span {
  color: #123A63;
  font-size: 12px;
  font-weight: 700;
}
body#hv-inv-revenue .operation-proof__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
body#hv-inv-revenue .operation-proof__item p {
  margin-bottom: 0;
  color: #5d6268;
  font-size: 13px;
  line-height: 1.7;
}
body#hv-inv-revenue .risk-map__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
body#hv-inv-revenue .risk-map__card {
  position: relative;
  min-height: 270px;
  padding: 32px;
  border: 1px solid #dce0e5;
  overflow: hidden;
  background: #ffffff;
}
body#hv-inv-revenue .risk-map__card::after {
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid #dce0e5;
  border-radius: 50%;
  content: "";
}
body#hv-inv-revenue .risk-map__type {
  margin-bottom: 44px;
  color: #123A63;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
body#hv-inv-revenue .risk-map__title {
  margin-bottom: 12px;
  font-size: 23px;
}
body#hv-inv-revenue .risk-map__text {
  margin-bottom: 24px;
  color: #5d6268;
  font-size: 14px;
  line-height: 1.8;
}
body#hv-inv-revenue .risk-map__action {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.7;
}
body#hv-inv-revenue .risk-map__action span {
  display: inline-flex;
  margin-right: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: #123A63;
  font-size: 10px;
  font-weight: 700;
}
body#hv-inv-revenue .consultation-flow__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 70px;
}
body#hv-inv-revenue .consultation-flow__content .section-heading__eyebrow {
  color: #7fa9d8;
}
body#hv-inv-revenue .consultation-flow__content .section-heading__title {
  margin-bottom: 26px;
}
body#hv-inv-revenue .consultation-flow__lead {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 2;
}
body#hv-inv-revenue .consultation-flow__steps {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
body#hv-inv-revenue .consultation-flow__step {
  display: grid;
  grid-template-columns: 46px 1fr;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  gap: 18px;
}
body#hv-inv-revenue .consultation-flow__step > span {
  color: #f5d25d;
  font-size: 12px;
  font-weight: 700;
}
body#hv-inv-revenue .consultation-flow__step strong {
  display: block;
  margin-bottom: 4px;
}
body#hv-inv-revenue .consultation-flow__step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}
body#hv-inv-revenue .consultation-flow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#hv-inv-revenue .consultation-flow__image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}
body#hv-inv-revenue .consultation-flow__image picture {
  position: absolute;
  inset: 0;
  display: block;
}
body#hv-inv-revenue .consultation-flow__image picture,
body#hv-inv-revenue .consultation-flow__image img {
  width: 100%;
  height: 100%;
}
body#hv-inv-revenue .consultation-flow__image img {
  object-fit: cover;
}
body#hv-inv-revenue .revenue-faq__layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 90px;
}
body#hv-inv-revenue .revenue-faq__heading {
  position: sticky;
  top: 30px;
  align-self: start;
}
body#hv-inv-revenue .revenue-faq__heading .section-heading__title {
  margin-bottom: 24px;
  font-size: 42px;
}
body#hv-inv-revenue .revenue-faq__lead {
  margin-bottom: 24px;
  color: #5d6268;
  font-size: 14px;
  line-height: 1.9;
}
body#hv-inv-revenue .revenue-faq__item {
  border-top: 1px solid #dce0e5;
}
body#hv-inv-revenue .revenue-faq__item:last-child {
  border-bottom: 1px solid #dce0e5;
}
body#hv-inv-revenue .revenue-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 26px;
  align-items: center;
  padding: 26px 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  gap: 14px;
}
body#hv-inv-revenue .revenue-faq__question::-webkit-details-marker {
  display: none;
}
body#hv-inv-revenue .revenue-faq__question::after {
  width: 12px;
  height: 12px;
  border-right: 2px solid #123A63;
  border-bottom: 2px solid #123A63;
  content: "";
  transform: rotate(45deg) translateY(-4px);
  transition: transform 0.2s ease;
}
body#hv-inv-revenue .revenue-faq__item[open] .revenue-faq__question::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
body#hv-inv-revenue .revenue-faq__question > span,
body#hv-inv-revenue .revenue-faq__answer > span {
  color: #123A63;
  font-size: 15px;
  font-weight: 700;
}
body#hv-inv-revenue .revenue-faq__answer {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 0 48px 28px 8px;
  gap: 14px;
}
body#hv-inv-revenue .revenue-faq__answer p {
  margin-bottom: 0;
  color: #5d6268;
  font-size: 14px;
  line-height: 1.9;
}
body#hv-inv-revenue .related-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
body#hv-inv-revenue .related-guides__card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid #dce0e5;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-revenue .related-guides__card:hover {
    border-color: #123A63;
    transform: translateY(-4px);
  }
}
body#hv-inv-revenue .related-guides__number {
  margin-bottom: 58px;
  color: #123A63;
  font-size: 12px;
  font-weight: 700;
}
body#hv-inv-revenue .related-guides__title {
  margin-bottom: 12px;
  font-size: 21px;
}
body#hv-inv-revenue .related-guides__text {
  max-width: 250px;
  margin-bottom: 0;
  color: #5d6268;
  font-size: 13px;
  line-height: 1.8;
}
body#hv-inv-revenue .related-guides__arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: #123A63;
  font-size: 22px;
}
body#hv-inv-revenue .final-revenue-cta {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #ffffff;
  background: #0b1f35;
}
body#hv-inv-revenue .final-revenue-cta__media,
body#hv-inv-revenue .final-revenue-cta__shade {
  position: absolute;
  inset: 0;
}
body#hv-inv-revenue .final-revenue-cta__media picture,
body#hv-inv-revenue .final-revenue-cta__media img {
  width: 100%;
  height: 100%;
}
body#hv-inv-revenue .final-revenue-cta__media img {
  object-fit: cover;
  object-position: center;
}
body#hv-inv-revenue .final-revenue-cta__shade {
  background: linear-gradient(90deg, rgba(4, 15, 27, 0.94) 0%, rgba(4, 15, 27, 0.68) 56%, rgba(4, 15, 27, 0.3) 100%);
}
body#hv-inv-revenue .final-revenue-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
  padding-top: 80px;
  padding-bottom: 80px;
}
body#hv-inv-revenue .final-revenue-cta__eyebrow {
  margin-bottom: 20px;
  color: #7fa9d8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
body#hv-inv-revenue .final-revenue-cta__title {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}
body#hv-inv-revenue .final-revenue-cta__lead {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 2;
}
body#hv-inv-revenue .final-revenue-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#hv-inv-revenue .final-revenue-cta__note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}
body#hv-inv-revenue .mobile-cta {
  display: none;
}
@media (max-width: 1100px) {
  body#hv-inv-revenue .revenue-hero__inner {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }
  body#hv-inv-revenue .revenue-sources__visual,
  body#hv-inv-revenue .operation-proof__layout,
  body#hv-inv-revenue .consultation-flow__layout {
    gap: 42px;
  }
  body#hv-inv-revenue .revenue-sources__stack {
    grid-template-columns: 1fr;
  }
  body#hv-inv-revenue .revenue-sources__plus {
    display: none;
  }
  body#hv-inv-revenue .revenue-sources__item,
  body#hv-inv-revenue .revenue-sources__item--balancing {
    min-height: auto;
    transform: none;
  }
  body#hv-inv-revenue .revenue-sources__tag {
    margin-bottom: 20px;
  }
  body#hv-inv-revenue .cashflow-logic__formula {
    grid-template-columns: 1fr 1fr;
  }
  body#hv-inv-revenue .cashflow-logic__operator {
    display: none;
  }
  body#hv-inv-revenue .cashflow-logic__checks {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  body#hv-inv-revenue .revenue-hero {
    min-height: 720px;
  }
  body#hv-inv-revenue .revenue-hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: 720px;
    padding-top: 70px;
    gap: 30px;
  }
  body#hv-inv-revenue .revenue-hero__summary {
    display: none;
  }
  body#hv-inv-revenue .revenue-hero__shade {
    background: linear-gradient(90deg, rgba(3, 15, 28, 0.94) 0%, rgba(3, 15, 28, 0.62) 100%);
  }
  body#hv-inv-revenue .decision-intro__grid,
  body#hv-inv-revenue .sensitivity__grid,
  body#hv-inv-revenue .related-guides__grid {
    grid-template-columns: 1fr;
  }
  body#hv-inv-revenue .decision-intro__card {
    min-height: auto;
  }
  body#hv-inv-revenue .decision-intro__number,
  body#hv-inv-revenue .related-guides__number {
    margin-bottom: 28px;
  }
  body#hv-inv-revenue .revenue-sources__visual,
  body#hv-inv-revenue .operation-proof__layout,
  body#hv-inv-revenue .consultation-flow__layout,
  body#hv-inv-revenue .revenue-faq__layout {
    grid-template-columns: 1fr;
  }
  body#hv-inv-revenue .revenue-sources__image {
    order: -1;
    min-height: 420px;
  }
  body#hv-inv-revenue .index-simulator__layout {
    grid-template-columns: 1fr;
  }
  body#hv-inv-revenue .operation-proof__image,
  body#hv-inv-revenue .consultation-flow__image {
    min-height: 480px;
  }
  body#hv-inv-revenue .consultation-flow__image {
    order: -1;
  }
  body#hv-inv-revenue .revenue-faq__heading {
    position: static;
  }
  body#hv-inv-revenue .risk-map__grid {
    grid-template-columns: 1fr;
  }
  body#hv-inv-revenue .sensitivity__card--base {
    transform: none;
  }
}
@media (max-width: 568px) {
  body#hv-inv-revenue {
    padding-bottom: 70px;
  }
  body#hv-inv-revenue .revenue-hero {
    min-height: 690px;
  }
  body#hv-inv-revenue .revenue-hero__media img {
    object-position: 62% center;
  }
  body#hv-inv-revenue .revenue-hero__inner {
    min-height: 690px;
    padding-top: 70px;
    padding-bottom: 56px;
  }
  body#hv-inv-revenue .revenue-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
  }
  body#hv-inv-revenue .revenue-hero__label {
    font-size: 11px;
  }
  body#hv-inv-revenue .revenue-hero__title {
    font-size: 42px;
  }
  body#hv-inv-revenue .revenue-hero__lead {
    font-size: 15px;
    line-height: 1.85;
  }
  body#hv-inv-revenue .revenue-hero__actions {
    display: grid;
  }
  body#hv-inv-revenue .decision-intro__card,
  body#hv-inv-revenue .revenue-sources__item,
  body#hv-inv-revenue .cashflow-logic__check,
  body#hv-inv-revenue .sensitivity__card,
  body#hv-inv-revenue .risk-map__card,
  body#hv-inv-revenue .related-guides__card {
    padding: 24px;
  }
  body#hv-inv-revenue .revenue-sources__visual {
    gap: 20px;
  }
  body#hv-inv-revenue .revenue-sources__image,
  body#hv-inv-revenue .operation-proof__image,
  body#hv-inv-revenue .consultation-flow__image {
    min-height: 300px;
  }
  body#hv-inv-revenue .cashflow-logic__formula,
  body#hv-inv-revenue .cashflow-logic__checks {
    grid-template-columns: 1fr;
  }
  body#hv-inv-revenue .index-simulator__controls {
    padding: 22px;
  }
  body#hv-inv-revenue .index-simulator__metrics {
    grid-template-columns: 1fr;
  }
  body#hv-inv-revenue .index-simulator__metric-label {
    min-height: auto;
  }
  body#hv-inv-revenue .index-simulator__chart {
    min-height: 190px;
    padding-right: 8px;
    padding-left: 8px;
    gap: 4px;
  }
  body#hv-inv-revenue .index-simulator__bar span {
    display: none;
  }
  body#hv-inv-revenue .sensitivity__matrix-head {
    display: none;
  }
  body#hv-inv-revenue .sensitivity__matrix-row {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #dce0e5;
  }
  body#hv-inv-revenue .sensitivity__matrix-row p {
    display: grid;
    grid-template-columns: 110px 1fr;
    padding: 7px 0;
    border: 0;
    gap: 12px;
  }
  body#hv-inv-revenue .sensitivity__matrix-row p::before {
    content: attr(data-label);
    color: #123A63;
    font-size: 11px;
    font-weight: 700;
  }
  body#hv-inv-revenue .operation-proof__item,
  body#hv-inv-revenue .consultation-flow__step {
    grid-template-columns: 34px 1fr;
  }
  body#hv-inv-revenue .revenue-faq__heading .section-heading__title {
    font-size: 34px;
  }
  body#hv-inv-revenue .revenue-faq__question {
    grid-template-columns: 26px 1fr 18px;
    padding: 22px 0;
    font-size: 14px;
    gap: 10px;
  }
  body#hv-inv-revenue .revenue-faq__answer {
    grid-template-columns: 26px 1fr;
    padding: 0 0 24px;
    gap: 10px;
  }
  body#hv-inv-revenue .final-revenue-cta {
    min-height: 620px;
  }
  body#hv-inv-revenue .final-revenue-cta__media img {
    object-position: 62% center;
  }
  body#hv-inv-revenue .final-revenue-cta__inner {
    min-height: 620px;
  }
  body#hv-inv-revenue .final-revenue-cta__title {
    font-size: 38px;
  }
  body#hv-inv-revenue .final-revenue-cta__actions {
    display: grid;
    width: 100%;
  }
  body#hv-inv-revenue .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
    gap: 8px;
  }
  body#hv-inv-revenue .mobile-cta__secondary,
  body#hv-inv-revenue .mobile-cta__primary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }
  body#hv-inv-revenue .mobile-cta__secondary {
    border: 1px solid #123A63;
    color: #123A63;
  }
  body#hv-inv-revenue .mobile-cta__primary {
    color: #16181c;
    background: #f5b500;
  }
}

/* ===== PHOTO HARMONY（§5-5 写真をテーマ色と調和・2026-07-03） ===== */
main img { filter: saturate(0.78); }
main figure { position: relative; }
main figure::after {
  content: ""; position: absolute; inset: 0;
  background: #0C2A4D; opacity: 0.14; mix-blend-mode: color; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { main img { transition: none; } }

/* ===== POSTER GRAMMAR（サムネ文法の移植・2026-07-03 v2） =====
   サムネ＝明朝見出し×英字キッカー字間×金/テーマの点使い。同じ声にそろえる。 */
main h1, main h2, main h3,
main [class*="__title"],
main [class*="-hero__title"] {
  font-family: 'Yu Mincho','Hiragino Mincho ProN','MS Mincho',serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
main [class*="__eyebrow"], main [class*="__en"] {
  font-family: 'Barlow', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
main [class*="__eyebrow"]::after {
  content: ""; display: inline-block; vertical-align: middle;
  width: 34px; height: 2px; margin-left: 14px;
  background: #E3B94F;
}
/* 大数字・番号はサムネ同様に細アウトライン風の品を（Barlow） */
main [class*="__number"] {
  font-family: 'Barlow', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
}
/* カード類：影を抑えhoverで浮く（§8の上質ホバー） */
@media (hover: hover) and (pointer: fine) {
  main [class*="card"]:hover { transform: translateY(-4px); transition: transform 0.25s ease; }
}
@media (prefers-reduced-motion: reduce) {
  main [class*="card"]:hover { transform: none; }
}


/* ===== BATCHB LP図解表示型オーバーライド（image-design-system v1.1 §7-2）2026-07-03 =====
   図解スロット限定: height:auto/contain・アスペクト比契約・写真調和フィルタ解除・ベール/装飾/キャプション重畳の解除。
   写真スロット（ヒーロー/CTA帯/longevity-tech背景カード）は不変更。 ===== */
body#hv-inv-revenue .revenue-sources__image,body#hv-inv-revenue .operation-proof__image,body#hv-inv-revenue .consultation-flow__image{min-height:0}
body#hv-inv-revenue .revenue-sources__image picture,body#hv-inv-revenue .operation-proof__image picture,body#hv-inv-revenue .consultation-flow__image picture{position:static;display:block;height:auto}
body#hv-inv-revenue .revenue-sources__image img,body#hv-inv-revenue .operation-proof__image img,body#hv-inv-revenue .consultation-flow__image img{width:100%;height:auto;min-height:0;max-height:none;position:static;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;}
body#hv-inv-revenue .revenue-sources__image img,body#hv-inv-revenue .consultation-flow__image img{aspect-ratio:3/2}
body#hv-inv-revenue .operation-proof__image img{aspect-ratio:1200/488}
main figure:has(img[src$="/revenue/detail.jpg"])::after,main figure:has(img[src$="/revenue/operation.jpg"])::after,main figure:has(img[src$="/revenue/meeting.jpg"])::after{content:none}

/* ===== UPLIFT batch3 hv navy (uplift_20260705) — 下層格上げ再開指示書 2026-07-05 ===== */
:root {
  --u-theme: #0C2A4D;
  --u-deep: #071A31;
  --u-tint: #F2F5F9;
  --u-gold: #F5B500;
  --u-goldline: #E3B94F;
  --u-ink: #16181C;
  --u-sub: #5A6270;
  --u-border: #E2E5E8;
}

/* ---- 基礎リズム / 見出し / リンク ---- */
body#hv-inv-revenue .skip-link { background: var(--u-deep); }
body#hv-inv-revenue .section { padding: 96px 0; }
body#hv-inv-revenue .section--tint { background: var(--u-tint); }
body#hv-inv-revenue .section--dark { background: var(--u-theme); }
body#hv-inv-revenue .section-heading { margin-bottom: 48px; }
body#hv-inv-revenue .section-heading__eyebrow { margin-bottom: 16px; color: var(--u-theme); font-size: 13px; letter-spacing: 0.28em; }
body#hv-inv-revenue .section-heading__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
body#hv-inv-revenue .section-heading__lead { color: var(--u-sub); font-size: 18px; line-height: 1.9; }
body#hv-inv-revenue .section-heading--light .section-heading__eyebrow { color: var(--u-goldline); }
body#hv-inv-revenue .section-heading--light .section-heading__lead { color: rgba(255, 255, 255, 0.78); }
body#hv-inv-revenue .text-link { color: var(--u-theme); text-decoration: underline; }
body#hv-inv-revenue main a:not([class]) { color: var(--u-theme); text-decoration: underline; }
body#hv-inv-revenue .notice-box { border-left-color: var(--u-theme); border-radius: 6px; }
body#hv-inv-revenue .notice-box__text { color: var(--u-sub); font-size: 13px; }

/* ---- ボタン（主CTA=金 / 副=白アウトライン） ---- */
body#hv-inv-revenue .button { min-height: 56px; padding: 16px 32px; border-radius: 999px; font-size: 16px; }
body#hv-inv-revenue .button--accent { color: var(--u-ink); background: var(--u-gold); box-shadow: 0 10px 26px rgba(245, 181, 0, 0.24); }
body#hv-inv-revenue .button--outline-white { border-color: rgba(255, 255, 255, 0.6); color: #fff; background: transparent; }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-revenue .button--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(245, 181, 0, 0.32); filter: brightness(0.92); }
  body#hv-inv-revenue .button--outline-white:hover { background: rgba(255, 255, 255, 0.08); }
}
body#hv-inv-revenue .button:focus-visible { outline: 2px solid var(--u-theme); outline-offset: 3px; }
body#hv-inv-revenue :is(.revenue-hero, .index-simulator, .consultation-flow, .final-revenue-cta) .button:focus-visible { outline-color: #fff; }

/* ---- ヒーロー（--u-deepグラデ×白明朝31px×goldline eyebrowアニメ） ---- */
body#hv-inv-revenue .revenue-hero { background: var(--u-deep); }
body#hv-inv-revenue .revenue-hero__shade {
  background: linear-gradient(100deg, rgba(7, 26, 49, 0.96) 0%, rgba(12, 42, 77, 0.82) 45%, rgba(7, 26, 49, 0.55) 100%);
}
body#hv-inv-revenue .revenue-hero__eyebrow { color: var(--u-goldline); font-size: 13px; letter-spacing: 0.28em; }
body#hv-inv-revenue .revenue-hero__eyebrow::before {
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 0 16px;
  background: var(--u-goldline);
  content: "";
}
body#hv-inv-revenue .revenue-hero__label { border-color: rgba(227, 185, 79, 0.55); border-radius: 999px; background: rgba(7, 26, 49, 0.45); font-size: 13px; }
body#hv-inv-revenue .revenue-hero__title {
  margin-bottom: 24px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
body#hv-inv-revenue .revenue-hero__title span { color: var(--u-gold); }
body#hv-inv-revenue .revenue-hero__lead { color: #DCE6F2; font-size: 18px; line-height: 1.9; }
body#hv-inv-revenue .revenue-hero__note { color: rgba(255, 255, 255, 0.66); font-size: 13px; }
body#hv-inv-revenue .revenue-hero__summary { border-color: rgba(227, 185, 79, 0.28); border-radius: 12px; background: rgba(7, 26, 49, 0.72); }
body#hv-inv-revenue .revenue-hero__summary-title { color: var(--u-goldline); font-size: 13px; }
body#hv-inv-revenue .revenue-hero__summary-item span { color: var(--u-goldline); font-size: 13px; }
@keyframes uplift24Fade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body#hv-inv-revenue .revenue-hero__eyebrow { animation: uplift24Fade 0.6s ease 0s both; }
body#hv-inv-revenue .revenue-hero__label { animation: uplift24Fade 0.6s ease 0.06s both; }
body#hv-inv-revenue .revenue-hero__title { animation: uplift24Fade 0.6s ease 0.12s both; }
body#hv-inv-revenue .revenue-hero__lead { animation: uplift24Fade 0.6s ease 0.24s both; }
body#hv-inv-revenue .revenue-hero__actions { animation: uplift24Fade 0.6s ease 0.36s both; }
body#hv-inv-revenue .revenue-hero__note { animation: uplift24Fade 0.6s ease 0.48s both; }
body#hv-inv-revenue .revenue-hero__summary { animation: uplift24Fade 0.6s ease 0.48s both; }
@media (prefers-reduced-motion: reduce) {
  body#hv-inv-revenue .revenue-hero__eyebrow,
  body#hv-inv-revenue .revenue-hero__label,
  body#hv-inv-revenue .revenue-hero__title,
  body#hv-inv-revenue .revenue-hero__lead,
  body#hv-inv-revenue .revenue-hero__actions,
  body#hv-inv-revenue .revenue-hero__note,
  body#hv-inv-revenue .revenue-hero__summary { animation: none; }
}

/* ---- 前提の置き方（白地カード） ---- */
body#hv-inv-revenue .decision-intro__card {
  border: 1px solid var(--u-border);
  border-top: 1px solid var(--u-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(7, 26, 49, 0.05);
}
body#hv-inv-revenue .decision-intro__number { color: var(--u-theme); font-size: 13px; }
body#hv-inv-revenue .decision-intro__title { font-size: 20px; }
body#hv-inv-revenue .decision-intro__text { color: var(--u-sub); font-size: 16px; line-height: 1.8; }

/* ---- 収益源（淡地） ---- */
body#hv-inv-revenue .revenue-sources__item { border-color: var(--u-border); border-radius: 12px; }
body#hv-inv-revenue .revenue-sources__item--balancing { border-color: var(--u-theme); background: var(--u-theme); }
body#hv-inv-revenue .revenue-sources__tag { color: var(--u-theme); background: var(--u-tint); font-size: 13px; }
body#hv-inv-revenue .revenue-sources__item--balancing .revenue-sources__tag { color: var(--u-goldline); background: rgba(255, 255, 255, 0.1); }
body#hv-inv-revenue .revenue-sources__title { font-size: 20px; }
body#hv-inv-revenue .revenue-sources__text { color: var(--u-sub); font-size: 13px; line-height: 1.8; }
body#hv-inv-revenue .revenue-sources__item--balancing .revenue-sources__text { color: rgba(255, 255, 255, 0.78); }
body#hv-inv-revenue .revenue-sources__plus { color: var(--u-theme); }

/* ---- キャッシュフロー分解 ---- */
body#hv-inv-revenue .cashflow-logic__block { border-color: var(--u-border); border-radius: 6px; }
body#hv-inv-revenue .cashflow-logic__block--result { border-color: var(--u-theme); background: var(--u-theme); }
body#hv-inv-revenue .cashflow-logic__label { font-size: 18px; }
body#hv-inv-revenue .cashflow-logic__detail { color: var(--u-sub); font-size: 13px; }
body#hv-inv-revenue .cashflow-logic__block--result .cashflow-logic__detail { color: rgba(255, 255, 255, 0.78); }
body#hv-inv-revenue .cashflow-logic__operator { color: var(--u-theme); }
body#hv-inv-revenue .cashflow-logic__check { border: 1px solid var(--u-border); border-radius: 12px; background: var(--u-tint); }
body#hv-inv-revenue .cashflow-logic__check-label { color: var(--u-theme); font-size: 13px; }
body#hv-inv-revenue .cashflow-logic__check-title { font-size: 20px; }
body#hv-inv-revenue .cashflow-logic__check-text { color: var(--u-sub); font-size: 13px; line-height: 1.8; }

/* ---- 指数モデル（濃色バンド1） ---- */
body#hv-inv-revenue .index-simulator__controls { border-color: rgba(227, 185, 79, 0.28); border-radius: 12px; background: rgba(255, 255, 255, 0.05); }
body#hv-inv-revenue .index-simulator__label { font-size: 13px; }
body#hv-inv-revenue .index-simulator__value { color: var(--u-goldline); font-size: 16px; }
body#hv-inv-revenue .index-simulator__range:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
body#hv-inv-revenue .index-simulator__metric { border-color: rgba(255, 255, 255, 0.16); border-radius: 12px; }
body#hv-inv-revenue .index-simulator__metric-label { color: rgba(255, 255, 255, 0.72); font-size: 13px; }
body#hv-inv-revenue .index-simulator__metric-value {
  color: #fff;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 31px;
  letter-spacing: 0.02em;
}
body#hv-inv-revenue .index-simulator__metric-value small { font-size: 13px; }
body#hv-inv-revenue .index-simulator__bar { background: linear-gradient(180deg, rgba(227, 185, 79, 0.9) 0%, rgba(227, 185, 79, 0.35) 100%); }
body#hv-inv-revenue .index-simulator__bar span { color: rgba(255, 255, 255, 0.66); font-size: 11px; }
body#hv-inv-revenue .index-simulator__note { color: rgba(255, 255, 255, 0.66); font-size: 13px; }

/* ---- 感度分析 ---- */
body#hv-inv-revenue .sensitivity__card { border-color: var(--u-border); border-radius: 12px; }
body#hv-inv-revenue .sensitivity__card--base { border-color: var(--u-theme); background: var(--u-theme); }
body#hv-inv-revenue .sensitivity__label { color: var(--u-theme); font-size: 13px; }
body#hv-inv-revenue .sensitivity__card--base .sensitivity__label { color: var(--u-goldline); }
body#hv-inv-revenue .sensitivity__title { font-size: 20px; }
body#hv-inv-revenue .sensitivity__bar span { background: var(--u-theme); }
body#hv-inv-revenue .sensitivity__card--base .sensitivity__bar span { background: var(--u-goldline); }
body#hv-inv-revenue .sensitivity__text { color: var(--u-sub); font-size: 13px; }
body#hv-inv-revenue .sensitivity__card--base .sensitivity__text { color: rgba(255, 255, 255, 0.78); }
body#hv-inv-revenue .sensitivity__matrix { border-top-color: var(--u-border); }
body#hv-inv-revenue .sensitivity__matrix-head { background: var(--u-theme); }
body#hv-inv-revenue .sensitivity__matrix-head p,
body#hv-inv-revenue .sensitivity__matrix-row p { border-right-color: var(--u-border); border-bottom-color: var(--u-border); }
body#hv-inv-revenue .sensitivity__matrix-head p { border-right-color: rgba(255, 255, 255, 0.15); border-bottom-color: rgba(255, 255, 255, 0.15); }

/* ---- 運用前提（淡地・図解スロット.operation-proof__imageは不干渉） ---- */
body#hv-inv-revenue .operation-proof__lead { color: var(--u-sub); font-size: 18px; line-height: 1.9; }
body#hv-inv-revenue .operation-proof__item { border-top-color: var(--u-border); }
body#hv-inv-revenue .operation-proof__item > span { color: var(--u-theme); font-size: 13px; }
body#hv-inv-revenue .operation-proof__item strong { font-size: 16px; }
body#hv-inv-revenue .operation-proof__item p { color: var(--u-sub); font-size: 13px; }

/* ---- リスクマップ ---- */
body#hv-inv-revenue .risk-map__card { border-color: var(--u-border); border-radius: 12px; }
body#hv-inv-revenue .risk-map__card::after { border-color: var(--u-border); }
body#hv-inv-revenue .risk-map__type { color: var(--u-theme); font-size: 13px; }
body#hv-inv-revenue .risk-map__title { font-size: 20px; }
body#hv-inv-revenue .risk-map__text { color: var(--u-sub); font-size: 16px; line-height: 1.8; }
body#hv-inv-revenue .risk-map__action { font-size: 13px; }
body#hv-inv-revenue .risk-map__action span { background: var(--u-theme); font-size: 11px; }

/* ---- 試算プロセス（濃色バンド2・図解スロット.consultation-flow__imageは不干渉） ---- */
body#hv-inv-revenue .consultation-flow__content .section-heading__eyebrow { color: var(--u-goldline); }
body#hv-inv-revenue .consultation-flow__lead { color: rgba(255, 255, 255, 0.78); font-size: 18px; line-height: 1.9; }
body#hv-inv-revenue .consultation-flow__step { border-top-color: rgba(255, 255, 255, 0.16); }
body#hv-inv-revenue .consultation-flow__step > span { color: var(--u-goldline); font-size: 13px; }
body#hv-inv-revenue .consultation-flow__step strong { font-size: 16px; }
body#hv-inv-revenue .consultation-flow__step p { color: rgba(255, 255, 255, 0.72); font-size: 13px; }

/* ---- FAQ ---- */
body#hv-inv-revenue .revenue-faq__heading .section-heading__title { font-size: 25px; }
body#hv-inv-revenue .revenue-faq__lead { color: var(--u-sub); font-size: 16px; }
body#hv-inv-revenue .revenue-faq__item { border-top-color: var(--u-border); }
body#hv-inv-revenue .revenue-faq__item:last-child { border-bottom-color: var(--u-border); }
body#hv-inv-revenue .revenue-faq__question { font-size: 16px; }
body#hv-inv-revenue .revenue-faq__question::after { border-right-color: var(--u-theme); border-bottom-color: var(--u-theme); }
body#hv-inv-revenue .revenue-faq__question > span,
body#hv-inv-revenue .revenue-faq__answer > span { color: var(--u-theme); font-size: 16px; }
body#hv-inv-revenue .revenue-faq__answer p { color: var(--u-sub); font-size: 16px; line-height: 1.8; }

/* ---- 関連ガイド（淡地） ---- */
body#hv-inv-revenue .related-guides__card { border-color: var(--u-border); border-radius: 12px; box-shadow: 0 6px 18px rgba(7, 26, 49, 0.05); }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-revenue .related-guides__card:hover { border-color: var(--u-theme); }
}
body#hv-inv-revenue .related-guides__number { color: var(--u-theme); font-size: 13px; }
body#hv-inv-revenue .related-guides__title { font-size: 20px; }
body#hv-inv-revenue .related-guides__text { color: var(--u-sub); font-size: 13px; }
body#hv-inv-revenue .related-guides__arrow { color: var(--u-theme); }

/* ---- 最終CTA（濃色締めバンド） ---- */
body#hv-inv-revenue .final-revenue-cta { background: var(--u-deep); }
body#hv-inv-revenue .final-revenue-cta__shade {
  background: linear-gradient(100deg, rgba(7, 26, 49, 0.95) 0%, rgba(7, 26, 49, 0.84) 50%, rgba(12, 42, 77, 0.55) 100%);
}
body#hv-inv-revenue .final-revenue-cta__eyebrow { color: var(--u-goldline); font-size: 13px; letter-spacing: 0.28em; }
body#hv-inv-revenue .final-revenue-cta__eyebrow::before {
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 0 16px;
  background: var(--u-goldline);
  content: "";
}
body#hv-inv-revenue .final-revenue-cta__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
body#hv-inv-revenue .final-revenue-cta__lead { color: rgba(255, 255, 255, 0.82); font-size: 18px; line-height: 1.9; }
body#hv-inv-revenue .final-revenue-cta__note { color: rgba(255, 255, 255, 0.66); font-size: 13px; }

/* ---- レスポンシブ（96→48pxリズム / タイプスケール） ---- */
@media (max-width: 900px) {
  body#hv-inv-revenue .section { padding: 48px 0; }
}
@media (max-width: 568px) {
  body#hv-inv-revenue .section { padding: 48px 0; }
  body#hv-inv-revenue .section-heading { margin-bottom: 32px; }
  body#hv-inv-revenue .section-heading__eyebrow { font-size: 13px; }
  body#hv-inv-revenue .section-heading__title { font-size: 20px; }
  body#hv-inv-revenue .section-heading__lead { font-size: 16px; }
  body#hv-inv-revenue .revenue-hero__title { font-size: 25px; line-height: 1.6; }
  body#hv-inv-revenue .revenue-hero__lead { font-size: 16px; }
  body#hv-inv-revenue .revenue-faq__heading .section-heading__title { font-size: 20px; }
  body#hv-inv-revenue .final-revenue-cta__title { font-size: 20px; }
  body#hv-inv-revenue .final-revenue-cta__lead { font-size: 16px; }
  body#hv-inv-revenue .index-simulator__metric-value { font-size: 25px; }
  body#hv-inv-revenue .mobile-cta__secondary { border-color: var(--u-theme); color: var(--u-theme); }
  body#hv-inv-revenue .mobile-cta__primary { color: var(--u-ink); background: var(--u-gold); }
}

/* ===== HEADER GREEN UNIFY addon (uplift_20260704 option) — headercolor_20260704決定の横展開。
   hv-inv-revenue は配備時に各ページのbody idへ置換。ヘッダー構造は不変更・配色のみ緑固定 ===== */
body#hv-inv-revenue .header__actions { background: #1E8A58; }
body#hv-inv-revenue .sp-menu__button { background: #0F4C30; box-shadow: 0 10px 28px rgba(15, 76, 48, 0.28); }
body#hv-inv-revenue .sp-menu__panel { background: rgba(15, 76, 48, 0.98); }
body#hv-inv-revenue .header__lang-link.is-current { background: #EDF6F1; }
body#hv-inv-revenue .header__lang-button:focus-visible,
body#hv-inv-revenue .header__lang-link:focus-visible,
body#hv-inv-revenue .header__action-link:focus-visible,
body#hv-inv-revenue .header__nav-link:focus-visible,
body#hv-inv-revenue .header__logo:focus-visible { outline-color: #1E8A58; }
@media (hover: hover) and (pointer: fine) {
  body#hv-inv-revenue .header__lang-button:hover { border-color: #1E8A58; }
  body#hv-inv-revenue .header__lang-link:hover { background: #EDF6F1; }
  body#hv-inv-revenue .header__nav-link:hover { color: #1E8A58; }
}
