/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  --first-color: hsl(219, 69%, 56%);
  --first-color-alt: hsl(219, 69%, 52%);
  --title-color: hsl(219, 8%, 95%);
  --text-color: hsl(219, 8%, 75%);
  --text-color-light: hsl(219, 4%, 55%);
  --white-color: #fff;
  --body-color: hsl(219, 4%, 4%);
  --container-color: hsl(219, 4%, 7%);
  --line-color: hsla(219, 8%, 95%, .08);
  --glass: hsla(0, 0%, 100%, .08);
  --glass-blue: linear-gradient(145deg, hsla(219, 69%, 56%, .32) 0%, hsla(219, 48%, 16%, .78) 100%);
  --glass-blue-border: hsla(219, 69%, 56%, .28);
  --glass-shadow: 0 10px 28px hsla(219, 69%, 8%, .45), inset 0 1px 0 hsla(0, 0%, 100%, .1);
  --success-color: hsl(158, 89%, 36%);

  --body-font: 'Exo', sans-serif;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  --font-medium: 500;
  --font-semi-bold: 600;

  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }

  .section__title {
    font-size: 2rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 2px solid var(--first-color);
  outline-offset: 3px;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  position: relative;
  padding-top: 1.15rem;
  font-size: 1.6rem;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 1rem;
}

.section__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.75rem;
  height: .2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--first-color), hsl(210, 100%, 72%));
}

.lead__title.section__title::before,
.cost__title.section__title::before {
  left: 0;
  transform: none;
}

.section__subtitle {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-color);
  line-height: 1.6;
}

.main {
  overflow: hidden;
}

.shape {
  background-color: hsla(219, 33%, 32%, .5);
  filter: blur(112px);
  border-radius: 50%;
}

.shape__big {
  width: 400px;
  height: 400px;
}

.shape__small {
  width: 300px;
  height: 300px;
}

.shape__smaller {
  width: 180px;
  height: 180px;
  filter: blur(64px);
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle {
  color: var(--title-color);
  display: inline-flex;
}

.nav__logo {
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  font-size: var(--h3-font-size);
  transition: .3s;
}

.nav__logo-img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

.nav__actions {
  display: inline-flex;
  align-items: center;
  column-gap: .75rem;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--glass-blue);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-blue-border);
  box-shadow: var(--glass-shadow);
  color: hsl(210, 100%, 78%);
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  transition: .3s;
}

.nav__phone:hover {
  color: var(--white-color);
  border-color: var(--first-color);
}

.nav__phone--desktop {
  display: none;
}

.nav__cta {
  display: inline-block;
  margin: 2.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: hsla(0, 0%, 100%, .1);
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(96px);
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav__phone--mobile {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 1rem;
  }

  .nav__toggle {
    font-size: 1.5rem;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 3rem;
  padding-top: 9rem;
}

.nav__link {
  text-transform: uppercase;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  transition: .3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  font-size: 2rem;
  color: var(--white-color);
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.show-menu {
  right: 0;
}

.scroll-header {
  border-radius: 0 0 1rem 1rem;
  background-color: var(--body-color);
  box-shadow: 0 2px 4px hsla(0, 0%, 1%, 1);
}

.active-link {
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  overflow: hidden;
}

.home__container {
  position: relative;
  padding-top: 5rem;
  row-gap: 2.5rem;
}

.home__data {
  text-align: left;
}

.home__title {
  font-size: 2.35rem;
  line-height: 1.12;
  margin-bottom: 1.15rem;
  letter-spacing: -.02em;
}

.home__title-accent {
  color: var(--first-color);
}

.home__lead,
.home__note {
  max-width: 34rem;
  line-height: 1.65;
}

.home__lead {
  margin-bottom: .85rem;
}

.home__note {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: .85rem;
  margin-bottom: 2.75rem;
}

.home__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--glass-blue);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-blue-border);
  box-shadow: var(--glass-shadow);
}

.home__note-icon i {
  color: hsl(210, 100%, 78%);
  font-size: 1.15rem;
  line-height: 1;
}

.home__cta {
  width: 100%;
}

.home__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  width: min(100%, 420px);
  margin-inline: auto;
}

.home__img {
  width: min(100%, 300px);
  position: relative;
  z-index: 2;
}

