/**
 * Loaded after /assets/css/index.css so navy + teal beat Converfund coral/cyan.
 * Tokens match src/app/brand-theme.css.
 */
:root {
  --brand-navy: #001f46;
  --brand-navy-hover: #00305f;
  --brand-navy-soft: #2a4a6a;
  --brand-navy-muted: #5a738c;
  --brand-teal: #009d96;
  --brand-teal-hover: #007f7a;
  --brand-teal-deep: #006b67;
  --brand-teal-light: #1bb3ac;
  --brand-teal-wash: #e6f6f5;
  --brand-teal-wash-strong: #cceeed;
  --brand-surface: #f3f7f8;
  --brand-border: #d3dee5;
  --brand-on-accent: #ffffff;
  --brand-cta-gradient: linear-gradient(180deg, #1bb3ac 0%, #009d96 100%);
  --brand-cta-gradient-h: linear-gradient(90deg, #1bb3ac, #009d96);
  --brand-footer-gradient: radial-gradient(
    circle at bottom right,
    #001f46 0%,
    #003a5c 100%
  );
  --brand-focus-ring: rgba(0, 157, 150, 0.45);
  --brand-nav-hover: rgba(0, 157, 150, 0.15);
  --brand-nav-active: rgba(0, 157, 150, 0.25);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

a {
  color: var(--brand-navy);
}

h3,
.icon-content-box__title,
.rating-stars__label-wrap,
.table-box__table tr th,
.text-block h5,
.text-block,
.text-block p,
.accordion__item-header-title,
.section_benefits .section__title,
.section_cta-line .section__text,
.section_first .section__title,
.section_first .section__intro,
.section_first .section__title-login {
  color: var(--brand-navy) !important;
}

.section_navbar .section__logo-text,
.section_navbar .section__nav-list li a {
  color: var(--brand-navy) !important;
}

.section_navbar .section__nav-list li a:hover {
  background: var(--brand-nav-hover) !important;
}

.section_navbar .section__nav-list li a:active,
.section_navbar .section__nav-list li a:focus {
  background: var(--brand-nav-active) !important;
}

/* Sticky header: fixed once original header leaves viewport */
section.section.section_navbar.is-sticky,
.section_navbar.is-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 75px !important;
  min-height: 0 !important;
  padding: 0 !important;
  z-index: 400 !important;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  box-shadow: 0 10px 28px rgba(0, 31, 70, 0.11) !important;
  border-bottom: 1px solid rgba(0, 31, 70, 0.06) !important;
  transform: translate3d(0, -100%, 0) !important;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.4s ease,
    border-color 0.3s ease !important;
  will-change: transform;
}

section.section.section_navbar.is-sticky .section__container,
.section_navbar.is-sticky .section__container {
  height: 100% !important;
  min-height: 0 !important;
  align-items: center !important;
}

section.section.section_navbar.is-sticky .section__logo-symbol img,
.section_navbar.is-sticky .section__logo-symbol img,
section.section.section_navbar.is-sticky .section__logo-symbol svg,
.section_navbar.is-sticky .section__logo-symbol svg {
  height: 90px !important;
  max-height: 90px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: left center !important;
}

section.section.section_navbar.is-sticky.is-sticky-visible,
.section_navbar.is-sticky.is-sticky-visible {
  transform: translate3d(0, 0, 0) !important;
}

.navbar-sticky-spacer {
  display: block;
  width: 100%;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  section.section.section_navbar.is-sticky,
  .section_navbar.is-sticky {
    transform: none !important;
    transition: background 0.2s ease, box-shadow 0.2s ease !important;
  }
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed !important;
  right: 1.25rem !important;
  bottom: 1.25rem !important;
  z-index: 320 !important;
  width: 3rem !important;
  height: 3rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-navy)) !important;
  box-shadow: 0 10px 28px rgba(0, 31, 70, 0.22) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate3d(0, 0.85rem, 0) scale(0.92) !important;
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s,
    box-shadow 0.2s ease !important;
}

.scroll-top-btn.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.scroll-top-btn:hover {
  box-shadow: 0 14px 32px rgba(0, 157, 150, 0.35) !important;
  transform: translate3d(0, -2px, 0) scale(1.04) !important;
}

.scroll-top-btn:focus-visible {
  outline: 2px solid var(--brand-teal) !important;
  outline-offset: 3px !important;
}

@media (max-width: 767px) {
  .scroll-top-btn {
    right: 1rem !important;
    bottom: 5.5rem !important;
    width: 2.75rem !important;
    height: 2.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-btn {
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
    transform: none !important;
  }

  .scroll-top-btn.is-visible,
  .scroll-top-btn:hover {
    transform: none !important;
  }
}

.button,
.button:before {
  background: var(--brand-cta-gradient-h) !important;
}

.button:focus,
a:focus .button {
  box-shadow: 0 0 16px 2px rgba(0, 157, 150, 0.8) !important;
}

.button.button_view_stroke,
.button.button_view_stroke:before {
  color: var(--brand-teal) !important;
  background: rgba(0, 157, 150, 0.1) !important;
  border: 1px solid var(--brand-teal) !important;
  box-shadow: none !important;
}

.field-box label {
  color: var(--brand-teal) !important;
}

.field-box input,
.field-box select,
.field-box.field-box_textarea textarea {
  color: var(--brand-navy) !important;
  border-bottom: 3px solid var(--brand-teal) !important;
}

.field-box input:focus,
.field-box input:hover,
.field-box input:focus-visible,
.field-box select:focus,
.field-box select:hover,
.field-box select:focus-visible,
.field-box.field-box_textarea textarea:focus,
.field-box.field-box_textarea textarea:hover,
.field-box.field-box_textarea textarea:focus-visible,
.section_first .field-box input:focus,
.section_first .field-box input:hover,
.section_first .field-box input:focus-visible,
.form .field-box input:focus,
.form .field-box input:hover,
.form .field-box input:focus-visible {
  border-bottom-color: var(--brand-teal) !important;
  box-shadow: 0 0 16px 2px rgba(0, 157, 150, 0.8) !important;
}

.field-box:focus-within,
.section_first .field-box:focus-within,
.form .field-box:focus-within {
  box-shadow: 0 0 16px 2px rgba(0, 157, 150, 0.8) !important;
}

.form__label-pointer,
.form__label-pointer:before {
  background: var(--brand-teal) !important;
}

.form__label-pointer {
  color: #fff !important;
}

.form__label-text:after {
  background: linear-gradient(
    var(--brand-teal-hover),
    var(--brand-teal-light),
    var(--brand-teal-hover)
  ) !important;
}

.section_first .form-agreement,
.form.section__form .form-agreement,
.float-form-gstr--cornal .form-agreement {
  display: none !important;
}

.home-select {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow-anchor: none;
}

.field-box {
  isolation: isolate;
}

.field-box:has(.home-select) {
  z-index: 3;
}

.home-select.is-open,
.field-box:has(.home-select.is-open),
.field-box.is-select-open {
  z-index: 50;
}

.home-select select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.home-select__trigger {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.12rem;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0.55rem 0.9rem 0.4rem;
  border: 0;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--brand-navy);
  font: inherit;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.home-select__caption {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-teal);
}

