/* ===== GLOBAL BASELINES ===== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

:root {
  --color-teal: #1b6e7e;
  /* banner bg */
  --color-cream: #e8ba80;
  --color-gray: #f8f8f8;
  /* star */
  --color-star: #f26933;
  /* underline accent */
  --color-white: #ffffff;
  --color-black: #2b2b2b;
  --font-family-primary: "Montserrat", sans-serif;
  /* font size */
  --font-size-primary: 16px;
  /* content width */
  --content-width: 1920px !important;
}

.site-main {
  overflow: hidden;
  width: 100%;
}

.customize-partial-edit-shortcuts-hidden {
  margin: 0px !important;
}
/* Layout helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: relative;
  z-index: 1000;
}
.site-nav {
  position: relative;
}
#primary-navigation[aria-hidden="true"] {
  display: none;
}
#primary-navigation[aria-hidden="false"] {
  display: block;
}

/* Desktop submenu animation scaffold */
@media (min-width: 769px) {
  .nav__list .menu-item-has-children {
    position: relative;
  }
  .nav__list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    -webkit-transform: translateZ(0) translateY(-10px);
    transform: translateZ(0) translateY(-10px);
    pointer-events: none;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav__list .menu-item-has-children:focus-within > .sub-menu,
  .nav__list .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    pointer-events: auto;
  }
}

/* Disable body scroll when menu is open (mobile drawers) */
.menu-open {
  overflow: hidden;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 12px;
}

.top-banner__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0px 16px;
  /* Gap fallback for older Safari */
  margin-left: -12px;
  margin-right: -12px;
}

.top-banner__inner > * {
  margin-left: 12px;
  margin-right: 12px;
}

/* Modern browsers with gap support */
@supports (gap: 24px) {
  .top-banner__inner {
    gap: 24px;
    margin-left: 0;
    margin-right: 0;
  }
  .top-banner__inner > * {
    margin-left: 0;
    margin-right: 0;
  }
}

.top-banner__text {
  margin: 0;
  text-align: center;
  font-family: var(--font-family-primary);
  font-size: 18px;
}

.top-banner__link {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  margin-left: 8px;
  font-size: 18px;
  border-bottom: 3px solid var(--color-cream);
  text-align: center;
  width: fit-content;
}

.top-banner__phone {
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  right: 132px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-family-primary);
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-align: center;
  transition: right 0.3s ease;
}

/* Utility */
.visually-hidden {
  position: absolute !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Main stylesheet for NoBuilder Blank Theme. Write all global and reusable styles here. */
/* ===== HOME HERO (BEM) ===== */
.home-hero {
  margin-top: 21px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.home-hero.animate-in {
  animation: sectionFadeInUp 0.6s ease-out forwards;
}

.home-hero__inner {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1690px !important;
  /* Gap fallback for older Safari */
  margin-left: -12px;
  margin-right: -12px;
}

.home-hero__inner > * {
  margin-left: 12px;
  margin-right: 12px;
}

/* Modern browsers with gap support */
@supports (gap: 24px) {
  .home-hero__inner {
    gap: 24px;
    margin-left: 0;
    margin-right: 0;
  }
  .home-hero__inner > * {
    margin-left: 0;
    margin-right: 0;
  }
}

.home-hero__title {
  margin: 0 0 6px 0;
  color: var(--color-teal);
  font-weight: 700;
  font-family: var(--font-family-primary);
}

.home-hero__subtitle {
  margin: 0;
  color: var(--color-teal);
  font-weight: 600;
  font-family: var(--font-family-primary);
}

.home-hero_right_dropdown {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-family-primary);
  color: var(--color-teal);
  position: relative;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-out;
  /* margin-right: 20px; */
}

.home-hero_right_dropdown:hover {
  animation: navItemLift 0.3s ease-out forwards;
}

.home-hero_right_dropdown i {
  transition: transform 0.3s ease-out;
}

.home-hero_right_dropdown:hover i {
  animation: arrowSlideDown 0.3s ease-out forwards;
}

.home-hero__right {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  /* Gap fallback for older Safari */
  margin-left: -43.795px;
  margin-right: -43.795px;
}

.home-hero__right > * {
  margin-left: 43.795px;
  margin-right: 43.795px;
}

/* Modern browsers with gap support */
@supports (gap: 87.59px) {
  .home-hero__right {
    gap: 87.59px;
    margin-left: 0;
    margin-right: 0;
  }
  .home-hero__right > * {
    margin-left: 0;
    margin-right: 0;
  }
}

.home-hero_right_dropdown > span {
  margin-right: 20px;
  transition: all 0.3s ease-out;
}

.home-hero_right_dropdown .fa-chevron-down {
  margin-left: 10px;
  font-size: 14px;
  vertical-align: middle;
}

.home-hero_right_dropdown:after {
  content: "";
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
}

.home-hero_right_quote_btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-family-primary);
  font-size: 13px;
  font-weight: bold;
  background-color: var(--color-cream);
  color: var(--color-teal);
  padding: 10px 50px;
  border-radius: 24px;
  letter-spacing: 1.3px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
  opacity: 1;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.home-hero_right_quote_btn:hover {
  animation: buttonLift 0.3s ease-out forwards;
}