.home__badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  max-width: 11.5rem;
  padding: .75rem .9rem;
  background: var(--glass-blue);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-blue-border);
  border-radius: 1rem;
  box-shadow: var(--glass-shadow);
  color: var(--white-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  line-height: 1.35;
}

.home__badge i {
  color: hsl(210, 100%, 78%);
  font-size: 1rem;
  flex-shrink: 0;
}

.home__badge--1 {
  top: .5rem;
  left: 0;
}

.home__badge--2 {
  top: 38%;
  right: -.25rem;
}

.home__badge--3 {
  bottom: .5rem;
  left: 1rem;
  max-width: 15rem;
}

.home .shape__big,
.home .shape__small {
  position: absolute;
}

.home .shape__big {
  left: -9rem;
  top: -4rem;
}

.home .shape__small {
  right: -10rem;
  bottom: 3rem;
}

/*=============== BUTTON ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border: none;
  border-radius: .25rem;
  font-size: var(--normal-font-size);
  cursor: pointer;
  transition: .3s;
  text-align: center;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--ghost {
  background: transparent;
  border: 1px solid hsla(219, 8%, 95%, .18);
  color: var(--title-color);
}

.button--ghost:hover {
  background-color: var(--first-color);
  border-color: var(--first-color);
  color: var(--white-color);
}

/*=============== WHY ===============*/
.why__grid {
  display: grid;
  gap: 1.25rem;
}

.why__card {
  position: relative;
  overflow: hidden;
  background-color: var(--container-color);
  border: 1px solid var(--line-color);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
}

.why__card--main {
  background:
    linear-gradient(180deg, hsla(219, 69%, 56%, .12), transparent 55%),
    var(--container-color);
}

.why__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background-color: hsla(219, 69%, 56%, .16);
  color: var(--first-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.why__title {
  font-size: var(--h3-font-size);
  margin-bottom: .6rem;
}

.why__text {
  line-height: 1.6;
  font-size: var(--small-font-size);
}

.why__photo {
  display: none;
}

.why__card .shape__smaller {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
}

/*=============== SELECTION / FORMS ===============*/
.selection__panel,
.form {
  display: grid;
  gap: 1.35rem;
  border: 1px solid var(--line-color);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
}

.form {
  background-color: var(--container-color);
}

.selection__panel {
  background:
    linear-gradient(180deg, hsla(219, 69%, 56%, .12), transparent 55%),
    var(--container-color);
  overflow: visible;
}

.selection__grid {
  display: grid;
  gap: 1rem;
  overflow: visible;
}

.selection .container {
  overflow: visible;
}

.selection__consult {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 1.25rem 1.25rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, hsla(219, 69%, 56%, .2), hsla(219, 69%, 56%, .08)),
    hsla(219, 69%, 56%, .06);
  border: 1px solid hsla(219, 69%, 56%, .28);
}

.selection__consult-content {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.selection__consult-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--first-color);
  margin-top: .15rem;
}

.selection__consult-copy {
  display: grid;
  gap: .35rem;
}

.selection__consult-title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  line-height: 1.4;
}

.selection__consult-text {
  line-height: 1.65;
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.selection__consult-btn {
  width: 100%;
  flex-shrink: 0;
}

.selection__actions {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.5rem;
}

.field {
  display: grid;
  gap: .65rem;
  border: none;
}

.field--pills {
  gap: 1rem;
}

.field__label {
  font-size: var(--small-font-size);
  color: var(--title-color);
}

.field__control {
  width: 100%;
  min-height: 3rem;
  padding: .8rem 1rem;
  border-radius: .75rem;
  border: 1px solid hsla(219, 8%, 95%, .12);
  background-color: hsl(219, 4%, 10%);
  color: var(--title-color);
  outline: none;
  transition: .2s;
  appearance: none;
}

select.field__control:not(.custom-select__native) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239aa3b2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.custom-select {
  position: relative;
  width: 100%;
}

.field:has(.custom-select.is-open) {
  position: relative;
  z-index: 30;
}

.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.custom-select__trigger {
  width: 100%;
  min-height: 3rem;
  padding: .8rem 1rem;
  border-radius: .75rem;
  border: 1px solid hsla(219, 8%, 95%, .12);
  background-color: hsl(219, 4%, 10%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}

.custom-select__trigger:hover,
.custom-select__trigger:focus-visible {
  border-color: hsla(219, 69%, 56%, .45);
}

.custom-select.is-open .custom-select__trigger {
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px hsla(219, 69%, 56%, .18);
}

.custom-select__trigger.is-invalid {
  border-color: hsl(0, 72%, 56%);
}

.custom-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--title-color);
}