.home-select__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 0;
}

.field-box label.home-select-source-label {
  position: absolute !important;
  z-index: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.home-select__value {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .home-select__trigger {
    font-size: 1.25rem;
  }
}

.home-select__chevron {
  display: flex;
  flex-shrink: 0;
  color: var(--brand-teal);
  transition: transform 0.18s ease;
}

.home-select.is-open .home-select__chevron {
  transform: rotate(180deg);
}

@media (hover: hover) {
  .home-select__trigger:hover {
    box-shadow: 0 0 0 2px var(--brand-focus-ring);
  }
}

.home-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.28rem);
  z-index: 20;
  max-height: 16rem;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.35rem;
  border-radius: 0.9rem;
  background: #fff;
  isolation: isolate;
  box-shadow: 0 16px 40px rgba(0, 31, 70, 0.18);
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  transform: translateZ(0);
}

.home-select.is-open .home-select__list {
  visibility: visible;
  pointer-events: auto;
}

.home-select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.75rem;
  border: 0;
  border-radius: 0.6rem;
  background: transparent;
  color: var(--brand-navy);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.home-select__option:hover {
  background: var(--brand-teal-wash);
}

.home-select__option.is-active {
  background: var(--brand-teal-wash-strong);
  color: var(--brand-teal-deep);
}

.home-select__check {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  background: no-repeat center / contain;
}

.home-select__option.is-active .home-select__check {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23006b67' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.2l3.2 3.2L13 4.6'/></svg>");
}

.section_first .section__decor-line,
.section_first .section__title:after,
.page-title__decor {
  background: var(--brand-teal) !important;
}

.section_first .section__title-intro {
  color: var(--brand-teal) !important;
}

.rating-stars__value,
.table-box__table tr,
.section_advantages .section__text,
.section_benefits .section__text,
.section_reviews .section__text {
  color: var(--brand-navy-soft) !important;
}

.title-wrap_color_white .title-wrap__title,
.title-wrap_color_white .title-wrap__text,
.section_why .section__title-wrap .title-wrap__title,
.section_why .section__title-wrap .title-wrap__text,
.section_cta .section__wrapper .title-wrap__title,
.section_cta .section__wrapper .title-wrap__text {
  color: #fff !important;
}

.title-wrap__title:before {
  background: var(--brand-teal) !important;
}

.title-wrap_right:before {
  background: linear-gradient(
    to top,
    var(--brand-teal),
    var(--brand-teal-light)
  ) !important;
}

.title-wrap_right:after {
  background: linear-gradient(
    to top,
    var(--brand-navy),
    var(--brand-navy-soft)
  ) !important;
}

.section_rate .section__box:before,
.section_benefits .section__box:before,
.section_reviews .section__box:before {
  background: var(--brand-teal) !important;
}

/* Homepage section rhythm: white ↔ soft teal wash */
.section_first.section {
  background: #fff !important;
}

/* Advantages — soft 2x2 delivery-style cards */
.section_benefits.section {
  background: var(--brand-teal-wash) !important;
  overflow: visible !important;
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.section_benefits .section__container {
  align-items: start !important;
  row-gap: 1.75rem !important;
}

.section_benefits .section__title-wrap {
  grid-column: 1 / -1 !important;
  max-width: 36rem !important;
  justify-self: start !important;
  align-items: flex-start !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.7rem !important;
}

.section_benefits .title-wrap__title {
  text-transform: uppercase !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  line-height: 1.15 !important;
  color: var(--brand-navy) !important;
  margin: 0 !important;
  text-align: left !important;
  width: 100% !important;
}

.section_benefits .title-wrap__title:before {
  display: none !important;
}

.section_benefits .title-wrap__title-accent {
  color: var(--brand-teal) !important;
  font-weight: 750 !important;
}

.section_benefits .title-wrap__text {
  color: var(--brand-navy-muted) !important;
  font-size: 1.0625rem !important;
  line-height: 1.55 !important;
  max-width: 34rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.section_benefits .section__content-wrap {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  perspective: none !important;
}

.section_benefits .section__content-wrap:before,
.section_benefits .section__content-wrap:after {
  display: none !important;
}

.section_benefits .section__box {
  max-width: none !important;
  margin: 0 !important;
  padding: 1.75rem 1.6rem 1.85rem !important;
  border-radius: 1.5rem !important;
  background: #fff !important;
  border: 1px solid rgba(211, 222, 229, 0.7) !important;
  box-shadow: 0 10px 28px rgba(0, 31, 70, 0.05) !important;
  overflow: hidden !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  column-gap: 1rem !important;
  row-gap: 0.75rem !important;
  align-items: center !important;
}

.section_benefits .section__box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 31, 70, 0.08) !important;
}

.section_benefits .section__box:before {
  display: none !important;
}