.home-hero_right_quote_btn:active {
  animation: buttonLiftActive 0.2s ease-out forwards;
}

.home-hero__left {
  display: -webkit-flex;
  display: flex;
  position: relative;
}

.home-hero__left > img {
  width: 246.92px;
  height: 59.8px;
  width: auto;
  display: block;
  transition: all 0.3s ease-out;
}

.logo {
  display: -webkit-flex;
  display: flex;
  width: 200px;
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  top: 5px;
}

.home-hero_main {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 84.24px;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  /* Gap fallback for older Safari */
  margin-left: -25px;
  margin-right: -25px;
}

.home-hero_main > * {
  margin-left: 25px;
  margin-right: 25px;
}

/* Modern browsers with gap support */
@supports (gap: 50px) {
  .home-hero_main {
    gap: 50px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-hero_main > * {
    margin-left: 0;
    margin-right: 0;
  }
}

.home-hero_main_left {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-top: 148.24px;
  unicode-bidi: normal;
  transition: all 0.3s ease-out;
}

/* Left column headline block */
.home-hero_left_content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  max-width: 430px;
  /* margin: 0 auto 18px 0; */
  text-align: left;
  unicode-bidi: normal;
}
.home-hero_badge {
  width: max-content;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 13px 30px;
  font-family: var(--font-family-primary);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;
}
.home-hero_badge strong {
  color: var(--color-white);
  font-weight: inherit;
  font-style: italic;
  font-weight: 800;
  border-bottom: 3px solid var(--color-cream);
}
.home-hero_main_mobile_collage {
  display: none;
  width: 482px;
  height: 695px;
  background-color: var(--color-cream);
  border-radius: 40px;
  position: relative;
  unicode-bidi: normal;
  margin-top: 44px;
  transition: all 0.3s ease-out;
}
.home-hero_blake_mobile_cheek {
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  bottom: 0px;
  right: 0px;
  padding: 0px 20px 20px 0px;
  width: 482px;
  height: 695px;
  transition: all 0.3s ease-out;
}
.home-hero_heading {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin: 24px 0px 0px 102px;
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 46px;
  color: var(--color-black);
  width: max-content;
  letter-spacing: 0px;
  transition: all 0.3s ease-out;
}

.home-hero_heading__accent {
  color: var(--color-teal);
  font-weight: 800;
  font-style: italic;
}

.home-hero_facility {
  font-weight: 600;
  margin-left: 51px;
  transition: all 0.3s ease-out;
}

.home-hero_kicker {
  margin: 14px 0 0 0;
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
  letter-spacing: 1.8px;
  line-height: 22px;
}