.custom-select__trigger.is-placeholder .custom-select__value {
  color: var(--text-color);
}

.custom-select__icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--first-color);
  transition: transform .2s;
}

.custom-select.is-open .custom-select__icon {
  transform: rotate(180deg);
}

.custom-select__list {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 15rem;
  overflow-y: auto;
  margin: 0;
  padding: .35rem;
  list-style: none;
  background:
    linear-gradient(180deg, hsla(219, 69%, 56%, .08), transparent 38%),
    hsl(219, 4%, 9%);
  border: 1px solid hsla(219, 8%, 95%, .12);
  border-radius: .75rem;
  box-shadow: 0 18px 42px hsla(219, 69%, 8%, .55);
}

.custom-select__list[hidden] {
  display: none;
}

.custom-select__list--floating {
  position: fixed;
  z-index: 900;
  right: auto;
}

.custom-select__option {
  padding: .7rem .85rem;
  border-radius: .55rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.4;
  cursor: pointer;
  transition: background-color .15s, color .15s;
}

.custom-select__option:hover,
.custom-select__option.is-focused {
  background-color: hsla(219, 69%, 56%, .16);
  color: var(--title-color);
}

.custom-select__option.is-selected {
  background-color: hsla(219, 69%, 56%, .24);
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.custom-select__list::-webkit-scrollbar {
  width: .45rem;
}

.custom-select__list::-webkit-scrollbar-thumb {
  background-color: hsl(219, 4%, 24%);
  border-radius: 999px;
}

.field__control::placeholder {
  color: var(--text-color);
  opacity: 1;
}

.field__control:hover,
.field__control:focus {
  border-color: var(--first-color);
}

.field__control.is-invalid {
  border-color: hsl(0, 72%, 56%);
}

.form__error {
  color: hsl(0, 80%, 72%);
  font-size: var(--small-font-size);
  margin-bottom: .85rem;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  cursor: pointer;
  font-size: var(--smaller-font-size);
  line-height: 1.55;
  color: var(--text-color);
}

.form__consent.is-invalid {
  color: hsl(0, 80%, 72%);
}

.form__consent-control {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .1rem;
}

.form__consent-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.form__consent-box {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .35rem;
  border: 1px solid hsla(219, 8%, 95%, .18);
  background-color: hsl(219, 4%, 10%);
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .04);
  transition: border-color .2s, background-color .2s, box-shadow .2s;
  pointer-events: none;
}

.form__consent:hover .form__consent-box {
  border-color: hsla(219, 69%, 56%, .45);
}

.form__consent-input:focus-visible + .form__consent-box {
  border-color: var(--first-color);
  box-shadow: 0 0 0 3px hsla(219, 69%, 56%, .22);
}

.form__consent-input:checked + .form__consent-box {
  border-color: var(--first-color);
  background: linear-gradient(145deg, hsla(219, 69%, 56%, .34) 0%, hsla(219, 48%, 16%, .92) 100%);
  box-shadow: var(--glass-shadow);
}

.form__consent-input:checked + .form__consent-box::after {
  content: '';
  width: .35rem;
  height: .62rem;
  border-right: 2px solid hsl(210, 100%, 78%);
  border-bottom: 2px solid hsl(210, 100%, 78%);
  transform: rotate(45deg) translate(-.05rem, -.08rem);
}

.form__consent.is-invalid .form__consent-box {
  border-color: hsl(0, 72%, 56%);
  background-color: hsla(0, 72%, 56%, .1);
}

.form__consent-text a {
  color: var(--first-color);
  text-decoration: underline;
  text-underline-offset: .15rem;
}

.form__consent-text a:hover {
  color: var(--title-color);
}

.selection__actions .form__consent {
  width: 100%;
  margin-bottom: 1rem;
}

.selection__actions .form__error {
  width: 100%;
  text-align: left;
}

.field:has(.range) {
  gap: 1rem;
}

.range {
  display: grid;
  gap: 1rem;
  padding: .2rem 0;
}

.range__value {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.range__input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--first-color) 0%, var(--first-color) 22%, hsl(219, 8%, 22%) 22%);
  outline: none;
  cursor: pointer;
}

