*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

.button {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 4px;
  box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.25);
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.8s ease-in-out;
}
@media (min-width: 480px) {
  .button {
    width: fit-content;
  }
}
.button--primary {
  background-color: #19191B;
  color: #FFFFFF;
}
.button--primary:hover {
  background: linear-gradient(90deg, #D70205 0%, #B80205 50%, #570102 100%);
}
.button--secondary {
  background-color: #FFFFFF;
  color: #19191B;
  border: 2px solid #19191B;
}
.button--secondary:hover {
  background: #19191B;
  color: #FFFFFF;
}

.eyebrow {
  position: relative;
  isolation: isolate;
  min-height: 2.75rem;
  padding: 0.5rem 0.625rem 0.5rem 3.5rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(90deg, #D70205 0%, #B80205 50%, #570102 100%);
  color: #FFFFFF;
  font-size: clamp(0.875rem, 0.15625vw + 0.84375rem, 1rem);
  font-weight: 500;
  line-height: 1.2;
}
.eyebrow__text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.eyebrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 2.75rem;
  height: 100%;
  border: 2px solid #D70205;
  border-radius: 999px;
  background: #FFFFFF url("../assets/icons/arrow-right.svg") center/1.5rem no-repeat;
}
@media (min-width: 62rem) {
  .eyebrow {
    min-height: 3.375rem;
    padding: 1rem 1rem 1rem 5rem;
  }
  .eyebrow::before {
    width: 4rem;
    border-width: 3px;
    background-size: 2rem;
  }
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Manrope", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

p {
  line-height: 1.5;
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
}
.header__container {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: auto;
  min-height: 5rem;
  padding-inline: 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header__logo {
  display: inline-flex;
  flex-shrink: 0;
}
.header__logo-image {
  width: clamp(10rem, 5vw + 8.4rem, 12.5rem);
}
.header__chevron {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.25s ease;
}
.header__nav, .header__cta {
  display: none;
}
.header__menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.25rem;
}
.header__mobile {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100svh;
  padding: 6rem 5vw 2rem;
  background-color: #FFFFFF;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.6s ease, visibility 0s linear 0.6s;
  overflow-y: auto;
}
.header__mobile.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.6s ease, visibility 0s;
}
.header__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
}
.header__mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 16px;
  color: #414145;
}
.header__mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}
.header__mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.header__mobile-dropdown-link {
  display: block;
  padding: 0.7rem 0 0.7rem 1rem;
  font-size: 15px;
  color: #5B5B60;
}
.header__mobile-item--dropdown.is-open .header__mobile-dropdown {
  max-height: 10rem;
  opacity: 1;
}
.header__mobile-item--dropdown.is-open .header__chevron {
  transform: rotate(180deg);
}
@media (min-width: 1200px) {
  .header__container {
    min-height: 6rem;
  }
  .header__nav, .header__cta {
    display: block;
  }
  .header__list {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 1.75vw, 2.5rem);
  }
  .header__link {
    padding: 0.8rem;
    font-size: clamp(0.875rem, 0.15625vw + 0.84375rem, 1rem);
    color: #5B5B60;
    transition: color 0.2s ease;
    border: none;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
  }
  .header__link:hover, .header__link--active {
    color: #D70205;
  }
  .header__item--dropdown {
    position: relative;
  }
  .header__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
  }
  .header__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 12rem;
    padding: 0.5rem;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10;
  }
  .header__dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 15px;
    color: #5B5B60;
    border-radius: 0.35rem;
  }
  .header__dropdown-link:hover {
    color: #D70205;
  }
  .header__item--dropdown.is-open .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header__item--dropdown.is-open .header__chevron {
    transform: rotate(180deg);
  }
  .header__cta {
    padding: 0.875rem 1.25rem;
    font-size: clamp(0.875rem, 0.15625vw + 0.84375rem, 1rem);
    white-space: nowrap;
  }
  .header__menu-toggle, .header__mobile {
    display: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: #F7F7F7;
  background-image: url("../assets/images/hero-background-2000w.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.hero__container {
  position: relative;
  min-height: 100svh;
  max-width: 1920px;
  margin: auto;
  padding-block: 7.5rem 0;
  padding-inline: 5vw;
  display: flex;
  flex-direction: column;
}
.hero__content {
  width: 100%;
  max-width: 42rem;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: clamp(2rem, 2vw + 1.6rem, 4rem);
  font-weight: 500;
  margin-top: 0.5rem;
}
.hero__title-highlight {
  color: #D70205;
  font-weight: 700;
}
.hero__description {
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  color: #5B5B60;
  margin: 1rem 0 2rem 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__visual {
  position: relative;
  width: 100%;
  margin-top: auto;
  z-index: 1;
}
.hero__image {
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .hero__image {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .hero {
    background-image: url("../assets/images/hero-background-3900w.webp");
    background-position: center;
    background-size: cover;
  }
  .hero__container {
    min-height: 42rem;
    padding-block: 10rem 8rem;
    padding-inline: 5vw;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .hero__content {
    width: 50%;
    flex: 0 0 50%;
  }
  .hero__visual {
    position: relative;
    bottom: auto;
    left: auto;
    width: 50%;
    flex: 0 0 50%;
    transform: none;
  }
  .hero__visual picture {
    position: absolute;
    right: 0;
    bottom: -8rem;
    width: min(100%, 800px);
  }
  .hero__image {
    width: 100%;
  }
}

.problem {
  background-color: #FFFFFF;
}
.problem__container {
  width: min(100%, 1394px);
  margin-inline: auto;
  margin-block: clamp(4rem, 6vw + 2.8rem, 10rem);
  padding-inline: 5vw;
}
.problem__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.problem__title {
  font-size: clamp(2rem, 1.5vw + 1.7rem, 3.5rem);
  font-weight: 500;
}
.problem__title span {
  color: #D70205;
  font-weight: 700;
}
.problem__list {
  position: relative;
  display: grid;
  gap: 1.5rem;
}
.problem__list::before {
  content: "";
  position: absolute;
  top: 2.75rem;
  bottom: 2.75rem;
  left: 2.5rem;
  width: 0.5rem;
  background-color: #D70205;
  box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.problem__item {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: start;
  gap: 1.5rem;
}
.problem__icon {
  position: relative;
  z-index: 1;
  width: 5.5rem;
  height: 5.5rem;
  padding: 1rem;
  border-radius: 50%;
  background-color: #D70205;
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.problem__description {
  padding-top: 0.25rem;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  color: #5B5B60;
}
@media (min-width: 992px) {
  .problem__content {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
  }
  .problem__title, .problem__list {
    width: 50%;
  }
  .problem__list {
    max-width: 32rem;
  }
}

.features {
  position: relative;
  height: 500svh;
  background-color: #19191B;
}
.features__container {
  position: sticky;
  top: 0;
  width: min(100%, 1920px);
  height: 100svh;
  margin-inline: auto;
  padding-inline: 5vw;
  overflow: hidden;
}
.features__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 10px;
  background: linear-gradient(90deg, #D70205 0%, #B80205 50%, #570102 100%);
  z-index: 10;
  transition: width 0.1s linear;
}
.features__list {
  display: flex;
  width: 500%;
  height: 100%;
  transform: translateX(0);
  will-change: transform;
}
.features__item {
  position: relative;
  flex: 0 0 20%;
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding-inline: 3vw;
  padding-block: clamp(4rem, 6vw + 2.8rem, 10rem);
}
@media (min-width: 768px) {
  .features__item {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
}
.features__visual, .features__content {
  width: 100%;
}
.features__content {
  max-width: 37rem;
}
.features__eyebrow::before {
  background: #19191B url("../assets/icons/arrow-right.svg") center/1.5rem no-repeat;
}
.features__label {
  margin-bottom: 0.5rem;
}
.features__item-title {
  font-size: clamp(2rem, 1.5vw + 1.7rem, 3.5rem);
  font-weight: 500;
  color: #FFFFFF;
}
.features__item-description {
  margin-top: 1rem;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  color: #C4C4C6;
}

.coverage {
  overflow: hidden;
  background-color: #FFFFFF;
}
.coverage__container {
  width: min(100%, 1394px);
  margin-inline: auto;
  padding-inline: 5vw;
  padding-block: clamp(4rem, 6vw + 2.8rem, 10rem);
  display: flex;
  flex-direction: column;
}
.coverage__content {
  width: 100%;
  max-width: 38rem;
  position: relative;
  z-index: 1;
}
.coverage__title {
  font-size: clamp(2rem, 1.5vw + 1.7rem, 3.5rem);
  font-weight: 500;
  color: #D70205;
}
.coverage__title-highlight {
  font-weight: 700;
}
.coverage__description {
  margin-top: 1rem;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  color: #5B5B60;
}
.coverage__button {
  display: inline-block;
  margin-top: 2rem;
}
.coverage__visual {
  width: 100%;
  margin-top: 2rem;
}
.coverage__image {
  width: 100%;
}

.audience {
  background-color: #FFFFFF;
}
.audience__container {
  width: min(100%, 1394px);
  margin: auto;
  padding-bottom: clamp(4rem, 6vw + 2.8rem, 10rem);
  padding-inline: 5vw;
}
.audience__header {
  margin-inline: auto;
  text-align: center;
}
.audience__title {
  font-size: clamp(2rem, 1.5vw + 1.7rem, 3.5rem);
  font-weight: 500;
  color: #19191B;
}
.audience__title-highlight {
  color: #D70205;
  font-weight: 700;
}
.audience__description {
  margin-top: 1rem;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  color: #5B5B60;
}
.audience__list {
  margin-top: clamp(2.5rem, 3vw + 1.9rem, 5.5rem);
  display: grid;
  gap: 3rem;
}
.audience__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.audience__content {
  min-height: 12rem;
  border-radius: 4px;
}
.audience__visual {
  height: 12rem;
  overflow: hidden;
}
.audience__content {
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #19191B;
  background-image: url("../assets/images/audience-card-background-1400w.webp");
  background-position: center;
  background-size: cover;
  color: #FFFFFF;
}
.audience__item-title {
  font-size: clamp(1.375rem, 0.625vw + 1.25rem, 2rem);
  font-weight: 600;
}
.audience__item-description {
  margin-top: 0.75rem;
  font-size: clamp(0.875rem, 0.15625vw + 0.84375rem, 1rem);
  color: #C4C4C6;
}
.audience__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .audience__list {
    margin-top: 5rem;
    gap: 1.5rem;
  }
  .audience__item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .audience__content {
    min-height: 15rem;
  }
  .audience__visual {
    height: 15rem;
  }
  .audience__content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4.25rem;
    z-index: 1;
    width: 100px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
  }
  .audience__item:nth-child(1) .audience__content::after {
    background-image: url("../assets/icons/vehicle-dealer.svg");
  }
  .audience__item:nth-child(2) .audience__content::after, .audience__item:nth-child(4) .audience__content::after {
    right: auto;
    left: -4.25rem;
  }
  .audience__item:nth-child(2) .audience__content::after {
    background-image: url("../assets/icons/dealership.svg");
  }
  .audience__item:nth-child(3) .audience__content::after {
    background-image: url("../assets/icons/multibrand-dealership.svg");
  }
  .audience__item:nth-child(4) .audience__content::after {
    background-image: url("../assets/icons/premium-vehicle.svg");
  }
}

.how-it-works__container {
  max-width: 1680px;
  margin: auto;
  padding-bottom: clamp(4rem, 6vw + 2.8rem, 10rem);
  padding-inline: 5vw;
}
.how-it-works__header {
  max-width: 600px;
}
.how-it-works__title {
  font-size: clamp(2rem, 1.5vw + 1.7rem, 3.5rem);
  font-weight: 700;
  color: #D70205;
}
.how-it-works__title-highlight {
  font-weight: 500;
  color: #19191B;
}
.how-it-works__description {
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  color: #5B5B60;
  margin-top: 1rem;
}
.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(2.5rem, 3vw + 1.9rem, 5.5rem);
}
.how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
.how-it-works__step .how-it-works__number,
.how-it-works__step .how-it-works__step-title,
.how-it-works__step .how-it-works__step-description {
  transition: color 0.5s ease, background 0.5s ease;
}
.how-it-works__step.is-active .how-it-works__number {
  background: linear-gradient(90deg, #D70205 0%, #B80205 50%, #570102 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.how-it-works__step.is-active .how-it-works__step-title {
  color: #D70205;
}
.how-it-works__step.is-active .how-it-works__step-description {
  color: #19191B;
}
.how-it-works__number {
  font-size: clamp(9.375rem, 10.917vw + 7.192rem, 12.5rem);
  font-weight: 600;
  color: #DCDCDD;
  transition: color 0.5s ease, background 0.5s ease;
}
.how-it-works__content {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  background: #FFFFFF;
}
.how-it-works__step-title {
  font-size: clamp(1.375rem, 0.625vw + 1.25rem, 2rem);
  font-weight: 600;
  padding: 1.5rem 0 1rem;
}
.how-it-works__step-description {
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  color: #5B5B60;
}
@media (min-width: 768px) {
  .how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.operation {
  background-color: #19191B;
}
.operation__container {
  width: min(100%, 1680px);
  margin: auto;
  padding-block: clamp(4rem, 6vw + 2.8rem, 10rem);
  padding-inline: 5vw;
}
.operation__top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.operation__media {
  width: 100%;
}
.operation__image {
  display: block;
  width: 100%;
  height: auto;
}
.operation__header {
  max-width: 600px;
}
.operation__eyebrow::before {
  background: #19191B url("../assets/icons/arrow-right.svg") center/1.5rem no-repeat;
}
.operation__title {
  font-size: clamp(2rem, 1.5vw + 1.7rem, 3.5rem);
  font-weight: 500;
  color: #FFFFFF;
}
.operation__title-highlight {
  color: #D70205;
}
.operation__description {
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  color: #FFFFFF;
  margin-top: 1rem;
}
.operation__features {
  margin-top: clamp(2.5rem, 3vw + 1.9rem, 5.5rem);
  padding: 1.5rem;
  background: #29292C;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.operation__feature-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.operation__feature-icon {
  background: #414145;
  padding: 0.75rem;
  border-radius: 50%;
}
.operation__feature-title {
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  font-weight: 600;
  color: #D70205;
}
.operation__feature-description {
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  color: #FFFFFF;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .operation__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (min-width: 992px) {
  .operation__top {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 5rem);
  }
  .operation__header {
    width: 50%;
  }
  .operation__media {
    width: 50%;
  }
  .operation__features {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .operation__features {
    padding: 2rem;
  }
  .operation__feature {
    border-right: 0.5px solid #414145;
    padding-right: 1rem;
  }
  .operation__feature:last-child {
    border-right: none;
  }
}

.faq__container {
  width: min(100%, 966px);
  margin: auto;
  padding-block: clamp(4rem, 6vw + 2.8rem, 10rem);
  padding-inline: 5vw;
}
.faq__title {
  font-size: clamp(2rem, 1.5vw + 1.7rem, 3.5rem);
  font-weight: 500;
  text-align: center;
  color: #19191B;
}
.faq__title-highlight {
  color: #D70205;
  font-weight: 700;
}
.faq__description {
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  color: #5B5B60;
  text-align: center;
  margin-top: 1rem;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 3vw + 1.9rem, 5.5rem);
}
.faq__item {
  background: #FFFFFF;
  color: #19191B;
  padding: 1.5rem;
  border: 1px solid #19191B;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.faq__item:hover {
  background: #19191B;
  color: #FFFFFF;
}
.faq__item:hover .faq__icon img {
  filter: brightness(0) invert(1);
}
.faq__item[open] {
  background: #19191B;
  color: #FFFFFF;
  border-color: #19191B;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.faq__icon img {
  display: block;
  width: 100%;
  height: 100%;
  filter: none;
}
.faq__item[open] .faq__icon img {
  filter: brightness(0) invert(1);
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  padding-left: 2.5rem;
  opacity: 0;
  transition: grid-template-rows 0.7s ease, margin-top 0.7s ease, opacity 0.5s ease;
}
.faq__answer p {
  overflow: hidden;
}
.faq__item[open] .faq__answer {
  grid-template-rows: 1fr;
  margin-top: 1rem;
  opacity: 1;
}
.faq__footer {
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  color: #5B5B60;
  text-align: center;
  margin-top: 2rem;
}
.faq__footer-link {
  font-weight: 700;
  color: #D70205;
  text-decoration: underline #D70205 2px;
  text-underline-offset: 0.25rem;
}

.cta__container {
  width: min(100%, 1920px);
  margin: auto;
  padding-block: clamp(4rem, 6vw + 2.8rem, 10rem);
  padding-inline: 5vw;
  background: url("../assets/images/cta-background-1600w.webp") right/cover no-repeat;
}
@media (min-width: 992px) {
  .cta__container {
    background: url("../assets/images/cta-background-3900w.webp") center bottom/no-repeat;
  }
}
.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__benefits {
  max-width: 800px;
  margin: auto;
}
.cta__title {
  font-size: clamp(2rem, 1.5vw + 1.7rem, 3.5rem);
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
}
.cta__description {
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  color: #DCDCDD;
  text-align: center;
  margin-top: 1rem;
}
.cta__button {
  background: #FFFFFF;
  color: #D70205;
  margin-top: 2rem;
}
.cta__button:hover {
  color: #FFFFFF;
}
.cta__benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .cta__benefits {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cta__benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .cta__benefit:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 2rem;
    background: #414145;
    margin-left: 4rem;
  }
}
.cta__benefit-text {
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
  font-weight: 500;
  color: #FFFFFF;
}

.footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 5vw;
  width: min(100%, 1920px);
}
.footer__copyright {
  font-size: clamp(0.875rem, 0.15625vw + 0.84375rem, 1rem);
  color: #77777B;
  margin-top: 0.5rem;
}
.footer__bottom {
  background: #19191B;
}
.footer__credit {
  font-size: clamp(0.875rem, 0.15625vw + 0.84375rem, 1rem);
  color: #FFFFFF;
  text-align: center;
  padding: 0.5rem;
}
.footer__credit-link {
  text-decoration: underline #FFFFFF 2px;
  text-underline-offset: 0.25rem;
}
@media (min-width: 768px) {
  .footer__main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
  }
}

/*# sourceMappingURL=main.css.map */