.section_benefits .section__box:after {
  display: none !important;
}

.section_benefits .section__icon-box {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 3.75rem !important;
  height: 3.75rem !important;
  min-width: 3.75rem !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: var(--brand-teal-wash) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  flex-shrink: 0 !important;
}

.section_benefits .section__text-box {
  display: contents !important;
}

.section_benefits .section__title {
  grid-column: 2 !important;
  grid-row: 1 !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  font-size: 1.15rem !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  color: var(--brand-navy) !important;
  margin: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  align-self: center !important;
}

.section_benefits .section__text {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  color: var(--brand-navy-muted) !important;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.section_benefits .section__icon {
  width: 2rem !important;
  height: 2rem !important;
  max-width: 2rem !important;
  max-height: 2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  color: var(--brand-teal) !important;
}

.section_benefits .section__icon svg {
  width: 2rem !important;
  height: 2rem !important;
  max-width: 2rem !important;
  max-height: 2rem !important;
  display: block !important;
  stroke-width: 2.4px !important;
  overflow: visible !important;
}

.section_benefits .section__icon svg [stroke],
.section_benefits .section__icon svg path,
.section_benefits .section__icon svg polyline,
.section_benefits .section__icon svg polygon,
.section_benefits .section__icon svg circle,
.section_benefits .section__icon svg rect,
.section_benefits .section__icon svg line {
  stroke: var(--brand-teal) !important;
  stroke-width: 2.4 !important;
  fill: none !important;
  opacity: 1 !important;
}

.section_steps .section__number {
  background: var(--brand-teal) !important;
  color: #fff !important;
}

/* How it works — journey routing animations (play on scroll reveal) */
@keyframes stepsIndexPop {
  0% {
    transform: scale(0.55);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.section_steps.section {
  background: var(--brand-teal-wash) !important;
  padding-top: 4.25rem !important;
  padding-bottom: 4.25rem !important;
  overflow: visible !important;
}

.section_steps .section__container {
  display: block !important;
  grid-template-columns: none !important;
}

.section_steps .section__box {
  display: none !important;
}

.section_steps .section__title-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.7rem !important;
  max-width: 36rem !important;
  margin: 0 auto 2rem !important;
  text-align: center !important;
}

.section_steps .title-wrap__title {
  text-transform: uppercase !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  line-height: 1.15 !important;
  color: var(--brand-navy) !important;
  margin: 0 !important;
  text-align: center !important;
  width: 100% !important;
}

.section_steps .title-wrap__title:before {
  display: none !important;
}

.section_steps .title-wrap__title-accent {
  color: var(--brand-teal) !important;
  font-weight: 750 !important;
}

.section_steps .title-wrap__text {
  color: var(--brand-navy-muted) !important;
  font-size: 1.0625rem !important;
  line-height: 1.55 !important;
  max-width: 34rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.section_steps .steps-journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  width: 100%;
}

.section_steps .steps-journey__step {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.section_steps .steps-journey__step:not(:last-child):before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: calc(50% + 1.75rem);
  width: calc(100% - 1.75rem);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--brand-teal) 0%,
    rgba(0, 157, 150, 0.22) 100%
  );
  z-index: 0;
  pointer-events: none;
}

html.reveal-ready .section_steps .steps-journey__step:not(:last-child):before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

html.reveal-ready
  .section_steps
  .steps-journey__step.is-inview:not(:last-child):before {
  transform: scaleX(1);
}

.section_steps .steps-journey__index {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 157, 150, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 157, 150, 0.12);
}

html.reveal-ready .section_steps .steps-journey__index {
  transform: scale(0.65);
  opacity: 0;
}

html.reveal-ready .section_steps .steps-journey__step.is-inview .steps-journey__index {
  animation: stepsIndexPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.section_steps .steps-journey__index span {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand-teal-deep);
}

.section_steps .steps-journey__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  text-transform: none;
  text-align: center;
}

.section_steps .steps-journey__text {
  margin: 0 auto;
  max-width: 18rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--brand-navy-muted);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .section_steps .steps-journey__step:not(:last-child):before {
    transform: none;
    transition: none;
  }

  html.reveal-ready
    .section_steps
    .steps-journey__step.is-inview
    .steps-journey__index {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

.section_cta .section__wrapper {
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-teal)) !important;
}

.section_why.section {
  background: #fff !important;
}

.section_why .section__title-wrap {
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-navy)) !important;
}

.section_why .section__title-wrap .title-wrap__title {
  font-size: 3.5rem !important;
  line-height: 3.75rem !important;
}

/* Why Us photo: enough height to keep all four faces readable */
.section_why .section__image-wrap {
  overflow: hidden !important;
  border-radius: 0.75rem 0.75rem 0 0 !important;
}

.section_why .section__image-wrap .img-block__img-box {
  min-height: 0 !important;
  width: 100%;
  height: clamp(18rem, 38vw, 28rem) !important;
  aspect-ratio: auto !important;
  background-size: cover !important;
  background-position: center 42% !important;
  background-repeat: no-repeat !important;
}

.section_cta-line.section {
  background: linear-gradient(
    90deg,
    rgba(0, 157, 150, 0.12),
    rgba(0, 31, 70, 0.18)
  ) !important;
}

.accordion__icon-animated {
  background-image: linear-gradient(
    135deg,
    var(--brand-teal),
    var(--brand-teal-light)
  ) !important;
}

/* FAQ — match How It Works section voice */
.section_questions.section {
  background: #fff !important;
  padding-top: 4.25rem !important;
  padding-bottom: 1.5rem !important;
  overflow: visible !important;
}

.section_questions .section__container {
  display: block !important;
}

.section_questions .section__title-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.7rem !important;
  max-width: 36rem !important;
  margin: 0 auto 2rem !important;
  text-align: center !important;
}

.section_questions .title-wrap__title {
  text-transform: uppercase !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  line-height: 1.15 !important;
  color: var(--brand-navy) !important;
  margin: 0 !important;
  text-align: center !important;
  width: 100% !important;
}