.range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white-color);
  box-shadow: 0 0 0 6px hsla(219, 69%, 56%, .28);
  cursor: pointer;
}

.range__input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--white-color);
  box-shadow: 0 0 0 6px hsla(219, 69%, 56%, .28);
  cursor: pointer;
}

.pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.pill {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: .65rem .75rem;
  border-radius: .75rem;
  background-color: hsl(219, 4%, 10%);
  border: 1px solid hsla(219, 8%, 95%, .12);
  color: var(--text-color);
  font-size: var(--small-font-size);
  text-align: center;
  transition: .2s;
}

.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill:hover,
.pill:has(input:checked) {
  border-color: var(--first-color);
  color: var(--title-color);
}

.pill:has(input:checked) {
  background-color: hsla(219, 69%, 56%, .18);
}

.form .button,
.selection__actions .button {
  width: 100%;
}

/*=============== POPULAR ===============*/
.popular__container {
  padding-top: 1rem;
}

.popular__container .swiper-wrapper {
  align-items: stretch;
}

.popular__container .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.popular__container .swiper-slide > .popular__card {
  flex: 1;
  width: 100%;
  min-height: 0;
}

.popular__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 238px;
  background-color: var(--container-color);
  border-radius: 1rem;
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.popular__media {
  margin: 0;
  height: 11rem;
  overflow: hidden;
  flex-shrink: 0;
  background-color: hsl(219, 4%, 10%);
}

.popular__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .3s;
}

.popular__content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
}

.popular__content .shape__smaller {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
}

.popular__title,
.popular__subtitle {
  position: relative;
}

.popular__title {
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
}

.popular__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 1rem;
}

.popular__data {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.popular__data-group {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-size: var(--smaller-font-size);
  color: var(--white-color);
}

.popular__data i {
  font-size: 1rem;
}

.popular__price {
  font-size: var(--h3-font-size);
  margin-top: auto;
  padding-right: 3rem;
}

.popular__button {
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 0;
  cursor: pointer;
}

.popular__button i {
  font-size: 1.25rem;
}

.popular__card:hover .popular__img {
  transform: scale(1.03);
}

.swiper-pagination-bullet {
  background: var(--text-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
}

/*=============== PROCESS ===============*/
.process {
  overflow: hidden;
  position: relative;
}

.process__visual {
  position: relative;
  min-height: 320px;
  margin-bottom: 2rem;
  display: grid;
  justify-items: center;
}

.process__map {
  max-width: initial;
  width: 450px;
  position: absolute;
  top: 2rem;
  left: -3rem;
  margin: auto;
  transform: rotate(-22deg);
  opacity: .7;
}

.process__group {
  position: relative;
  z-index: 2;
  width: 285px;
  min-height: 340px;
  display: grid;
  justify-items: center;
}

.process__img {
  width: 150px;
  margin-top: 4.5rem;
}

.process__float {
  width: 118px;
  background: var(--glass-blue);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-blue-border);
  border-radius: 1.25rem;
  box-shadow: var(--glass-shadow);
  padding: .75rem .9rem;
  text-align: center;
  color: var(--white-color);
  position: absolute;
}

.process__float span {
  display: block;
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: .15rem;
  color: hsl(210, 100%, 82%);
}

.process__float p {
  font-size: var(--smaller-font-size);
  color: hsl(219, 18%, 92%);
  line-height: 1.35;
}

.process__float-1 {
  top: 1.5rem;
  left: 0;
}

.process__float-2 {
  top: 5.5rem;
  right: 0;
}

.process__float-3 {
  left: 0;
  bottom: 3.5rem;
}

.process__float-4 {
  right: 0;
  bottom: .5rem;
}

.process__card {
  background-color: var(--container-color);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line-color);
}

.process__number {
  display: block;
  color: var(--first-color);
  font-size: var(--h2-font-size);
  margin-bottom: .5rem;
}

.process__title {
  margin-bottom: .6rem;
}

.process__text {
  font-size: var(--small-font-size);
  line-height: 1.6;
}

.process__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/*=============== LEAD ===============*/
.lead__container {
  row-gap: 3rem;
}

.lead__media {
  position: relative;
  overflow: hidden;
  border-radius: .5rem;
}

.lead__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-blue);
  opacity: .42;
  z-index: 1;
  pointer-events: none;
}