.home-hero_cta {
  margin-top: 43px;
  display: inline-block;
  text-decoration: none;
  background: var(--color-cream);
  color: var(--color-teal);
  padding: 10px 64px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  line-height: 16px;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.home-hero_cta:hover {
  animation: buttonLift 0.3s ease-out forwards;
}

.home-hero_cta:active {
  animation: buttonLiftActive 0.2s ease-out forwards;
}

.home-hero_main_right {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 60px;
  /* Gap fallback for older Safari */
  margin-top: -25.5px;
  margin-bottom: -25.5px;
}

.home-hero_main_right > * {
  margin-top: 25.5px;
  margin-bottom: 25.5px;
}

/* Modern browsers with gap support */
@supports (gap: 51px) {
  .home-hero_main_right {
    gap: 51px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .home-hero_main_right > * {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.home-hero_main_left_bg {
  width: 482px;
  height: 695px;
  background-color: var(--color-cream);
  border-radius: 40px;
  position: relative;
  unicode-bidi: normal;
}

.home-hero_blake_cheek {
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  bottom: 0px;
  right: 0px;
  padding: 0px 20px 20px 0px;
  width: 482px;
  height: 695px;
}

/* Left collage image wrapper */
.home-hero_main_left_collage img {
  display: block;
  max-width: 520px;
  width: 100%;
  height: auto;
  margin: 67px 0 0 102px;
  transition: all 0.3s ease-out;
}

/* Right column text under the image */
.home-hero_richtext {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  max-width: 515px;
  color: var(--color-black);
  font-family: var(--font-family-primary);
}
.home-hero_richtext__title {
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 37px;
  font-size: 30px;
  font-family: var(--font-family-primary);
  width: max-content;
  margin: 0px;
}

.home-hero_richtext__title strong {
  font-style: italic;
  color: var(--color-teal);
}

.home-hero_richtext__subtitle {
  margin: 0 0 26px 0;
  color: var(--color-black);
  font-size: 24px;
  font-family: var(--font-family-primary);
  line-height: 29px;
  font-weight: 500;
  font-style: italic;
}
.home-hero_richtext__body {
  margin: 0 0 20px 0;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 19px;
  color: var(--color-black);
}

.home-hero_richtext__body strong {
  color: var(--color-teal);
}

.home-hero_richtext__cta {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease-out;
  display: inline-flex;
  align-items: center;
}

.home-hero_richtext__cta:hover {
  animation: arrowSlideRight 0.3s ease-out forwards;
}

.home-hero_richtext__cta i {
  margin-left: 10px;
  transition: transform 0.3s ease-out;
}

.home-hero_richtext__cta:hover i {
  animation: arrowSlideRight 0.3s ease-out forwards;
}

.testimonials {
  margin-top: 82px;
  max-width: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonials.animate-in {
  animation: sectionFadeInUp 0.6s ease-out forwards;
}
.testimonials__container {
  overflow: hidden;
  position: relative;
  max-width: 1920px;
  padding: 53px 178.2px 70px 118px;
  background-color: var(--color-gray);
  border-radius: 40px;
  margin: 0px 26px;
}
.testimonials__header {
  margin-bottom: 31px;
}
.testimonials__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  font-family: var(--font-family-primary);
  letter-spacing: 0px;
  line-height: 37px;
}
.testimonials__accent {
  color: var(--color-teal);
  font-style: italic;
  font-weight: 800;
}
.testimonials__list {
  display: -webkit-flex;
  display: flex;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  scroll-behavior: smooth;
  padding: 0 71.8px 0 48px;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* Gap fallback for older Safari */
  margin-left: -42px;
  margin-right: -42px;
}

.testimonials__list > * {
  margin-left: 42px;
  margin-right: 42px;
}

/* Modern browsers with gap support */
@supports (gap: 84px) {
  .testimonials__list {
    gap: 84px;
    margin-left: 0;
    margin-right: 0;
  }
  .testimonials__list > * {
    margin-left: 0;
    margin-right: 0;
  }
}
.testimonials__item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: none;
  border: none;
  padding: 0;
  flex: 0 0 calc(33.333% - 56px); /* 3 visible items on large screens */
  min-width: 260px;
  max-width: 390px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  /* height: 100%; */
}
.testimonials__stars {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 14px;
  font-size: 22px;
  color: var(--color-star);
  letter-spacing: 3px;
  width: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.testimonials__star {
  font-family: inherit;
  color: var(--color-star);
}
.testimonials__blockquote {
  margin: 0 0 18px 0;
  font-size: 16px;
  font-family: var(--font-family-primary);
  color: var(--color-black);
  font-style: normal;
  quotes: """ """ "'" "'";
  letter-spacing: 0px;
  line-height: 19px;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.testimonials__text {
  line-height: 1.4;
  font-size: 16px;
  font-family: var(--font-family-primary);
  display: block;
  width: 100%;
}
.testimonials__coached {
  color: var(--color-teal);
  font-weight: 700;
}
.testimonials__author {
  margin-top: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}
.testimonials__name {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 37px;
  color: var(--color-black);
  font-family: var(--font-family-primary);
}
.testimonials__location {
  font-size: 24px;
  color: var(--color-black);
  letter-spacing: 0px;
  line-height: 29px;
  font-style: italic;
  font-family: var(--font-family-primary);
}
.testimonials__nav {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  /* Gap fallback for older Safari */
  margin-left: -8px;
  margin-right: -8px;
}

.testimonials__nav > * {
  margin-left: 8px;
  margin-right: 8px;
}

/* Modern browsers with gap support */
@supports (gap: 16px) {
  .testimonials__nav {
    gap: 16px;
    margin-left: 0;
    margin-right: 0;
  }
  .testimonials__nav > * {
    margin-left: 0;
    margin-right: 0;
  }
}
.testimonials__nav-btn {
  background: none;
  border: none;
  color: var(--color-teal);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0 7px;
  border-radius: 50%;
  transition: all 0.3s ease-out;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__nav-btn:hover {
  animation: navButtonScale 0.3s ease-out forwards;
}

.testimonials__nav-btn:active {
  animation: navButtonScaleActive 0.2s ease-out forwards;
}

.upgrade-hero {
  margin-top: 53px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 100px; */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.upgrade-hero.animate-in {
  animation: sectionFadeInUp 0.6s ease-out forwards;
}

.upgrade-hero__topdecoration {
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  top: -26px;
  left: 46px;
  background-color: var(--color-cream);
  height: 111px;
  width: 150%;
  z-index: -1;
  border-top-left-radius: 40px;
}

.upgrade-hero__bottomdecoration {
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  bottom: -26px;
  right: 46px;
  background-color: var(--color-cream);
  height: 111px;
  width: 150%;
  z-index: -1;
  border-bottom-right-radius: 40px;
}

.upgrade-hero__mainboard {
  max-width: 1494px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 77px 170px 104px 25px;
  background-color: var(--color-teal);
  border-radius: 40px;
  margin: 0 32px 0px 26px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* Gap fallback for older Safari */
  margin-left: -24px;
  margin-right: -24px;
}

.upgrade-hero__mainboard > * {
  margin-left: 24px;
  margin-right: 24px;
}

/* Modern browsers with gap support */
@supports (gap: 48px) {
  .upgrade-hero__mainboard {
    gap: 48px;
    margin-left: 0;
    margin-right: 0;
  }
  .upgrade-hero__mainboard > * {
    margin-left: 0;
    margin-right: 0;
  }
}

.upgrade-hero__board-upgrade-label {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: auto;
  align-items: center;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  color: #66a7ae;
  font-weight: 800;
  font-size: 70px;
  text-align: center;
  letter-spacing: 7px;
  line-height: 86px;
  font-family: var(--font-family-primary);
}

.upgrade-hero__mainboard-child {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex-grow: 1;
}

.upgrade-hero__mainboard-header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-family-primary);
  width: 100%;
  align-items: center;
  /* Gap fallback for older Safari */
  margin-top: -8.5px;
  margin-bottom: -8.5px;
}

.upgrade-hero__mainboard-header > * {
  margin-top: 8.5px;
  margin-bottom: 8.5px;
}

/* Modern browsers with gap support */
@supports (gap: 17px) {
  .upgrade-hero__mainboard-header {
    gap: 17px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .upgrade-hero__mainboard-header > * {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.upgrade-hero__headline {
  font-size: 30px;
  text-align: center;
  letter-spacing: 0px;
  line-height: 37px;
  color: var(--color-white);
  margin: 0px;
  font-weight: 500;
}

.upgrade-hero__headline span {
  color: var(--color-cream);
  border: none;
}

.upgrade-hero__accent {
  font-style: italic;
  font-size: 24px;
  font-optical-sizing: var(--color-cream);
  border-bottom: 2px solid var(--color-cream);
}

.upgrade-hero__subheadline {
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 29px;
  color: var(--color-white);
  margin: 0px;
  text-align: center;
  font-weight: 500;
  max-width: 500px;
}

.upgrade-hero__mainnav {
  margin-top: 75px;
  padding-left: 65px;
}

.upgrade-hero__mainnavlist {
  display: -webkit-grid;
  display: grid;
  -webkit-grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  list-style: none;
  /* Gap fallback for older Safari */
  margin-left: -8.5px;
  margin-right: -8.5px;
  margin-top: -8.5px;
  margin-bottom: -8.5px;
}

.upgrade-hero__mainnavlist > * {
  margin-left: 8.5px;
  margin-right: 8.5px;
  margin-top: 8.5px;
  margin-bottom: 8.5px;
}

/* Modern browsers with gap support */
@supports (gap: 17px) {
  .upgrade-hero__mainnavlist {
    gap: 17px;
    margin: 0;
  }
  .upgrade-hero__mainnavlist > * {
    margin: 0;
  }
}

.upgrade-hero__mainnavitem {
  font-size: 13px;
  letter-spacing: 1.3px;
  line-height: 16px;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-primary);
}

.upgrade-hero__mainnavitem--active {
  color: var(--color-cream);
}

.upgrade-hero__mainpanel {
  margin-top: 69px;
  background-color: var(--color-white);
  border-radius: 40px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.upgrade-hero__mainpanel.animate-in {
  animation: sectionFadeInUp 0.6s ease-out forwards;
}

.upgrade-hero__maincontent {
  padding: 78px 98px 45px 97px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
  max-width: 661px;
  width: auto;
  transition: all 0.3s ease-out;
}

.upgrade-hero__mainnavitem {
  transition: all 0.3s ease-out;
  position: relative;
}

.upgrade-hero__mainnavitem:hover {
  animation: navItemLift 0.3s ease-out forwards;
}

.upgrade-hero__mainpanel-title {
  font-size: 30px;
  letter-spacing: 0px;
  line-height: 37px;
  color: var(--color-black);
  font-family: var(--font-family-primary);
}

.upgrade-hero__maincontent span {
  font-family: var(--font-family-primary);
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 19px;
  margin-bottom: 20px;
}

.upgrade-hero__strong {
  font-weight: 700;
  color: var(--color-teal);
}

.upgrade-hero__seemore {
  margin-top: 53px;
  font-family: var(--font-family-primary);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 19px;
  padding: 0px 15px;
  text-decoration: none;
  color: var(--color-teal);
  font-weight: 700;
  transition: all 0.3s ease-out;
  display: inline-flex;
  align-items: center;
}

.upgrade-hero__seemore:hover {
  animation: arrowSlideRight 0.3s ease-out forwards;
}

.upgrade-hero__seemore i {
  transition: transform 0.3s ease-out;
}

.upgrade-hero__seemore:hover i {
  animation: arrowSlideRight 0.3s ease-out forwards;
}

.upgrade-hero__mainimg {
  height: 100%;
}

.steps-section {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 163px;
  background-color: var(--color-gray);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.steps-section.animate-in {
  animation: sectionFadeInUp 0.6s ease-out forwards;
}
.steps-section__container {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: start;
  max-width: 1914px;
  width: 100%;
  padding: 117px 0 176px 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* Gap fallback for older Safari */
  margin-left: -70.5px;
  margin-right: -70.5px;
}

.steps-section__container > * {
  margin-left: 70.5px;
  margin-right: 70.5px;
}

/* Modern browsers with gap support */
@supports (gap: 141px) {
  .steps-section__container {
    gap: 141px;
    margin-left: 0;
    margin-right: 0;
  }
  .steps-section__container > * {
    margin-left: 0;
    margin-right: 0;
  }
}

.steps-section__image {
  flex-shrink: 0;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.steps-section__img {
  transition: all 0.3s ease-out;
  border-radius: 70px;
  width: 100%;
  max-width: 324px;
  height: 546px;
  object-fit: cover;
  box-shadow: none;
  background: var(--color-white);
  display: block;
  z-index: 2;
}
.steps-section__img-overlay {
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  top: 0;
  left: -16px;
  width: 100%;
  height: 100%;
  background-color: var(--color-cream);
  border-radius: 70px;
  z-index: 1;
}
.steps-section__maincontent {
  max-width: 620px;
  margin-left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.steps-section__cta {
  color: var(--color-teal);
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-family-primary);
  line-height: 19px;
  transition: all 0.3s ease-out;
}

.steps-section__cta:hover {
  animation: arrowSlideRight 0.3s ease-out forwards;
}

.steps-section__cta i {
  transition: transform 0.3s ease-out;
  margin-left: 4px;
}

.steps-section__cta:hover i {
  animation: arrowSlideRight 0.3s ease-out forwards;
}

.steps-section__cta span {
  font-size: 1.3em;
  vertical-align: middle;
  margin-left: 3px;
}
.steps-section__heading {
  color: var(--color-black);
  font-size: 30px;
  font-weight: 700;
  margin: 21px 0 10px 10px;
  font-family: var(--font-family-primary);
  letter-spacing: 0px;
  line-height: 37px;
  transition: all 0.3s ease-out;
}

.steps-section__accent {
  color: var(--color-teal);
  font-style: italic;
  font-weight: 800;
  transition: all 0.3s ease-out;
}
.steps-section__steps {
  counter-reset: stepnum;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-family-primary);
  margin-left: 36.8px;
}
.steps-section__step {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  margin-bottom: 34px;
  /* Gap fallback for older Safari */
  margin-left: -11px;
  margin-right: -11px;
}

.steps-section__step > * {
  margin-left: 11px;
  margin-right: 11px;
}

/* Modern browsers with gap support */
@supports (gap: 22px) {
  .steps-section__step {
    gap: 22px;
    margin-left: 0;
    margin-right: 0;
  }
  .steps-section__step > * {
    margin-left: 0;
    margin-right: 0;
  }
}
.steps-section__number {
  color: var(--color-teal);
  font-size: 70px;
  font-weight: 800;
  line-height: 86px;
  font-family: var(--font-family-primary);
  font-style: italic;
}

.steps-section__step-content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: 9px;
  margin-top: 30px;
  /* Gap fallback for older Safari */
  margin-top: -10.5px;
  margin-bottom: -10.5px;
}

.steps-section__step-content > * {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
}

/* Modern browsers with gap support */
@supports (gap: 21px) {
  .steps-section__step-content {
    gap: 21px;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .steps-section__step-content > * {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.steps-section__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0px;
  font-style: italic;
  font-family: var(--font-family-primary);
  display: block;
  color: var(--color-black);
}
.steps-section__teal {
  color: var(--color-teal);
  font-weight: bold;
  font-family: var(--font-family-primary);
}
.steps-section__desc {
  font-size: 16px;
  color: var(--color-black);
  line-height: 19px;
  display: block;
  letter-spacing: 0px;
  font-family: var(--font-family-primary);
}

.site-footer {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 82px 0px 36px 0px;
  gap: 74px;
  transition: all .3s ease-out;
}
.site-footer__container {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1914px;
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 16px;
}
.site-footer__logo-area {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 190.96px;
  transition: all .3s ease-out;
}
.site-footer__logo {
  height: auto;
}
.site-footer__nav {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  margin-right: 144px;
  /* Gap fallback for older Safari */
  margin-left: -29px;
  margin-right: calc(144px - 29px);
}

.site-footer__nav > * {
  margin-left: 29px;
  margin-right: 29px;
}

/* Modern browsers with gap support */
@supports (gap: 58px) {
  .site-footer__nav {
    gap: 58px;
    margin-left: 0;
    margin-right: 144px;
  }
  .site-footer__nav > * {
    margin-left: 0;
    margin-right: 0;
  }
}
.site-footer__navlist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  /* Gap fallback for older Safari */
  margin-top: -10.5px;
  margin-bottom: -10.5px;
}

.site-footer__navlist > * {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
}

/* Modern browsers with gap support */
@supports (gap: 21px) {
  .site-footer__navlist {
    gap: 21px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .site-footer__navlist > * {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.site-footer__navlist li {
  margin: 0 0 7px 0;
}
.site-footer__navlist a {
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: 13px;
  letter-spacing: 1.3px;
  line-height: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

.site-footer__navlist a:hover {
  animation: navItemLift 0.3s ease-out forwards;
}
.site-footer__contact {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  /* Gap fallback for older Safari */
  margin-top: -6.5px;
  margin-bottom: -6.5px;
}

.site-footer__contact > * {
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}

/* Modern browsers with gap support */
@supports (gap: 13px) {
  .site-footer__contact {
    gap: 13px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .site-footer__contact > * {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.site-footer__phone {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  font-family: var(--font-family-primary);
  color: var(--color-white);
  letter-spacing: 1.6px;
  line-height: 19px;
  text-transform: uppercase;
}
.site-footer__quote-btn {
  display: inline-block;
  background: var(--color-cream);
  color: var(--color-teal);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  padding: 10px 50px;
  text-decoration: none;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.site-footer__quote-btn:hover {
  animation: buttonLift 0.3s ease-out forwards;
}

.site-footer__quote-btn:active {
  animation: buttonLiftActive 0.2s ease-out forwards;
}
.site-footer__social {
  display: -webkit-flex;
  display: flex;
  /* Gap fallback for older Safari */
  margin-left: -12.495px;
  margin-right: -12.495px;
}

.site-footer__social > * {
  margin-left: 12.495px;
  margin-right: 12.495px;
}

/* Modern browsers with gap support */
@supports (gap: 24.99px) {
  .site-footer__social {
    gap: 24.99px;
    margin-left: 0;
    margin-right: 0;
  }
  .site-footer__social > * {
    margin-left: 0;
    margin-right: 0;
  }
}
.site-footer__social-link {
  transition: all 0.3s ease-out;
  display: inline-block;
}

.site-footer__social-link:hover {
  animation: navButtonScale 0.3s ease-out forwards;
}

.site-footer__social-link svg {
  fill: var(--color-white);
  transition: transform 0.3s ease-out;
}

.site-footer__social-link:hover svg {
  transform: scale(1.1);
}
.site-footer__bottom {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  /* Gap fallback for older Safari */
  margin-left: -74.5px;
  margin-right: -74.5px;
}

.site-footer__bottom > * {
  margin-left: 74.5px;
  margin-right: 74.5px;
}

/* Modern browsers with gap support */
@supports (gap: 149px) {
  .site-footer__bottom {
    gap: 149px;
    margin-left: 0;
    margin-right: 0;
  }
  .site-footer__bottom > * {
    margin-left: 0;
    margin-right: 0;
  }
}
.site-footer__note {
  font-family: var(--font-family-primary);
  font-size: 13px;
  letter-spacing: 1.3px;
  line-height: 16px;
}
.site-footer__note--highlight {
  color: var(--color-cream);
  font-weight: 700;
  letter-spacing: 0.22px;
}

@media (max-width: 1536px) {
  .top-banner__phone {
    right: 20px;
  }
  .home-hero_main_left {
    padding-left: 50px;
  }
  .home-hero_heading {
    margin-left: 0px;
  }
  .home-hero_facility {
    margin-left: 0px;
  }
  .home-hero_main_left_collage img {
    margin-left: 0px;
  }
  .testimonials__list {
    padding: 0px;
    margin-left: 0;
    margin-right: 0;
  }
  
  @supports (gap: 84px) {
    .testimonials__list {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .upgrade-hero__board-upgrade-label {
    display: none;
  }
  .upgrade-hero__mainboard {
    padding: 77px 25px 104px 25px;
  }
  .upgrade-hero__maincontent {
    padding: 48px 58px 45px 57px;
  }
  .site-footer__bottom {
    margin-left: -50px;
    margin-right: -50px;
  }
  
  .site-footer__bottom > * {
    margin-left: 50px;
    margin-right: 50px;
  }
  
  @supports (gap: 100px) {
    .site-footer__bottom {
      gap: 100px;
      margin-left: 0;
      margin-right: 0;
    }
    .site-footer__bottom > * {
      margin-left: 0;
      margin-right: 0;
    }
  }
}

@media (max-width: 1280px) {
  .top-banner {
    padding: 0px;
  }
  .top-banner__inner {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .top-banner__inner > * {
    margin-top: 0.5px;
    margin-bottom: 0.5px;
  }
  
  @supports (gap: 1px) {
    .top-banner__inner {
      gap: 1px;
    }
    .top-banner__inner > * {
      margin-top: 0;
      margin-bottom: 0;
    }
  }
  .top-banner__text {
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
    padding: 16px 30px;
  }
  .top-banner__phone {
    position: static;
    display: block;
    width: 100%;
    background: var(--color-cream);
    color: var(--color-teal);
    padding: 10px 0;
  }
  .home-hero__left > img {
    width: 230px;
    height: 55px;
  }
  .home-hero_main_left {
    width: 100%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  .home-hero_main {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .home-hero_left_content {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
  .home-hero_badge {
    width: 80%;
  }
  .home-hero_heading {
    max-width: 100%;
  }
  .home-hero_main_left_collage {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .home-hero_main_left_bg {
    display: none;
  }
  .home-hero_main_mobile_collage {
    display: -webkit-flex;
    display: flex;
  }
  .home-hero_main_right {
    width: 100%;
    align-items: center;
  }
  .testimonials__container {
    padding: 45px 120.2px 50px 80px;
  }
  .upgrade-hero__seemore {
    margin-top: 23px;
  }
  .steps-section__container {
    margin-left: -25px;
    margin-right: -25px;
  }
  
  .steps-section__container > * {
    margin-left: 25px;
    margin-right: 25px;
  }
  
  @supports (gap: 50px) {
    .steps-section__container {
      gap: 50px;
      margin-left: 0;
      margin-right: 0;
    }
    .steps-section__container > * {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .site-footer__bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: -6.5px;
    margin-right: -6.5px;
  }
  
  .site-footer__bottom > * {
    margin-left: 6.5px;
    margin-right: 6.5px;
  }
  
  @supports (gap: 13px) {
    .site-footer__bottom {
      gap: 13px;
      margin-left: 0;
      margin-right: 0;
    }
    .site-footer__bottom > * {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .site-footer__logo-area {
    margin-right: 130px;
  }
  .site-footer__nav {
    margin-right: 84px;
  }
}

@media (max-width: 1024px) {
  .home-hero_main {
    margin-left: -19.5px;
    margin-right: -19.5px;
  }
  
  .home-hero_main > * {
    margin-left: 19.5px;
    margin-right: 19.5px;
  }
  
  @supports (gap: 39px) {
    .home-hero_main {
      gap: 39px;
      margin-left: auto;
      margin-right: auto;
    }
    .home-hero_main > * {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .top-banner__text {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
  .home-hero__left > img {
    width: 212.59px;
    height: 51.48px;
  }
  .home-hero_main_mobile_collage {
    width: 400px;
    height: 550px;
  }
  .home-hero_blake_mobile_cheek {
    width: 400px;
    height: 550px;
    padding: 0px 15px 15px 0px;
  }
  .home-hero_main_left_collage img {
    max-width: 400px;
    margin-top: 57px;
  }
  .home-hero_heading {
    margin-top: 39px;
  }
  .testimonials__title {
    font-size: 28px;
    line-height: 34px;
  }
  .testimonials__header {
    margin-bottom: 57px;
  }
  .testimonials__container {
    padding: 45px 60.2px 40px 50px;
  }
  .testimonials__text {
    font-size: 14px;
    line-height: 18px;
  }
  .testimonials__name {
    font-size: 28px;
  }
  .testimonials__stars {
    margin-bottom: 21px;
  }
  .testimonials__star {
    font-size: 25px;
  }
  .testimonials__item {
    flex: 0 0 calc(50% - 42px);
  }
  .upgrade-hero__mainpanel {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .upgrade-hero__maincontent {
    order: 1;
  }
  .upgrade-hero__mainimg {
    width: 346px;
    order: 0;
  }
  .upgrade-hero__mainnav {
    padding-left: 0px;
  }
  .upgrade-hero__mainnavlist {
    grid-template-columns: 1fr 1fr;
  }
  .upgrade-hero__mainboard {
    padding: 26px 22px 13px 26px;
  }
  .upgrade-hero__mainboard-header {
    gap: 21px;
  }
  .upgrade-hero__mainnav {
    margin-top: 51px;
  }
  .upgrade-hero__topdecoration {
    display: none;
  }
  .upgrade-hero__bottomdecoration {
    display: none;
  }
  .upgrade-hero__mobile-decoration {
    position: absolute;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    top: -13px;
    left: 15px;
    width: 100%;
    height: 102.5%;
    z-index: -1;
    border-radius: 40px;
    background-color: var(--color-cream);
  }
  .steps-section__container {
    margin-left: -19px;
    margin-right: -19px;
  }
  
  .steps-section__container > * {
    margin-left: 19px;
    margin-right: 19px;
  }
  
  @supports (gap: 38px) {
    .steps-section__container {
      gap: 38px;
      margin-left: 0;
      margin-right: 0;
    }
    .steps-section__container > * {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .steps-section__maincontent {
    max-width: 520px;
  }
  .steps-section__container {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 95px 0px 74px 0px;
  }
  .steps-section__image {
    order: 1;
  }
  .steps-section__maincontent {
    order: 0;
  }
  .steps-section__cta {
    margin-bottom: 28px;
  }
  .steps-section__heading {
    margin: 0 0 0 10px;
  }
  .steps-section__heading {
    margin-bottom: 39px;
  }
  .steps-section__step {
    margin-bottom: 37px;
  }
  .steps-section__img {
    max-width: 261px;
    width: 261px;
    height: 334px;
  }
  .site-footer__container {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
  .site-footer__logo-area {
    margin-right: 0px;
    margin-bottom: 30px;
    order: 1;
  }
  .site-footer__nav {
    margin-right: 0px;
    order: 3;
  }
  .site-footer__contact {
    order: 2;
  }
  .site-footer__phone {
    margin-bottom: 80px;
    order: 2;
  }
  .site-footer__quote-btn {
    margin-bottom: 20px;
    order: 1;
    width: 238px;
    text-align: center;
  }
  .site-footer__social {
    margin-bottom: 50px;
    order: 3;
  }
  .site-footer {
    padding-bottom: 46px;
    gap: 98px;
  }
}

@media (max-width: 768px) {
  .home-hero__inner {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .home-hero__left {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  .home-hero__right {
    order: 0;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: initial;
  }
  
  .home-hero__right > * {
    margin-left: 0;
    margin-right: 0;
  }
  .home-hero__inner {
    margin-left: -21.76px;
    margin-right: -21.76px;
  }
  
  .home-hero__inner > * {
    margin-left: 21.76px;
    margin-right: 21.76px;
  }
  
  @supports (gap: 43.52px) {
    .home-hero__inner {
      gap: 43.52px;
      margin-left: 0;
      margin-right: 0;
    }
    .home-hero__inner > * {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .home-hero_main {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 24px 20px;
    margin-top: 40px;
    margin-left: -14px;
    margin-right: -14px;
  }
  
  .home-hero_main > * {
    margin-left: 14px;
    margin-right: 14px;
  }
  
  @supports (gap: 28px) {
    .home-hero_main {
      gap: 28px;
      margin-left: auto;
      margin-right: auto;
    }
    .home-hero_main > * {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .home-hero_richtext__title {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .home-hero_left_content {
    margin: 0 0 16px 0;
    text-align: center;
  }
  .home-hero_heading {
    font-size: 28px;
    align-items: flex-start;
  }
  .home-hero_badge {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    margin: 0px;
    font-size: 14px;
  }
  .home-hero_main_mobile_collage {
    width: 277px;
    height: 372px;
  }
  .home-hero_blake_mobile_cheek {
    width: 277px;
    height: 372px;
    padding: 0px 10px 10px 0px;
  }
  .home-hero_main_left_collage img {
    max-width: 277px;
  }
  .home-hero_facility {
    text-align: start;
  }
  .home-hero_right_quote_btn {
    padding: 10px 20px;
  }
  .home-hero_right_dropdown > span {
    margin-right: 5px;
  }
  .testimonials__item {
    flex: 0 0 100%;
  }
  .testimonials__container {
    padding: 45px 20px 40px 20px;
    margin: 0px;
  }
  .upgrade-hero__headline {
    font-size: 28px;
  }
  .upgrade-hero__subheadline {
    font-size: 20px;
  }
  .upgrade-hero__accent {
    font-size: 28px;
  }
  .upgrade-hero__mainnavitem {
    text-align: center;
  }
  .upgrade-hero__mainnavlist {
    grid-template-columns: 1fr;
    padding-left: 0px;
    text-align: center;
  }
  .upgrade-hero__mainnavitem--active {
    background-color: var(--color-cream);
    border-radius: 40px;
    padding: 5px 40px;
    color: var(--color-white);
  }
  .upgrade-hero__maincontent {
    padding: 39px 21px 60px 21px;
    text-align: center;
    align-items: center;
  }
  .upgrade-hero__maincontent span {
    font-size: 14px;
  }
  .upgrade-hero__mainimg {
    width: 100%;
  }
  .upgrade-hero__mainboard {
    margin: 0 20px 0px 5px;
    padding: 26px 15px 13px 15px;
  }
  .steps-section__heading {
    font-size: 28px;
  }
  .steps-section__heading {
    margin-left: 0px;
  }
  .steps-section__steps {
    margin-left: 0px;
  }
  .steps-section__number {
    font-size: 60px;
  }
  .steps-section__title {
    font-size: 20px;
  }
  .steps-section__desc {
    font-size: 14px;
  }
  .steps-section__maincontent {
    max-width: 390px;
  }
  .steps-section__container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .site-footer__navlist {
    text-align: center;
  }
  .site-footer__nav {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  
  .site-footer__nav > * {
    margin-top: 10.5px;
    margin-bottom: 10.5px;
  }
  
  @supports (gap: 21px) {
    .site-footer__nav {
      gap: 21px;
    }
    .site-footer__nav > * {
      margin-top: 0;
      margin-bottom: 0;
    }
  }
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer__note {
    text-align: center;
  }
  .site-footer__quote-btn {
    width: 100%;
  }
}

/* ===== GENERAL ARROW ICON ANIMATIONS ===== */
/* Ensure all arrow icons animate when their parent link/button is hovered */
a:hover .fa-angle-right,
button:hover .fa-angle-right {
  animation: arrowSlideRight 0.3s ease-out forwards;
}

a:hover .fa-angle-down,
button:hover .fa-angle-down {
  animation: arrowSlideDown 0.3s ease-out forwards;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes buttonLift {
  0% {
    transform: translateY(0);
    box-shadow: none;
  }
  100% {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 110, 126, 0.2);
  }
}

@keyframes buttonLiftActive {
  0% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes arrowSlideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(4px);
  }
}

@keyframes arrowSlideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}

@keyframes navItemLift {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-2px);
    opacity: 0.8;
  }
}

@keyframes navButtonScale {
  0% {
    transform: scale(1);
    background-color: transparent;
  }
  100% {
    transform: scale(1.2);
    background-color: rgba(27, 110, 126, 0.1);
  }
}

@keyframes navButtonScaleActive {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes sectionFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Safari fallback: Ensure sections are visible if JS fails or is disabled */
/* Sections will be visible by default, then hidden by JS if animation is supported */
.no-js .home-hero,
.no-js .testimonials,
.no-js .upgrade-hero__mainpanel,
.no-js .steps-section,
.no-js .upgrade-hero {
  opacity: 1 !important;
  transform: none !important;
}

/* Ensure footer and banner are always visible (they don't need scroll animations) */
.site-footer,
.top-banner {
  opacity: 1 !important;
  transform: none !important;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .top-banner__link {
    transition: opacity 0.2s ease;
  }

  .top-banner__link:hover {
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