.section_questions .title-wrap__title:before {
  display: none !important;
}

.section_questions .title-wrap__title-accent {
  color: var(--brand-teal) !important;
  font-weight: 750 !important;
}

.section_questions .title-wrap__text {
  color: var(--brand-navy-muted) !important;
  font-size: 1.0625rem !important;
  line-height: 1.55 !important;
  max-width: 34rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.section_questions .section__accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.section_questions .section__accordion:before,
.section_questions .section__accordion:after {
  display: none !important;
}

.section_questions .accordion__item {
  margin: 0 !important;
  padding: 1.05rem 3.25rem 1.05rem 1.35rem !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 0.35rem 0.85rem 0.85rem 0.35rem !important;
  border: 0 !important;
  background: #e8f4f7 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  transition: background 0.2s ease !important;
}

.section_questions .accordion__item.is-opened {
  padding-top: 1.15rem !important;
  padding-bottom: 1.25rem !important;
  background: #e8f4f7 !important;
}

.section_questions .accordion__item:hover,
.section_questions .accordion__item.is-opened {
  border: 0 !important;
  box-shadow: none !important;
  background: #dff0f4 !important;
}

.section_questions .accordion__item-header {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
}

.section_questions .accordion__item-header-title {
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  font-size: 1.375rem !important;
  line-height: 1.3 !important;
  font-weight: 650 !important;
  color: var(--brand-navy) !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  align-items: unset !important;
}

.section_questions .accordion__icon-animated {
  top: 50% !important;
  right: 1rem !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
  min-width: 1.5rem !important;
  transform: translateY(-50%) !important;
  border-radius: 999px !important;
  opacity: 1 !important;
  background-image: none !important;
  background: var(--brand-teal) !important;
}

.section_questions .accordion__item.is-opened .accordion__icon-animated {
  top: 1.25rem !important;
  transform: none !important;
}

.section_questions .accordion__item:not(.is-opened) .accordion__item-body {
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.section_questions .accordion__item.is-opened .accordion__item-body {
  height: auto !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

.section_questions .accordion__item:not(.is-opened) .accordion__item-content {
  margin: 0 !important;
  padding: 0 !important;
}

.section_questions .accordion__item-body,
.section_questions .accordion__item-body p,
.section_questions .accordion__item-content {
  color: var(--brand-navy-soft) !important;
  font-size: 1.0625rem !important;
  line-height: 1.65 !important;
  font-weight: 500 !important;
}

.section_questions .accordion__item.is-opened .accordion__item-content {
  margin-top: 0.65rem !important;
  padding-bottom: 0 !important;
  padding-right: 0.5rem !important;
}

.section_questions .accordion__item-content table {
  width: 100%;
  max-width: 18rem;
  border-collapse: collapse;
  margin: 0.25rem 0 0;
}

.section_questions .accordion__item-content table td {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(211, 222, 229, 0.95);
  color: var(--brand-navy);
  font-size: 0.8125rem;
}

.section_advantages .section__image-box {
  border-color: var(--brand-teal) !important;
}

.rating-stars__star-box {
  color: var(--brand-teal) !important;
}

footer {
  background: var(--brand-footer-gradient) !important;
  margin-top: 0.75rem !important;
}

footer a {
  text-decoration: none !important;
  -webkit-text-decoration-color: transparent !important;
  text-decoration-color: transparent !important;
  transition: color 0.2s ease !important;
}

footer a:hover,
footer a:focus {
  text-decoration: none !important;
  -webkit-text-decoration-color: transparent !important;
  text-decoration-color: transparent !important;
  color: var(--brand-teal-light) !important;
}

footer .footer__nav-box a:hover,
footer .footer__nav-box a:focus {
  color: #5eead4 !important;
}

footer .footer__nav-box ul li:after {
  background-image: none !important;
  background-color: var(--brand-teal) !important;
}

footer .footer__contact span.title {
  color: var(--brand-teal) !important;
}

.md-content a,
.md-close,
.form-agreement.form-agreement--dark-a a,
.form-agreement.form-agreement--marcle a {
  color: var(--brand-teal) !important;
}

.section_first .section__title-amount {
  color: var(--brand-teal);
}

/* Hero trust chips — under the form */
.section_first .section__benefits-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.55rem 1.15rem !important;
  width: 100% !important;
  max-width: none !important;
  margin: 1.55rem 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  z-index: 3 !important;
}

.section_first .section__label {
  margin: 0 !important;
  padding: 0.45rem 0.95rem 0.45rem 0.5rem !important;
  width: auto !important;
  max-width: none !important;
  border: 1px solid rgba(0, 157, 150, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(230, 246, 245, 0.95) !important;
  box-shadow: none !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: var(--brand-navy) !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.45rem !important;
  white-space: nowrap !important;
}

.section_first .section__label:before {
  content: "" !important;
  width: 1.4rem !important;
  height: 1.4rem !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background: #fff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009D96' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3l7 3v6c0 5-3.5 8-7 9-3.5-1-7-4-7-9V6l7-3z'/></svg>")
    center / 0.8rem no-repeat !important;
  box-shadow: 0 0 0 1px rgba(0, 157, 150, 0.14) !important;
}

.section_first .section__label:nth-child(2):before {
  background: #fff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009D96' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>")
    center / 0.9rem no-repeat !important;
}

.section_first .section__label:nth-child(3):before {
  background: #fff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009D96' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='11' width='14' height='10' rx='2'/><path d='M8 11V8a4 4 0 0 1 8 0v3'/></svg>")
    center / 0.85rem no-repeat !important;
}

.section_first .section__label:after {
  display: none !important;
}

/* Hero form — keep previous glass card style */
.section_first .section__form-wrap {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 32rem !important;
  margin: 0 !important;
  z-index: 3 !important;
}

.section_first .section__form,
.section_first .form {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 2.6rem 1.15rem 1.25rem 3.05rem !important;
  background: rgba(191, 232, 245, 0.45) !important;
  border-radius: 1.25rem !important;
  box-shadow:
    inset 2.15rem 0 0 0 var(--brand-teal),
    0 2px 40px -4px rgba(1, 37, 56, 0.18) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  overflow: visible !important;
  position: relative !important;
  isolation: isolate !important;
}

/* Full-height Quick Response rail */
.section_first .section__form:before,
.section_first .form:before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 2.15rem !important;
  border-radius: 1.25rem 0 0 1.25rem !important;
  background: linear-gradient(
    180deg,
    var(--brand-teal-hover) 0%,
    var(--brand-teal) 45%,
    var(--brand-teal-light) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.section_first .form__label-pointer {
  display: block !important;
  top: 0.55rem !important;
  left: 3.15rem !important;
  padding: 0.35rem 0.7rem !important;
  font-size: 0.75rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  border-radius: 0.35rem !important;
  z-index: 6 !important;
  transform-origin: center calc(100% + 17px) !important;
  animation: animationRotate 5s cubic-bezier(0.39, 0.575, 0.565, 1) infinite !important;
  box-shadow: 0 6px 14px rgba(0, 31, 70, 0.16) !important;
}

.section_first .form__label-pointer:before {
  width: 0.55rem !important;
  height: 0.55rem !important;
}

.section_first .form__label-text {
  position: absolute !important;
  top: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 2.15rem !important;
  height: auto !important;
  writing-mode: sideways-lr !important;
  transform: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  color: #fff !important;
  border-radius: 0 !important;
  overflow: visible !important;
  order: 0 !important;
  z-index: 2 !important;
  background: transparent !important;
  pointer-events: none !important;
}

@supports not (writing-mode: sideways-lr) {
  .section_first .form__label-text {
    writing-mode: vertical-rl !important;
    transform: rotate(180deg) !important;
  }
}

.section_first .form__label-text:after {
  display: none !important;
}

.section_first .field-box {
  height: 3.65rem !important;
  width: 100% !important;
  margin: 0 !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 0;
  isolation: isolate;
}

.section_first .field-box:has(.home-select) {
  z-index: 3 !important;
}

.section_first .field-box:has(.home-select.is-open),
.section_first .field-box.is-select-open {
  z-index: 50 !important;
}

.section_first .field-box label {
  position: absolute !important;
  z-index: 2 !important;
  top: 0.5rem !important;
  left: 0.9rem !important;
  font-size: 0.6875rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--brand-teal) !important;
  pointer-events: none !important;
}

.section_first .field-box label.home-select-source-label {
  top: 0 !important;
  left: 0 !important;
  z-index: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.section_first .field-box input,
.section_first .field-box select {
  background: #fff !important;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0.7rem !important;
  padding: 1.15rem 2.4rem 0.15rem 0.9rem !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  height: 100% !important;
  box-shadow: none !important;
}

.section_first .field-box input:focus,
.section_first .field-box input:hover,
.section_first .field-box input:focus-visible,
.section_first .field-box select:focus,
.section_first .field-box select:hover,
.section_first .field-box select:focus-visible {
  background: #fff !important;
  border-bottom: 0 !important;
  box-shadow: 0 0 0 2px rgba(0, 157, 150, 0.45) !important;
}

.section_first .home-select {
  z-index: 3 !important;
}

.section_first .home-select__trigger {
  padding: 0.55rem 0.9rem 0.4rem !important;
  border-radius: 0.7rem !important;
  background: #fff !important;
  font-size: 1rem !important;
}

.section_first .form__button,
.section_first .form__button.button_size_lg {
  width: 100% !important;
  height: 3.35rem !important;
  margin: 0.15rem 0 0 !important;
  border-radius: 999px !important;
  font-size: 1.05rem !important;
}

.nav-toggle {
  display: none;
}

/* Desktop hero: title + image left, form right (form style unchanged) */
@media (min-width: 768px) {
  .section_first.section {
    overflow: visible !important;
    padding-top: 1.75rem !important;
    padding-bottom: 0.5rem !important;
    margin-top: 0 !important;
  }

  .section_first.section:before,
  .section_first.section:after,
  .section_first .section__image-wrap:after,
  .section_first .section__title:after,
  .section_first .section__decor-line {
    display: none !important;
  }

  .section_first .section__container {
    display: grid !important;
    grid-template-columns: minmax(14rem, 34rem) minmax(24rem, 28rem) !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    justify-content: center !important;
    column-gap: 1.15rem !important;
    row-gap: 0.55rem !important;
    overflow: visible !important;
  }

  .section_first .section__title-wrap {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    padding: 0 0.25rem 0 0 !important;
    z-index: 5 !important;
    text-align: left !important;
    max-width: 28rem !important;
    justify-self: start !important;
    width: 100% !important;
  }

  .section_first .section__title {
    margin: 0 !important;
    font-size: clamp(1.85rem, 2.8vw, 2.85rem) !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: -0.03em !important;
    text-shadow: none !important;
    text-align: left !important;
    color: var(--brand-navy) !important;
    max-width: none !important;
  }

  .section_first .section__image-wrap {
    grid-column: 1 !important;
    grid-row: 2 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 32rem !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1 !important;
    overflow: visible !important;
    clip-path: none !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-end !important;
    pointer-events: none !important;
    align-self: start !important;
  }

  .section_first .section__image-wrap:after {
    display: none !important;
  }

  .section_first .section__image {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    max-width: 100% !important;
    max-height: min(46vh, 26rem) !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: left bottom !important;
    filter: none !important;
    opacity: 1 !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    image-rendering: auto;
  }

  .section_first .section__form-wrap {
    grid-column: 2 !important;
    grid-row: 1 / -1 !important;
    align-self: center !important;
    justify-self: start !important;
    max-width: 28rem !important;
    width: 100% !important;
    margin-left: -0.35rem !important;
  }

  .section_first .section__form,
  .section_first .form {
    gap: 1.15rem !important;
    padding: 3rem 1.45rem 1.55rem 3.65rem !important;
    min-height: 0 !important;
    box-shadow:
      inset 2.85rem 0 0 0 var(--brand-teal),
      0 2px 40px -4px rgba(1, 37, 56, 0.18) !important;
  }

  .section_first .field-box {
    height: 4.85rem !important;
  }

  .section_first .field-box label {
    top: 0.65rem !important;
    left: 1.05rem !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0.05em !important;
  }

  .section_first .field-box input,
  .section_first .field-box select {
    padding: 1.45rem 2.6rem 0.35rem 1.05rem !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    border-radius: 0.85rem !important;
  }

  .section_first .home-select__trigger {
    padding: 0.7rem 1.05rem 0.5rem !important;
    border-radius: 0.85rem !important;
    font-size: 1.35rem !important;
    gap: 0.2rem !important;
  }

  .section_first .home-select__caption {
    font-size: 0.8125rem !important;
  }

  .section_first .home-select__chevron {
    width: 1.35rem !important;
    height: 1.35rem !important;
  }

  .section_first .home-select__chevron svg {
    width: 1.35rem !important;
    height: 1.35rem !important;
  }

  .section_first .form__button,
  .section_first .form__button.button_size_lg {
    height: 4.15rem !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin-top: 0.2rem !important;
  }

  .section_first .form__label-pointer {
    top: 0.85rem !important;
    left: 3.75rem !important;
    font-size: 0.9375rem !important;
    padding: 0.48rem 0.95rem !important;
  }

  .section_first .form__label-text {
    width: 2.85rem !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.22em !important;
  }

  .section_first .section__form:before,
  .section_first .form:before {
    width: 2.85rem !important;
  }

  .section_first .section__benefits-wrap {
    gap: 0.55rem 1rem !important;
    margin-top: 1.5rem !important;
  }

  .section_first .section__label {
    font-size: 0.875rem !important;
    padding: 0.45rem 0.95rem 0.45rem 0.5rem !important;
  }

  .section_first .section__label:before {
    width: 1.35rem !important;
    height: 1.35rem !important;
  }
}

@media (min-width: 1024px) {
  .section_first .section__container {
    grid-template-columns: minmax(0, 36rem) minmax(28rem, 30rem) !important;
    column-gap: 1.35rem !important;
    justify-content: center !important;
  }

  .section_first .section__form-wrap {
    max-width: 30rem !important;
  }
}

@media (min-width: 1100px) {
  .section_first .section__container {
    grid-template-columns: minmax(0, 38rem) minmax(28rem, 31rem) !important;
    column-gap: 1.5rem !important;
  }

  .section_first .section__title-wrap {
    max-width: 36rem !important;
  }

  .section_first .section__title {
    font-size: clamp(2.15rem, 2.6vw, 3rem) !important;
  }

  .section_first .section__image-wrap {
    max-width: 38rem !important;
  }

  .section_first .section__image {
    max-height: min(50vh, 28rem) !important;
  }

  .section_first .section__form-wrap {
    max-width: 31rem !important;
    margin-left: -0.5rem !important;
  }

  .section_first .section__form,
  .section_first .form {
    gap: 1.25rem !important;
    padding: 3.15rem 1.55rem 1.7rem 3.8rem !important;
    min-height: 0 !important;
    box-shadow:
      inset 3rem 0 0 0 var(--brand-teal),
      0 2px 40px -4px rgba(1, 37, 56, 0.18) !important;
  }

  .section_first .field-box {
    height: 5.1rem !important;
  }

  .section_first .field-box input,
  .section_first .field-box select {
    font-size: 1.3rem !important;
  }

  .section_first .home-select__trigger {
    font-size: 1.4rem !important;
  }

  .section_first .form__button,
  .section_first .form__button.button_size_lg {
    height: 4.35rem !important;
    font-size: 1.25rem !important;
  }

  .section_first .form__label-text {
    width: 3rem !important;
    font-size: 1rem !important;
  }

  .section_first .section__form:before,
  .section_first .form:before {
    width: 3rem !important;
  }

  .section_first .form__label-pointer {
    left: 3.85rem !important;
    font-size: 1rem !important;
  }
}

@media (min-width: 1400px) {
  .section_first .section__container {
    grid-template-columns: minmax(0, 40rem) minmax(29rem, 32rem) !important;
    column-gap: 1.75rem !important;
  }

  .section_first .section__form-wrap {
    max-width: 32rem !important;
  }
}

#floating-getstarted-wrapper,
.floating-login-placeholder {
  display: none !important;
}

/* Mobile home: header pill, hero photo + glass form card (match desktop). */
@media (max-width: 767px) {
  #floating-getstarted-wrapper {
    display: none !important;
  }

  body::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 31, 70, 0.42) !important;
    z-index: 90 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.28s ease, visibility 0.28s ease !important;
  }

  body.is-nav-open {
    overflow: hidden !important;
  }

  body.is-nav-open::before {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  section.section.section_navbar {
    height: auto !important;
    min-height: 5.75rem !important;
    padding: 0.4rem 0 !important;
    position: relative !important;
    top: auto !important;
    z-index: 100 !important;
    overflow: visible !important;
    background: #fff !important;
  }

  section.section.section_navbar.is-sticky {
    position: fixed !important;
    top: 0 !important;
    z-index: 400 !important;
    height: 75px !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .section_navbar .section__container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    column-gap: 0.35rem !important;
    row-gap: 0 !important;
    padding-left: 0.75rem !important;
    padding-right: 0.5rem !important;
    position: static !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .section_navbar .section__logo-box {
    margin-right: auto !important;
    max-width: none !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .section_navbar .section__logo-symbol img,
  .section_navbar .section__logo-symbol svg {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 5.75rem !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .section_navbar .section__btn-box {
    display: block !important;
    flex-shrink: 0 !important;
    order: 2 !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 2.65rem !important;
    height: 2.65rem !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0.65rem !important;
    background: var(--brand-teal-wash) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    order: 3 !important;
    margin-left: 0 !important;
    transition: background 0.22s ease, transform 0.18s ease !important;
  }

  .nav-toggle:active {
    transform: scale(0.94) !important;
  }

  .section_navbar.is-nav-open .nav-toggle {
    background: var(--brand-teal) !important;
  }

  .nav-toggle__bar {
    display: block !important;
    width: 1.15rem !important;
    height: 2px !important;
    border-radius: 1px !important;
    background: var(--brand-navy) !important;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease, background 0.22s ease !important;
  }

  .section_navbar.is-nav-open .nav-toggle__bar {
    background: #fff !important;
  }

  .section_navbar.is-nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .section_navbar.is-nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0 !important;
  }

  .section_navbar.is-nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .section_navbar .section__nav-list {
    display: flex !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 101 !important;
    flex-basis: auto !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.35rem 1rem 0.7rem !important;
    border: 0 !important;
    border-radius: 0 0 1rem 1rem !important;
    background: #fff !important;
    box-shadow: 0 18px 36px rgba(0, 31, 70, 0.16) !important;
    gap: 0 !important;
    order: 4 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-0.55rem) !important;
    transform-origin: top center !important;
    transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.28s ease !important;
  }

  .section_navbar.is-nav-open .section__nav-list {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .section_navbar .section__nav-list li {
    opacity: 0 !important;
    transform: translateY(-0.4rem) !important;
    transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .section_navbar.is-nav-open .section__nav-list li {
    opacity: 1 !important;
    transform: none !important;
  }

  .section_navbar.is-nav-open .section__nav-list li:nth-child(1) {
    transition-delay: 0.05s !important;
  }

  .section_navbar.is-nav-open .section__nav-list li:nth-child(2) {
    transition-delay: 0.09s !important;
  }

  .section_navbar.is-nav-open .section__nav-list li:nth-child(3) {
    transition-delay: 0.13s !important;
  }

  .section_navbar.is-nav-open .section__nav-list li:nth-child(n + 4) {
    transition-delay: 0.17s !important;
  }

  @media (prefers-reduced-motion: reduce) {
    body::before,
    .nav-toggle,
    .nav-toggle__bar,
    .section_navbar .section__nav-list,
    .section_navbar .section__nav-list li {
      transition: none !important;
    }

    .section_navbar .section__nav-list,
    .section_navbar .section__nav-list li {
      transform: none !important;
    }
  }

  .section_navbar .section__nav-list li a {
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    padding: 0.75rem 0.85rem !important;
    border-radius: 0.7rem !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    opacity: 1 !important;
    color: var(--brand-navy) !important;
  }

  .section_navbar .section__nav-list li a:hover,
  .section_navbar .section__nav-list li a:focus {
    background: var(--brand-teal-wash) !important;
    color: var(--brand-teal-deep) !important;
  }

  .section_navbar .section__btn-box .button {
    height: 2.5rem !important;
    border-radius: 999px !important;
    padding: 0 0.95rem !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .section_navbar .section__btn-box .button__icon-box {
    display: none !important;
  }

  section.section.section_first {
    margin-top: 0 !important;
    padding-top: 0.75rem !important;
    padding-bottom: 1.75rem !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    background: #fff !important;
  }

  .section_first.section:before,
  .section_first.section:after,
  .section_first .section__image-wrap:after,
  .section_first .section__title:after,
  .section_first .section__decor-line {
    display: none !important;
  }

  .section_first .section__container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-items: stretch !important;
    row-gap: 1rem !important;
    column-gap: 0 !important;
    overflow-x: hidden !important;
  }

  .section_first .section__title-wrap {
    grid-column: 1 !important;
    grid-row: 1 !important;
    padding: 0 0.35rem !important;
    z-index: 5 !important;
    align-self: center !important;
    justify-self: center !important;
    text-align: center !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .section_first .section__title {
    margin: 0 !important;
    font-size: 2rem !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: -0.03em !important;
    text-shadow: none !important;
    text-align: center !important;
    max-width: none !important;
    color: var(--brand-navy) !important;
  }

  .section_first .section__form-wrap {
    grid-column: 1 !important;
    grid-row: 2 / 3 !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 26rem !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  .section_first .section__form,
  .section_first .form {
    padding: 2.6rem 1rem 1.15rem 2.95rem !important;
  }

  .section_first .form__label-pointer {
    top: 0.42rem !important;
    left: 3.05rem !important;
    padding: 0.32rem 0.62rem !important;
    font-size: 0.6875rem !important;
  }

  .section_first .form__label-text {
    width: 2.35rem !important;
    font-size: 0.72rem !important;
  }

  .section_first .section__form:before,
  .section_first .form:before {
    width: 2.35rem !important;
  }

  .section_first .section__image-wrap {
    grid-column: 1 !important;
    grid-row: 3 / 4 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 22rem !important;
    height: auto !important;
    min-height: 12rem !important;
    margin: 0.25rem auto 0 !important;
    z-index: 2 !important;
    overflow: visible !important;
    clip-path: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    pointer-events: none !important;
    padding: 0 !important;
  }

  .section_first .section__image {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 16rem !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    overflow: visible !important;
    clip-path: none !important;
    transform: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .section_first .section__benefits-wrap {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 1.35rem !important;
    padding: 0 !important;
  }

  .section_first .section__label {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    font-size: 0.8125rem !important;
    padding: 0.42rem 0.75rem 0.42rem 0.45rem !important;
  }

  .section_first .section__label:before {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  .section_why.section {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .section_why .section__image-wrap {
    border-radius: 0.75rem !important;
  }

  .section_why .section__image-wrap .img-block__img-box {
    height: clamp(15rem, 58vw, 20rem) !important;
    background-position: center 40% !important;
  }

  .section_why .section__title-wrap {
    background: none !important;
    padding: 1.1rem 0 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    align-items: flex-start !important;
  }

  .section_why .section__title-wrap:before,
  .section_why .section__title-wrap:after {
    display: none !important;
  }

  .section_why .section__title-wrap .title-wrap__title,
  .section_why .section__title-wrap .title-wrap__text {
    color: var(--brand-navy) !important;
    text-align: left !important;
    padding: 0 !important;
    max-width: none !important;
  }

  .section_why .section__title-wrap .title-wrap__title {
    font-size: 1.65rem !important;
    line-height: 2rem !important;
    margin-top: 0 !important;
    text-transform: none !important;
    letter-spacing: -0.03em !important;
  }

  .section_why .section__title-wrap .title-wrap__title:before {
    display: none !important;
  }

  .section_why .section__title-wrap .title-wrap__text {
    font-size: 0.9375rem !important;
    line-height: 1.5rem !important;
    margin-top: 0.5rem !important;
    opacity: 0.82 !important;
  }

  .section_why .title-wrap__link {
    width: 100% !important;
  }

  .section_why .title-wrap__button {
    width: 100% !important;
    margin-top: 1rem !important;
    border-radius: 0.8rem !important;
  }

  .section_steps.section {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .section_steps .section__title-wrap {
    max-width: none !important;
    margin-bottom: 1.35rem !important;
  }

  .section_steps .title-wrap__title {
    font-size: 1.55rem !important;
    line-height: 1.2 !important;
  }

  .section_steps .title-wrap__text {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    max-width: none !important;
  }

  .section_steps .steps-journey {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .section_steps .steps-journey__step {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.95rem;
    row-gap: 0.35rem;
    align-items: start;
  }

  .section_steps .steps-journey__step:not(:last-child):before {
    top: 3.15rem;
    left: 1.4rem;
    width: 2px;
    height: calc(100% - 3.15rem + 1.35rem);
    background: linear-gradient(
      180deg,
      var(--brand-teal) 0%,
      rgba(0, 157, 150, 0.18) 100%
    );
  }

  html.reveal-ready .section_steps .steps-journey__step:not(:last-child):before {
    transform: scaleY(0);
    transform-origin: top center;
  }

  html.reveal-ready
    .section_steps
    .steps-journey__step.is-inview:not(:last-child):before {
    transform: scaleY(1);
  }

  .section_steps .steps-journey__index {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 3rem;
    height: 3rem;
    margin-top: 0.1rem;
  }

  .section_steps .steps-journey__index span {
    font-size: 1rem;
  }

  .section_steps .steps-journey__title {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.1rem;
  }

  .section_steps .steps-journey__text {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    font-size: 0.9375rem;
  }

  .section_questions.section {
    padding-top: 2.75rem !important;
    padding-bottom: 1rem !important;
  }

  .section_questions .section__title-wrap {
    max-width: none !important;
    margin-bottom: 1.35rem !important;
  }

  .section_questions .title-wrap__title {
    font-size: 1.55rem !important;
    line-height: 1.2 !important;
  }

  .section_questions .title-wrap__text {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    max-width: none !important;
  }

  .section_questions .accordion__item {
    padding: 0.9rem 2.85rem 0.9rem 1.1rem !important;
    border-radius: 0.3rem 0.75rem 0.75rem 0.3rem !important;
  }

  .section_questions .accordion__item-header-title {
    font-size: 1.125rem !important;
  }

  .section_questions .accordion__icon-animated {
    right: 0.8rem !important;
    width: 1.3rem !important;
    height: 1.3rem !important;
    min-width: 1.3rem !important;
  }

  .section_questions .accordion__item-body,
  .section_questions .accordion__item-body p,
  .section_questions .accordion__item-content {
    font-size: 0.9375rem !important;
  }

  .section_benefits.section {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .section_benefits .section__title-wrap {
    max-width: none !important;
  }

  .section_benefits .section__title-wrap .title-wrap__title {
    font-size: 1.55rem !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    text-align: left !important;
  }

  .section_benefits .title-wrap__text {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    max-width: none !important;
    text-align: left !important;
    padding: 0 !important;
  }

  .section_benefits .section__content-wrap {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .section_benefits .section__box {
    max-width: none !important;
    padding: 1.35rem 1.2rem 1.4rem !important;
    border-radius: 1.25rem !important;
  }

  .section_benefits .section__icon-box {
    width: 3.25rem !important;
    height: 3.25rem !important;
    min-width: 3.25rem !important;
    margin-bottom: 0.9rem !important;
  }

  .section_benefits .section__icon,
  .section_benefits .section__icon svg {
    width: 1.75rem !important;
    height: 1.75rem !important;
    max-width: 1.75rem !important;
    max-height: 1.75rem !important;
  }

  .section_benefits .section__title {
    font-size: 1.05rem !important;
    white-space: nowrap !important;
  }
}

/* —— Homepage scroll reveal (hero on load; rest on scroll-down; random variants) —— */
html.reveal-ready .js-reveal {
  opacity: 0 !important;
  transition:
    opacity var(--reveal-duration, 1.25s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-duration, 1.25s) cubic-bezier(0.22, 1, 0.36, 1) !important;
  transition-delay: var(--reveal-delay, 0ms) !important;
  will-change: opacity, transform;
  pointer-events: none;
}

/* Instantly apply hidden pose (no fade-out from the pre-JS visible frame) */
html.reveal-ready .js-reveal.reveal-prepare {
  transition: none !important;
  transition-delay: 0ms !important;
}

html.reveal-ready .js-reveal.reveal--up {
  transform: translate3d(0, 2.75rem, 0) !important;
}

html.reveal-ready .js-reveal.reveal--left {
  transform: translate3d(2.5rem, 0.5rem, 0) !important;
}

html.reveal-ready .js-reveal.reveal--right {
  transform: translate3d(-2.5rem, 0.5rem, 0) !important;
}

html.reveal-ready .js-reveal.reveal--zoom {
  transform: translate3d(0, 1.25rem, 0) scale(0.94) !important;
}

html.reveal-ready .js-reveal.reveal--fade {
  transform: translate3d(0, 0.75rem, 0) !important;
}

html.reveal-ready .js-reveal.is-inview {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .js-reveal,
  html.reveal-ready .js-reveal.is-inview {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
  }
}
