.hero--home {
  position: relative;
  min-height: max(700px, calc(100svh - var(--nav-h)));
  display: flex;
  align-items: center;
  padding: 64px 0;
  overflow: visible;
}
.heroBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #dfe5ec;
  pointer-events: none;
}
.heroBg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(
      1200px 620px at 20% 25%,
      rgba(255, 255, 255, 0.46),
      rgba(255, 255, 255, 0.43)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.5));
}
.heroBg__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  will-change: opacity, transform;
  animation-duration: 12.6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.heroBg__img:nth-child(1) {
  animation-name: heroFade1;
}
.heroBg__img:nth-child(2) {
  animation-name: heroFade2;
}
.heroBg__img:nth-child(3) {
  animation-name: heroFade3;
}

@keyframes heroFade1 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  28% {
    opacity: 1;
    transform: scale(1);
  }
  36% {
    opacity: 0;
    transform: scale(1.02);
  }
  61% {
    opacity: 0;
    transform: scale(1.02);
  }
  69% {
    opacity: 0;
    transform: scale(1.02);
  }
  92% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroFade2 {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  28% {
    opacity: 0;
    transform: scale(1.02);
  }
  36% {
    opacity: 1;
    transform: scale(1);
  }
  61% {
    opacity: 1;
    transform: scale(1);
  }
  69% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@keyframes heroFade3 {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  61% {
    opacity: 0;
    transform: scale(1.02);
  }
  69% {
    opacity: 1;
    transform: scale(1);
  }
  92% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}
.hero--home .container,
.hero--home .grid {
  position: relative;
  z-index: 4;
}
.heroOverview {
  padding: 22px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.heroOverview__kicker {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: 12px;
}
.heroOverview__title {
  margin: 10px 0 10px;
  font-size: 22px;
}
.heroOverview__text {
  margin: 0;
  color: var(--color-subtext);
}
.heroOverview__list {
  margin: 14px 0 0;
  color: var(--color-text);
}
.heroOverview__list li {
  margin: 8px 0;
}
.heroOverview__note {
  margin: 14px 0 0;
  color: rgba(60, 83, 109, 0.75);
  font-size: 13px;
}

.heroPdf {
  background: #fff;
  padding: 0 0 96px;
}
.heroPdf__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 56px;
  padding-top: 78px;
  padding-bottom: 42px;
  align-items: start;
}
.heroPdf__intro h2 {
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
}
.heroPdf__intro p,
.heroPdf__summary {
  font-size: 18px;
  line-height: 1.65;
  color: #556274;
}
.heroPdf__checks {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  gap: 18px;
}
.heroPdf__checks li {
  position: relative;
  padding-left: 34px;
}
.heroPdf__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(237, 120, 77, 0.16);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}
.heroPdf__band {
  position: relative;
  margin-right: clamp(18px, 5vw, 72px);
}
.heroPdf__bandInner {
  background: var(--color-surface2);
  border-radius: 0 38px 38px 0;
  padding: 60px clamp(20px, 4vw, 58px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  min-height: 480px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(43, 65, 84, 0.08);
}
.heroPdf__left {
  padding-left: max(
    0px,
    calc(
      max(var(--gutter), ((100vw - var(--container)) / 2) + var(--gutter)) -
        clamp(20px, 4vw, 58px)
    )
  );
}
.heroPdf__stepTag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 38px;
  border-radius: 999px;
  background: rgba(47, 77, 110, 0.08);
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: 18px;
}
.heroPdf__left h3 {
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1;
  margin-bottom: 16px;
}
.heroPdf__left p {
  font-size: 18px;
  line-height: 1.7;
  color: #576173;
}
.heroPdf__card {
  max-width: 620px;
  width: 100%;
}
.heroPdf__form {
  background: transparent;
}
.heroPdf__form .formField,
.heroPdf__form .form-field {
  margin-bottom: 5px;
}
.heroPdf__submit {
  min-width: 180px;
}
.heroPdf__actions {
  padding-top: 8px;
}

.card--stickyFooter {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--stickyFooter__actions {
  margin-top: auto;
  padding-top: 18px;
}

.tcarousel--homeThree {
  max-width: var(--container);
  margin: 32px auto 0;
  padding: 0 64px 0;
}
.tcarousel--homeThree .tcarousel__viewport {
  overflow: hidden;
}
.tcarousel--homeThree .tcarousel__track {
  gap: 22px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 6px 0 8px;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
}
.tcarousel--homeThree .tcarousel__slide {
  flex: 0 0 calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  opacity: 1;
  transform: none;
}
.tcarousel--homeThree .tcarousel__btn {
  display: inline-flex;
  bottom: 50%;
  transform: translateY(50%);
}
.tcarousel--homeThree .tcarousel__btn--prev {
  left: 0;
  right: auto;
}
.tcarousel--homeThree .tcarousel__btn--next {
  right: 0;
}

@media (max-width: 1024px) {
  .tcarousel--homeThree {
    padding: 0 58px 0;
  }
  .tcarousel--homeThree .tcarousel__slide {
    flex-basis: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }
}

@media (max-width: 720px) {
  .tcarousel--homeThree {
    padding: 0 52px 0;
  }
  .tcarousel--homeThree .tcarousel__slide {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .heroPdf__top,
  .heroPdf__bandInner {
    grid-template-columns: 1fr;
  }
  .heroPdf__left {
    padding-left: 0;
  }
  .heroPdf__card {
    margin-left: 0;
    max-width: none;
  }
}
@media (max-width: 720px) {
  .hero--home {
    min-height: max(580px, calc(100svh - var(--nav-h)));
    padding: 40px 0;
  }
  .heroPdf {
    padding-bottom: 64px;
  }
  .heroPdf__top {
    gap: 28px;
    padding-top: 56px;
  }
  .heroPdf__band {
    margin-right: 0;
  }
  .heroPdf__bandInner {
    border-radius: 0;
    padding: 42px 18px;
    min-height: 0;
  }
  .heroPdf__intro p,
  .heroPdf__summary,
  .heroPdf__left p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .heroBg__img {
    animation-duration: 18s;
  }
}
