.skipLink {
  position: absolute;
  left: 8px;
  top: -64px;
  z-index: 100;
  padding: 8px 16px;
  background: #1F2933;
  color: #FFFFFF;
  font-weight: 600;
  transition: top 0.15s ease;
}
.skipLink:focus { top: 8px; }

.sectionHeader-sectionHeaderCenter {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}
.sectionTitle {
  font-size: clamp(1.75rem, 1.15rem + 2.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1F2933;
}
.sectionSubhead {
  margin-top: 16px;
  color: #4B5563;
  font-size: 1.0625rem;
}

.eyebrow-benefitIndex {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E30613;
}

.button-ghostButton-navAccess,
.button-primaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  background: #F5F7FB;
  color: #1F2933;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.button-primaryButton { background: #E02030; color: #FFFFFF; }
.button-primaryButton:hover { background: #B00020; }
.button-ghostButton-navAccess { background: #F5F7FB; color: #1F2933; }
.button-ghostButton-navAccess:hover { color: #E30613; }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1F2933;
}
.field input,
.field textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 16px;
  font-family: inherit;
  font-size: 1rem;
  color: #1F2933;
  background: #FFFFFF;
  border: 0;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #9CA3AF; }

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid #EEF1F6;
}
.container-siteHeaderInner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding-block: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brandLogo {
  height: 88px;
  width: auto;
}
.headerActions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.navLangMobile {
  display: none;
  text-align: center;
}
.langSelector--header {
  flex: none;
  background: #F8FAFC;
}
.langSelector--nav {
  margin: 10px auto 4px;
}

.mainNav {
  display: flex;
  align-items: center;
}
.navList {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navList > li { position: relative; }
.navList a,
.navGroupTrigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1F2933;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.navList a:hover,
.navGroupTrigger:hover,
.navList a.isActive,
.navGroupTrigger.isActive { color: #E30613; }

.navGroupArrow {
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.15s ease;
}
.navGroup[data-open="true"] .navGroupArrow {
  transform: translateY(1px) rotate(225deg);
}
.navSubmenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  display: none;
  flex-direction: column;
  min-width: 200px;
  padding: 8px 0;
  background: #FFFFFF;
  border: 1px solid #EEF1F6;
}
.navGroup[data-open="true"] .navSubmenu { display: flex; }
.navSubmenu a { width: 100%; padding: 10px 18px; }

.button-ghostButton-navAccess {
  flex: none;
  padding: 8px 16px;
}

.navToggle {
  box-sizing: border-box;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  flex: none;
  color: #1F2933;
}
.navToggleIcon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}
.navToggleBar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.navToggleText {
  font-size: 0.9375rem;
  font-weight: 600;
}
.navToggle[aria-expanded="true"] .navToggleBar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navToggle[aria-expanded="true"] .navToggleBar:nth-child(2) {
  opacity: 0;
}
.navToggle[aria-expanded="true"] .navToggleBar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.marker-verticalMarker {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  overflow: hidden;
  background: #F5F7FB;
}
.section-softSection-problem .marker-verticalMarker,
.section-softSection-how .marker-verticalMarker,
.section-softSection-audience .marker-verticalMarker { background: #FFFFFF; }
.marker-verticalMarker {
  aspect-ratio: 3 / 4;
  width: 100%;
}