.lead__media-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--glass-blue);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-blue-border);
  box-shadow: var(--glass-shadow);
  pointer-events: none;
}

.lead__media-icon i {
  color: hsl(210, 100%, 78%);
  font-size: 1.5rem;
  line-height: 1;
}

.lead__img {
  width: 100%;
  border-radius: .5rem;
  display: block;
}

.lead__title {
  text-align: initial;
  margin-bottom: 1rem;
}

.lead__description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/*=============== BRANDS ===============*/
.brands__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

.brands__item {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background-color: var(--container-color);
  border: 1px solid var(--line-color);
  border-radius: 1rem;
  color: var(--text-color);
  cursor: pointer;
  transition: .3s;
}

.brands__item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: .55;
  transition: .3s;
}

.brands__item span:last-child {
  font-size: var(--small-font-size);
}

.brands__item:hover {
  border-color: var(--first-color);
  color: var(--title-color);
}

.brands__item:hover img {
  opacity: 1;
}

.brands__footer {
  margin-top: 2rem;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

/*=============== COST ===============*/
.cost {
  position: relative;
}

.cost__container {
  position: relative;
  grid-template-rows: max-content 224px;
}

.cost__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1.25rem;
}

.cost__data,
.cost__img {
  position: relative;
}

.cost__data {
  text-align: left;
  padding: 1.5rem 1rem 0;
}

.cost__title {
  text-align: left;
  margin-bottom: 1rem;
}

.cost__description {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cost__img {
  position: absolute;
  max-width: initial;
  width: 400px;
  bottom: 2rem;
  right: -5.5rem;
}

.form--compact {
  background: hsla(219, 4%, 7%, .72);
  backdrop-filter: blur(18px);
  margin-top: 1.5rem;
}

/*=============== REVIEWS ===============*/
.reviews__container {
  padding-top: .5rem;
}

.reviews__container .swiper-wrapper {
  align-items: stretch;
}

.reviews__container .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.reviews__container .swiper-slide > .reviews__card {
  flex: 1;
  width: 100%;
  min-height: 0;
}

.reviews__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--container-color);
  border-radius: 1rem;
  margin-bottom: 3.5rem;
}

.reviews__media {
  margin: 0;
  height: 11rem;
  overflow: hidden;
  flex-shrink: 0;
  background-color: hsl(219, 4%, 10%);
}

.reviews__media img,
.reviews__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.reviews__video {
  background-color: #000;
}

.reviews__card--video {
  padding: 0;
}

.reviews__card--video .reviews__media {
  position: relative;
  flex: 1;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.reviews__card--video .reviews__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.reviews__content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  padding: 1.75rem 1.5rem 1.5rem;
}

.reviews__content .shape__smaller {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
}

.reviews__quote {
  position: relative;
  font-size: 1.75rem;
  color: var(--first-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.reviews__text {
  position: relative;
  flex: 1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.reviews__author {
  margin-top: auto;
}

.reviews__author strong {
  display: block;
  color: var(--title-color);
}

.reviews__author span {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/*=============== FAQ ===============*/
.faq .section__title {
  margin-bottom: 2.5rem;
}

.faq.section {
  padding-bottom: 4.5rem;
}

.faq__list {
  display: grid;
  gap: .85rem;
}

.faq__item {
  background-color: var(--container-color);
  border: 1px solid var(--line-color);
  border-radius: 1rem;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 1.2rem;
  background: none;
  border: none;
  color: var(--title-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  cursor: pointer;
}

.faq__question i {
  font-size: 1.35rem;
  color: var(--first-color);
  transition: transform .4s ease;
}

.faq__item.is-open .faq__question i {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.2rem;
  transition: grid-template-rows .42s cubic-bezier(.4, 0, .2, 1), padding .42s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
  padding-bottom: 1.2rem;
}

.faq__answer p {
  overflow: hidden;
  min-height: 0;
  line-height: 1.65;
  opacity: 0;
  transition: opacity .22s ease;
}

.faq__item.is-open .faq__answer p {
  opacity: 1;
  transition: opacity .34s ease .08s;
}

@media (prefers-reduced-motion: reduce) {
  .faq__answer,
  .faq__answer p,
  .faq__question i {
    transition: none;
  }
}

/*=============== REQUEST ===============*/
.request {
  position: relative;
  overflow: hidden;
}

.request .shape__big,
.request .shape__small {
  position: absolute;
}

.request .shape__big {
  left: -10rem;
  top: 0;
}

.request .shape__small {
  right: -10rem;
  bottom: -4rem;
}

.request__container {
  position: relative;
}

.form--final {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form--final .pills {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/*=============== FEATURED ===============*/
.featured__container {
  padding-top: 1rem;
}

.featured__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
}

.featured__item {
  min-width: 48px;
  height: 48px;
  border: none;
  outline: none;
  padding: .75rem 1rem;
  border-radius: .75rem;
  background-color: var(--container-color);
  color: var(--white-color);
  font-size: var(--small-font-size);
  cursor: pointer;
  transition: .3s;
}

.featured__item img {
  width: 1.5rem;
}

.featured__item span,
.featured__item img {
  opacity: .3;
  transition: .3s;
}

.featured__item:hover,
.active-featured {
  background-color: var(--first-color);
}

.featured__item:hover span,
.featured__item:hover img,
.active-featured span,
.active-featured img {
  opacity: 1;
}

.featured__content {
  grid-template-columns: 228px;
  row-gap: 2.5rem;
  justify-content: center;
}

.featured__card {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
}

.featured__card .shape__smaller {
  position: absolute;
  inset: 0;
  margin: auto;
}

.featured__title,
.featured__subtitle,
.featured__img,
.featured__meta {
  position: relative;
}

.featured__title {
  font-size: var(--h2-font-size);
  margin-bottom: .25rem;
}

.featured__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: 400;
}

.featured__img {
  width: 180px;
  margin: 1.5rem 0;
  transition: .3s;
}

.featured__meta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  font-size: var(--smaller-font-size);
  color: var(--white-color);
  margin-bottom: 1.25rem;
}

.featured__price {
  font-size: var(--h3-font-size);
}

.featured__button {
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 0;
  cursor: pointer;
}

.featured__button i {
  font-size: 1.25rem;
}

.featured__card:hover .featured__img {
  transform: translateX(-.25rem);
}

/*=============== FOOTER ===============*/
.footer {
  position: relative;
  overflow: hidden;
}

.footer .shape__big,
.footer .shape__small {
  position: absolute;
}

.footer .shape__big {
  width: 300px;
  height: 300px;
  left: -12rem;
  top: 6rem;
}

.footer .shape__small {
  right: -13rem;
  bottom: -6rem;
}

.footer__container {
  row-gap: 2.5rem;
  position: relative;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1.25rem;
  transition: .3s;
}

.footer__logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
}

.footer__link {
  color: var(--text-color);
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  row-gap: .35rem;
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  line-height: 1.55;
}

.footer__contact {
  display: inline-flex;
  align-items: flex-start;
  column-gap: .5rem;
  color: var(--text-color);
  transition: .3s;
}

.footer__phone {
  margin-top: .25rem;
  align-items: center;
}

.footer__phone:hover {
  color: var(--title-color);
}

.footer__phone .footer__contact-icon {
  margin-top: 0;
}

.footer__contact-icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--glass-blue);
  border: 1px solid var(--glass-blue-border);
  color: hsl(210, 100%, 78%);
  font-size: .85rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .05rem;
}

.footer__contact-icon i {
  display: block;
  line-height: 1;
}

.footer__phone .footer__contact-icon i {
  transform: translateX(1px);
}

.footer__link--policy {
  margin-top: .65rem;
  color: var(--first-color);
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.footer__link--policy:hover {
  color: var(--title-color);
}

.legal__container {
  max-width: 820px;
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.legal__content {
  color: var(--text-color);
  line-height: 1.7;
}

.legal__content h2 {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin: 2rem 0 1rem;
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content p {
  margin-bottom: .85rem;
  font-size: var(--small-font-size);
}

.legal__content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  font-size: var(--small-font-size);
}

.legal__content li {
  margin-bottom: .5rem;
}

.legal__content a {
  color: var(--first-color);
  text-decoration: underline;
  text-underline-offset: .15rem;
}

.legal__content a:hover {
  color: var(--title-color);
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: var(--small-font-size);
}

.legal__table th,
.legal__table td {
  border: 1px solid var(--line-color);
  padding: .85rem 1rem;
  text-align: left;
  vertical-align: top;
}

.legal__table th {
  width: 32%;
  color: var(--title-color);
  background: hsla(219, 8%, 12%, .65);
  font-weight: var(--font-medium);
}

.legal__table ul {
  margin: 0;
  padding-left: 1.1rem;
}

.thank-you__container {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 12rem);
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.thank-you__card {
  width: min(100%, 520px);
  text-align: center;
  background-color: var(--container-color);
  border: 1px solid var(--line-color);
  border-radius: 1.25rem;
  padding: 2.5rem 1.75rem 2rem;
}

.thank-you__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--glass-blue);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-blue-border);
  box-shadow: var(--glass-shadow);
  color: hsl(210, 100%, 78%);
  font-size: 2.25rem;
  line-height: 1;
}

.thank-you__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.thank-you__text {
  color: var(--text-color);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-size: var(--normal-font-size);
}

.thank-you__button {
  width: 100%;
}

@media screen and (min-width: 576px) {
  .thank-you__button {
    width: auto;
    min-width: 220px;
  }
}

.footer__copy {
  display: block;
  margin-top: 4.5rem;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

/*=============== MODAL ===============*/
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.25rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: hsla(219, 8%, 4%, .72);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  width: min(100%, 440px);
  background-color: var(--container-color);
  border: 1px solid var(--line-color);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem 1.5rem;
  margin: auto;
  flex-shrink: 0;
}

.modal__dialog--selection {
  width: min(100%, 520px);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal__lead {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.selection-summary {
  display: grid;
  gap: .55rem;
  margin-bottom: 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, hsla(219, 69%, 56%, .12), hsla(219, 69%, 56%, .04)),
    hsl(219, 4%, 10%);
  border: 1px solid hsla(219, 69%, 56%, .18);
}

.selection-summary__visible {
  display: grid;
  gap: .55rem;
}

.selection-summary__more {
  display: none;
  gap: .55rem;
}

.selection-summary.is-expanded .selection-summary__more {
  display: grid;
}

.selection-summary__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  margin-top: .25rem;
  padding: .6rem .75rem;
  border: none;
  border-radius: .65rem;
  background: hsla(219, 69%, 56%, .12);
  color: var(--first-color);
  font-family: inherit;
  font-size: var(--smaller-font-size);
  cursor: pointer;
  transition: background-color .2s, color .2s;
}

.selection-summary__toggle:hover {
  background: hsla(219, 69%, 56%, .2);
  color: var(--title-color);
}

.selection-summary__toggle i {
  font-size: 1.1rem;
  transition: transform .2s;
}

.selection-summary.is-expanded .selection-summary__toggle i {
  transform: rotate(180deg);
}

.selection-summary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--small-font-size);
}

.selection-summary__row span {
  color: var(--text-color-light);
}

.selection-summary__row strong {
  color: var(--title-color);
  font-weight: var(--font-medium);
  text-align: right;
}

.modal__dialog .form {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.modal__dialog h2 {
  margin-bottom: .75rem;
}

.modal__dialog p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.modal__dialog--success {
  text-align: center;
}

.modal__icon {
  font-size: 2.5rem;
  color: var(--success-color);
  margin-bottom: .75rem;
}

.modal__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  background: none;
  border: none;
  color: var(--title-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(219, 4%, 16%);
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(219, 4%, 24%);
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(219, 4%, 32%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: hsla(0, 0%, 100%, .1);
  backdrop-filter: blur(16px);
  display: inline-flex;
  padding: .45rem;
  border-radius: .5rem;
  font-size: 1.15rem;
  color: var(--white-color);
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  transform: translateY(-.25rem);
}

.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 575px) {
  .home__badge--2 {
    right: 0;
    max-width: 10.5rem;
  }

  .cost__container {
    grid-template-rows: max-content 180px;
  }

  .cost__img {
    width: 340px;
  }
}

@media screen and (max-width: 320px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media screen and (min-width: 576px) {
  .home__cta {
    width: auto;
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__card--main {
    grid-column: 1 / -1;
  }

  .selection__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .selection__consult {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
  }

  .selection__consult-btn {
    width: auto;
    white-space: nowrap;
  }

  .selection__actions {
    flex-direction: column;
  }

  .form .button {
    width: auto;
  }

  .lead__media {
    width: 350px;
    justify-self: center;
  }

  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__map {
    left: 0;
    right: 0;
  }

  .featured__content {
    grid-template-columns: repeat(2, 228px);
  }

  .cost__container {
    grid-template-rows: initial;
    grid-template-columns: .85fr;
    justify-content: center;
  }

  .cost__img {
    position: relative;
    bottom: initial;
    right: initial;
    width: 100%;
    max-width: 420px;
    justify-self: center;
  }

  .cost__data {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 767px) {
  .section {
    padding: 7rem 0 2rem;
  }

  .home__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 2rem;
    padding-top: 6rem;
  }

  .home__title {
    font-size: 2.5rem;
  }

  .home__visual {
    width: 100%;
    min-height: 360px;
    margin-inline: 0;
    justify-self: end;
  }

  .home__img {
    width: min(100%, 360px);
  }

  .home__badge {
    max-width: 13rem;
    padding: .85rem 1rem;
    font-size: var(--small-font-size);
  }

  .home__badge--1 {
    top: 1rem;
    left: -.5rem;
  }

  .home__badge--2 {
    top: 34%;
    right: -.75rem;
  }

  .home__badge--3 {
    bottom: 1rem;
    left: 1.5rem;
    max-width: 16.5rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__actions {
    display: none;
  }

  .nav__phone--mobile {
    display: none;
  }

  .nav__phone--desktop {
    display: inline-flex;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 1.35rem;
    padding-top: 0;
  }

  .nav__link {
    font-size: var(--normal-font-size);
    text-transform: initial;
  }

  .nav__cta {
    display: inline-block;
    margin-top: 0;
    padding: .7rem 1.1rem;
    font-size: var(--small-font-size);
  }

  .lead__container,
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1040px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .shape__big {
    width: 500px;
    height: 500px;
  }

  .shape__small {
    width: 400px;
    height: 400px;
  }

  .home__container {
    padding-top: 5.5rem;
    column-gap: 3.5rem;
  }

  .home__title {
    font-size: 3rem;
  }

  .nav__list {
    column-gap: 2.25rem;
  }

  .home {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .home__visual {
    min-height: 420px;
  }

  .home__img {
    width: min(100%, 400px);
  }

  .home__badge--1 {
    left: -1.5rem;
  }

  .home__badge--2 {
    right: -1.25rem;
  }

  .home__badge--3 {
    left: 2rem;
    max-width: 17rem;
  }

  .why__grid {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .why__card--main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
  }

  .why__photo {
    display: block;
    flex: 1;
    width: 100%;
    min-height: 12rem;
    margin-top: 1.25rem;
    border-radius: .75rem;
    object-fit: cover;
    object-position: center;
  }

  .lead__container {
    grid-template-columns: .95fr 1.05fr;
    column-gap: 4rem;
    align-items: stretch;
  }

  .lead__media {
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .lead__img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .popular__container,
  .reviews__container {
    padding-top: 3rem;
  }

  .popular__card {
    width: 258px;
    border-radius: 1.25rem;
    margin-bottom: 5rem;
  }

  .popular__media {
    height: 12rem;
  }

  .process__group {
    width: 460px;
    min-height: 420px;
  }

  .process__img {
    width: 200px;
  }

  .process__float {
    width: 146px;
    padding: .85rem 1rem;
  }

  .process__float-1 {
    left: -1rem;
  }

  .process__float-2 {
    right: -2rem;
  }

  .process__float-3 {
    bottom: 5rem;
    left: -1rem;
  }

  .process__float-4 {
    right: -2rem;
    bottom: 2rem;
  }

  .process__map {
    width: 650px;
    top: 4rem;
  }

  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 1rem;
  }

  .brands__grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .featured__content {
    grid-template-columns: repeat(3, 248px);
    gap: 4rem;
  }

  .cost__container {
    grid-template-columns: 1.05fr .95fr;
    column-gap: 3rem;
    align-items: center;
    padding: 2rem 0;
  }

  .cost__data,
  .cost__title {
    text-align: initial;
  }

  .cost__data {
    margin-bottom: 0;
    padding: 2rem 0 2rem 1rem;
  }

  .cost__img {
    width: 450px;
  }

  .footer__container {
    grid-template-columns: 1.3fr 1fr 1fr;
    justify-content: space-between;
  }

  .footer__copy {
    margin-top: 8rem;
    padding-bottom: 1rem;
  }

  .scrollup {
    right: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
