:root {
  --layout-spacing: 1.5rem;
}

@media (min-width: 992px) {
  :root {
    --layout-spacing: 2rem;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 750px;
  min-height: min(750px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 5rem var(--layout-spacing) 7.5rem;
}
@media (min-width: 48em) {
  .hero {
    min-height: 760px;
    min-height: min(760px, 100svh);
    padding: 6rem 2rem 8rem;
  }
}
@media (min-width: 64em) {
  .hero {
    min-height: 940px;
    min-height: min(940px, 100svh);
    padding: 8.5rem 2.5rem 10.5rem;
    padding: clamp(4rem, 9svh, 8.5rem) 2.5rem clamp(5rem, 11svh, 10.5rem);
  }
}
.hero {
  background: radial-gradient(120% 70% at 50% -6%, hsl(212, 56%, 30%) 0%, hsla(212, 56%, 30%, 0) 55%), linear-gradient(180deg, hsl(212, 72%, 25%) 0%, hsl(212, 80%, 22%) 100%);
}
.hero__art {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 27rem;
  max-width: min(27rem, 55svh);
  height: auto;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 48em) {
  .hero__art {
    max-width: 34rem;
    max-width: min(34rem, 52svh);
  }
}
@media (min-width: 64em) {
  .hero__art {
    max-width: 40rem;
    max-width: min(40rem, 50svh);
  }
}
.hero__art--top {
  top: 4rem;
}
@media (min-width: 64em) {
  .hero__art--top {
    top: 5rem;
    top: clamp(4rem, 5svh, 5rem);
  }
}
.hero__art--bottom {
  bottom: 5.5rem;
}
@media (min-width: 64em) {
  .hero__art--bottom {
    bottom: 6.5rem;
    bottom: clamp(4.5rem, 6svh, 6.5rem);
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 22rem;
  margin-inline: auto;
}
@media (min-width: 48em) {
  .hero__inner {
    max-width: 34rem;
  }
}
@media (min-width: 64em) {
  .hero__inner {
    max-width: 46rem;
  }
}
.hero__title {
  margin: 0;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 1.1;
  letter-spacing: -0.022em;
}
@media (min-width: 48em) {
  .hero__title {
    font-size: 3.5rem;
    font-size: clamp(2.25rem, 6.5svh, 3.5rem);
  }
}
@media (min-width: 64em) {
  .hero__title {
    font-size: clamp(3.25rem, 4vw, 3.75rem);
    font-size: clamp(3.25rem, min(4vw, 6svh), 3.75rem);
  }
}
.hero__title {
  color: #f3f9ff;
  background: linear-gradient(180deg, #f3f9ff 0%, #bfcbd9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  margin: 0.875rem auto 0;
  max-width: 20rem;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.55;
  letter-spacing: -0.003em;
  color: hsla(0, 0%, 100%, 0.66);
}
@media (min-width: 48em) {
  .hero__subtitle {
    margin-top: 1.25rem;
    max-width: 32rem;
    font-size: 1.0625rem;
  }
}
@media (min-width: 64em) {
  .hero__subtitle {
    max-width: 34rem;
    font-size: 1.125rem;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 14rem;
  margin: 1.5rem auto 0;
}
@media (min-width: 48em) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 0.875rem;
    max-width: none;
    margin-top: 2rem;
  }
  .hero__actions .btn {
    width: auto;
    min-width: 12.5rem;
    height: 3.375rem;
  }
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 0.33px solid hsla(0, 0%, 100%, 0.1);
  padding-block: 1.125rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 1.25rem;
  white-space: nowrap;
  color: hsla(0, 0%, 100%, 0.55);
  font-size: 0.8125rem;
  font-weight: 500;
}
@media (min-width: 48em) {
  .marquee__item {
    gap: 0.625rem;
    padding-inline: 1.875rem;
  }
}
@media (min-width: 64em) {
  .marquee__item {
    padding-inline: 2.625rem;
  }
}
.marquee__item img {
  width: auto;
  height: 1.375rem;
  flex-shrink: 0;
  opacity: 0.85;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}
[dir=rtl] .marquee__track {
  animation-name: marquee-scroll-rtl;
}

@keyframes marquee-scroll-rtl {
  to {
    transform: translateX(50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    justify-content: center;
  }
}
.possibilities {
  position: relative;
  overflow: hidden;
  background: hsl(220, 13%, 96%);
  padding: 3rem 1.25rem 3.5rem;
}
@media (min-width: 48em) {
  .possibilities {
    padding: 4.5rem 2rem 5rem;
  }
}
@media (min-width: 64em) {
  .possibilities {
    padding: 6rem 2.5rem 6.5rem;
  }
}
.possibilities__inner {
  max-width: 33rem;
  margin-inline: auto;
}
@media (min-width: 48em) {
  .possibilities__inner {
    max-width: none;
  }
}
@media (min-width: 64em) {
  .possibilities__inner {
    max-width: 70rem;
  }
}
.possibilities__title {
  margin: 0 0 1.375rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: hsl(0, 0%, 4%);
}
@media (min-width: 48em) {
  .possibilities__title {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 64em) {
  .possibilities__title {
    font-size: 2.5rem;
    margin-bottom: 2.75rem;
  }
}
.possibilities__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(205, 62%, 47%);
}
.possibilities__more:hover {
  color: hsl(205, 70%, 42%);
}
@media (min-width: 48em) {
  .possibilities__more {
    margin-top: 2.25rem;
    font-size: 1rem;
  }
}
.possibilities__sparkle {
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
  flex-shrink: 0;
}

.poss-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (min-width: 48em) {
  .poss-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 64em) {
  .poss-cards {
    gap: 1.5rem;
  }
}

.poss-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 22px -10px hsla(212, 60%, 25%, 0.16);
}
@media (min-width: 48em) {
  .poss-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
  }
}
@media (min-width: 64em) {
  .poss-card {
    padding: 2rem 1.75rem;
  }
}
.poss-card__icon {
  flex-shrink: 0;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.poss-card__icon img {
  width: 100%;
  height: auto;
  max-height: 4.25rem;
  object-fit: contain;
}
@media (min-width: 48em) {
  .poss-card__icon {
    width: auto;
  }
  .poss-card__icon img {
    max-height: 4rem;
  }
}
.poss-card__body {
  min-width: 0;
}
.poss-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: hsl(0, 0%, 4%);
}
@media (min-width: 64em) {
  .poss-card__title {
    font-size: 1.25rem;
  }
}
.poss-card__text {
  margin: 0.3125rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: -0.006em;
  color: hsl(0, 0%, 30%);
}
@media (min-width: 48em) {
  .poss-card__text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
}
@media (min-width: 64em) {
  .poss-card__text {
    font-size: 0.9375rem;
  }
}

.discover {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.75rem;
}
@media (min-width: 48em) {
  .discover {
    margin-top: 3.75rem;
    gap: 1.5rem;
  }
}
.discover__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  color: hsl(212, 34%, 26%);
}
@media (min-width: 48em) {
  .discover__title {
    font-size: 1.5rem;
  }
}
.discover__mark {
  flex-shrink: 0;
  width: 2.5rem;
  height: auto;
  object-fit: contain;
}
@media (min-width: 48em) {
  .discover__mark {
    width: 3rem;
  }
}
.discover__mark--flip {
  transform: scaleX(-1);
}

.journey {
  position: relative;
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 48em) {
  .journey {
    margin-top: 2.5rem;
  }
}
.journey::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6.5rem;
  bottom: 0;
  width: calc(100vw + 6rem);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.51) 0%, rgba(222, 239, 250, 0.52) 26.68%, rgba(175, 212, 237, 0.69) 56.87%, rgba(125, 183, 222, 0.762) 79.12%, #3e94cd 100%);
  filter: blur(25px);
  pointer-events: none;
}
@media (min-width: 35.5em) {
  .journey::before {
    width: min(100vw + 6rem, 24rem);
    filter: blur(34px);
  }
}
@media (min-width: 48em) {
  .journey::before {
    top: -8rem;
  }
}

.btn-journey {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 20rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  background: hsl(212, 73%, 25%);
  color: hsl(0, 0%, 100%);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 14px 30px -12px hsla(212, 73%, 25%, 0.7);
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.btn-journey svg {
  width: 1.25rem;
  height: 1.25rem;
}
.btn-journey:hover {
  background: hsl(212, 76%, 21%);
  color: hsl(0, 0%, 100%);
}
.btn-journey:active {
  transform: translateY(1px);
}

.signing {
  background: hsl(220, 13%, 96%);
  padding: 1.5rem 1.25rem 3rem;
}
@media (min-width: 48em) {
  .signing {
    padding: 1.5rem 2rem 5rem;
  }
}
@media (min-width: 64em) {
  .signing {
    padding: 2rem 2.5rem 6.5rem;
  }
}
.signing__inner {
  max-width: 33rem;
  margin-inline: auto;
}
@media (min-width: 48em) {
  .signing__inner {
    max-width: none;
  }
}
@media (min-width: 64em) {
  .signing__inner {
    max-width: 70rem;
  }
}
.signing__title {
  margin: 0 0 1.375rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: hsl(0, 0%, 4%);
}
@media (min-width: 48em) {
  .signing__title {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 64em) {
  .signing__title {
    font-size: 2.5rem;
    margin-bottom: 2.75rem;
  }
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48em) {
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 1rem;
  }
  .feature-cards .feature-card:nth-child(3),
  .feature-cards .feature-card:nth-child(4) {
    justify-content: center;
  }
}
@media (min-width: 64em) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "file file     file" "fast uptodate revoke";
    gap: 1.5rem;
  }
  .feature-cards .feature-card:nth-child(1) {
    grid-area: file;
  }
  .feature-cards .feature-card:nth-child(2) {
    grid-area: fast;
  }
  .feature-cards .feature-card:nth-child(3) {
    grid-area: uptodate;
  }
  .feature-cards .feature-card:nth-child(4) {
    grid-area: revoke;
  }
}

.feature-card {
  background: hsl(0, 0%, 100%);
  border-radius: 1.5rem;
  padding: 1.375rem 1.25rem;
  box-shadow: 0 8px 22px -10px hsla(212, 60%, 25%, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
@media (min-width: 48em) {
  .feature-card {
    padding: 1.5rem 1.25rem;
  }
}
@media (min-width: 64em) {
  .feature-card {
    padding: 2rem 1.75rem;
  }
}
.feature-card__lead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.feature-card__icon {
  flex-shrink: 0;
  display: block;
  width: 7rem;
  height: 4.5rem;
}
@media (min-width: 48em) {
  .feature-card__icon {
    width: 8rem;
    height: 5.25rem;
  }
}
@media (min-width: 64em) {
  .feature-card__icon {
    width: 9rem;
    height: 6rem;
  }
}
.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: hsl(207, 47%, 17%);
}
@media (min-width: 64em) {
  .feature-card__title {
    font-size: 1.25rem;
  }
}
.feature-card__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(207, 9%, 49%);
}
@media (min-width: 64em) {
  .feature-card__text {
    font-size: 1rem;
  }
}
.feature-card__apps {
  margin: 0 0 -1.375rem;
  height: 7.5rem;
}
@media (min-width: 48em) {
  .feature-card__apps {
    margin-bottom: -1.5rem;
  }
}
.feature-card__apps {
  border-radius: 1.5rem 1.5rem 0 0;
  background: hsl(207, 94%, 59%);
  overflow: hidden;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__apps img {
  width: 100%;
  height: auto;
  min-width: 0;
}
.feature-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  height: 3.375rem;
}
@media (min-width: 64em) {
  .feature-card__btn {
    display: none;
  }
}
.feature-card__btn {
  border-radius: 0.875rem;
  background: hsl(206, 38%, 16%);
  color: hsl(0, 0%, 100%);
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.feature-card__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.feature-card__btn:hover {
  background: hsl(206, 42%, 12%);
  color: hsl(0, 0%, 100%);
}
.feature-card__btn:active {
  transform: translateY(1px);
}

@media (min-width: 64em) {
  .feature-card:first-child {
    flex-direction: row;
    align-items: stretch;
    gap: 2.75rem;
  }
  .feature-card:first-child .feature-card__lead {
    flex: 0 0 40%;
    justify-content: center;
  }
  .feature-card:first-child .feature-card__apps {
    flex: 1;
    margin: 0 -1.75rem -2rem 0;
    height: auto;
    min-height: 12.5rem;
    border-radius: 1.5rem 0 0 0;
  }
}

.feature-card:has(.feature-card__btn) {
  justify-content: space-between;
}

.plans {
  background: hsl(220, 13%, 96%);
  padding: 1.5rem 1.25rem 3rem;
}
@media (min-width: 48em) {
  .plans {
    padding: 1.5rem 2rem 5rem;
  }
}
@media (min-width: 64em) {
  .plans {
    padding: 2rem 2.5rem 6.5rem;
  }
}
.plans__inner {
  max-width: 33rem;
  margin-inline: auto;
}
@media (min-width: 48em) {
  .plans__inner {
    max-width: none;
  }
}
@media (min-width: 64em) {
  .plans__inner {
    max-width: 70rem;
  }
}
.plans__title {
  margin: 0 0 1.25rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: hsl(0, 0%, 4%);
}
@media (min-width: 48em) {
  .plans__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 64em) {
  .plans__title {
    font-size: 2.5rem;
  }
}
.plans__lead {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(212, 20%, 22%);
}
@media (min-width: 48em) {
  .plans__lead {
    font-size: 1rem;
  }
}
.plans__lead-mark {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  object-fit: contain;
}
.plans__sub {
  margin: 0.625rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(207, 9%, 49%);
}
@media (min-width: 48em) {
  .plans__sub {
    font-size: 1rem;
  }
}
.plans__payments {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: hsl(207, 9%, 55%);
}
@media (min-width: 48em) {
  .plans__payments {
    margin-top: 2.25rem;
  }
}
@media (min-width: 64em) {
  .plans__payments {
    font-size: 0.9375rem;
  }
}
.plans__telegram {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(212, 20%, 25%);
}
@media (min-width: 64em) {
  .plans__telegram {
    font-size: 0.9375rem;
  }
}
.plans__telegram svg {
  width: 1.125em;
  height: 1.125em;
  margin-right: 0.4em;
  vertical-align: -0.18em;
  color: hsl(203, 89%, 53%);
}
.plans__telegram a {
  color: hsl(203, 89%, 53%);
  font-weight: 500;
}

.plan-cards {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48em) {
  .plan-cards {
    margin-top: 2.5rem;
    max-width: 30rem;
    margin-inline: auto;
  }
}
@media (min-width: 64em) {
  .plan-cards {
    max-width: none;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.5rem;
  }
}

.plan-card {
  position: relative;
  overflow: hidden;
  background: hsl(0, 0%, 100%);
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 8px 22px -10px hsla(212, 60%, 25%, 0.16);
}
@media (min-width: 64em) {
  .plan-card {
    display: flex;
    flex-direction: column;
  }
}
.plan-card--premium {
  background: hsl(40, 50%, 99%);
}
@media (min-width: 64em) {
  .plan-card--premium {
    box-shadow: 0 22px 50px -20px hsla(196, 80%, 40%, 0.45);
    outline: 1.5px solid hsla(196, 88%, 55%, 0.5);
    outline-offset: -1.5px;
  }
}
.plan-card__badge {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.25rem;
  width: 5rem;
  height: auto;
}
.plan-card__badge--premium {
  top: 0;
  inset-inline-end: 0;
  width: 7.5rem;
}
.plan-card__badge--ultimate {
  width: 4.5rem;
}
.plan-card__name {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(0, 0%, 4%);
}
.plan-card__price {
  margin: 0.625rem 0 0;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(0, 0%, 4%);
}
.plan-card__price span {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: hsl(207, 10%, 55%);
}
@media (min-width: 64em) {
  .plan-card__price span {
    font-size: 0.875rem;
  }
}
.plan-card__features {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (min-width: 64em) {
  .plan-card__features {
    margin-bottom: 1.5rem;
  }
}
.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(216, 25%, 12%);
}
@media (min-width: 64em) {
  .plan-card__features li {
    font-size: 0.9375rem;
  }
}
.plan-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3.5rem;
  margin-top: 1.75rem;
  border-radius: 0.625rem;
}
@media (min-width: 64em) {
  .plan-card__btn {
    margin-top: auto;
  }
}
.plan-card__btn {
  font-size: 1rem;
  font-weight: 600;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.plan-card__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.plan-card__btn:active {
  transform: translateY(1px);
}
.plan-card__btn:hover {
  filter: brightness(0.96);
}
.plan-card__btn--soft {
  background: hsl(210, 24%, 91%);
  color: hsl(212, 47%, 22%);
}
.plan-card__btn--cyan {
  background: hsl(196, 88%, 55%);
  color: hsl(0, 0%, 100%);
}
.plan-card__btn--blue {
  background: hsl(211, 100%, 53%);
  color: hsl(0, 0%, 100%);
}

.giveaway {
  padding: 2.5rem 1.25rem;
  text-align: start;
}
@media (min-width: 48em) {
  .giveaway {
    padding: 3.75rem 2rem;
  }
}
@media (min-width: 64em) {
  .giveaway {
    padding: 4.5rem 2.5rem;
  }
}
@media (min-width: 48em) {
  .giveaway .promo__inner {
    max-width: 40rem;
  }
}
@media (min-width: 64em) {
  .giveaway .promo__inner {
    max-width: 70rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "icon  btn" "title btn" "text  btn";
    justify-items: start;
    align-items: center;
    column-gap: 4rem;
  }
}
@media (min-width: 48em) {
  .giveaway .promo__icon {
    width: 3rem;
    height: 3rem;
  }
}
@media (min-width: 64em) {
  .giveaway .promo__icon {
    grid-area: icon;
  }
}
.giveaway .promo__title {
  margin-top: 1rem;
  letter-spacing: -0.01em;
}
@media (min-width: 48em) {
  .giveaway .promo__title {
    font-size: 1.625rem;
  }
}
@media (min-width: 64em) {
  .giveaway .promo__title {
    grid-area: title;
  }
}
@media (min-width: 48em) {
  .giveaway .promo__text {
    font-size: 1rem;
    max-width: 30rem;
  }
}
@media (min-width: 64em) {
  .giveaway .promo__text {
    grid-area: text;
    max-width: 34rem;
  }
}
@media (min-width: 64em) {
  .giveaway .promo__btn {
    grid-area: btn;
    align-self: center;
    margin: 0;
  }
}

.testimonials {
  background: hsl(220, 13%, 96%);
  padding: 2.75rem 1.25rem 2rem;
}
@media (min-width: 48em) {
  .testimonials {
    padding: 4.5rem 2rem 3rem;
  }
}
@media (min-width: 64em) {
  .testimonials {
    padding: 6rem 2.5rem 4rem;
  }
}
.testimonials__inner {
  max-width: 33rem;
  margin-inline: auto;
}
@media (min-width: 48em) {
  .testimonials__inner {
    max-width: none;
  }
}
@media (min-width: 64em) {
  .testimonials__inner {
    max-width: 70rem;
  }
}
.testimonials__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: hsl(0, 0%, 4%);
}
@media (min-width: 48em) {
  .testimonials__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 64em) {
  .testimonials__title {
    font-size: 2.5rem;
  }
}
.testimonials__sub {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: hsl(207, 9%, 45%);
}
@media (min-width: 48em) {
  .testimonials__sub {
    font-size: 1rem;
  }
}

.testimonial-cards {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (min-width: 48em) {
  .testimonial-cards {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 64em) {
  .testimonial-cards {
    margin-top: 3rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.testimonial {
  position: relative;
  overflow: hidden;
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 8px 22px -12px hsla(212, 60%, 25%, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 48em) {
  .testimonial {
    display: flex;
    flex-direction: column;
    padding: 1.625rem 1.5rem;
  }
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -16px hsla(212, 60%, 25%, 0.28);
}
.testimonial__mark {
  position: absolute;
  top: -0.75rem;
  right: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.5rem;
  line-height: 1;
  color: hsla(211, 90%, 55%, 0.1);
  pointer-events: none;
  user-select: none;
}
.testimonial__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: hsl(212, 16%, 26%);
}
@media (min-width: 64em) {
  .testimonial__quote {
    font-size: 1rem;
  }
}
.testimonial__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid hsl(214, 22%, 92%);
}
@media (min-width: 48em) {
  .testimonial__head {
    margin-top: auto;
  }
}
.testimonial__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
}
.testimonial__avatar--blue {
  background: hsl(214, 95%, 92%);
  color: hsl(214, 62%, 52%);
}
.testimonial__avatar--lavender {
  background: hsl(258, 75%, 93%);
  color: hsl(258, 48%, 60%);
}
.testimonial__avatar--mint {
  background: hsl(152, 58%, 90%);
  color: hsl(152, 45%, 38%);
}
.testimonial__avatar--peach {
  background: hsl(28, 92%, 91%);
  color: hsl(24, 68%, 52%);
}
.testimonial__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.testimonial__name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: hsl(216, 22%, 18%);
}
.testimonial__role {
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  color: hsl(212, 12%, 52%);
}
@media (min-width: 64em) {
  .testimonial__role {
    font-size: 0.875rem;
  }
}

.faq {
  background: hsl(220, 13%, 96%);
  padding: 2.5rem 1.25rem 2.5rem;
}
@media (min-width: 48em) {
  .faq {
    padding: 4.5rem 2rem;
  }
}
@media (min-width: 64em) {
  .faq {
    padding: 6rem 2.5rem;
  }
}
.faq__inner {
  max-width: 33rem;
  margin-inline: auto;
}
@media (min-width: 48em) {
  .faq__inner {
    max-width: none;
  }
}
@media (min-width: 64em) {
  .faq__inner {
    max-width: 70rem;
  }
}
@media (min-width: 64em) {
  .faq__inner {
    display: grid;
    grid-template-columns: 22rem 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 4.5rem;
    align-items: start;
  }
}
.faq__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: hsl(0, 0%, 4%);
}
@media (min-width: 48em) {
  .faq__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 64em) {
  .faq__title {
    text-align: start;
    font-size: 2.5rem;
    grid-column: 1;
    grid-row: 1;
  }
}
.faq__sub {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: hsl(207, 9%, 45%);
}
@media (min-width: 48em) {
  .faq__sub {
    font-size: 1rem;
  }
}
@media (min-width: 64em) {
  .faq__sub {
    text-align: start;
    grid-column: 1;
    grid-row: 2;
  }
}
.faq__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 48em) {
  .faq__list {
    margin-top: 2.25rem;
  }
}
@media (min-width: 64em) {
  .faq__list {
    margin-top: 0;
    grid-column: 2;
    grid-row: 1/-1;
  }
}

.faq-item {
  background: hsl(0, 0%, 100%);
  border-radius: 1rem;
  box-shadow: 0 6px 18px -12px hsla(212, 60%, 25%, 0.12);
}
.faq-item[open] {
  background: hsl(214, 27%, 92%);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(0, 0%, 4%);
  cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker {
  display: none;
}
@media (min-width: 64em) {
  .faq-item__q {
    padding: 1.375rem 1.5rem;
    font-size: 1rem;
  }
}
.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2.5px;
  border-radius: 2px;
  background: hsl(0, 0%, 4%);
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}
.faq-item__a {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: hsl(212, 14%, 34%);
  border-top: 1px solid hsla(212, 30%, 40%, 0.15);
  padding-top: 1rem;
  margin-inline: 1.25rem;
  padding-inline: 0;
}
@media (min-width: 64em) {
  .faq-item__a {
    font-size: 1rem;
    margin-inline: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.cta {
  background: hsl(220, 13%, 96%);
  padding: 1rem 1.25rem 3rem;
}
@media (min-width: 48em) {
  .cta {
    padding: 2rem 2rem 5rem;
  }
}
@media (min-width: 64em) {
  .cta {
    padding: 2rem 2.5rem 7rem;
  }
}
.cta__card {
  max-width: 33rem;
  margin-inline: auto;
}
@media (min-width: 48em) {
  .cta__card {
    max-width: 45rem;
    padding: 3rem 2.5rem;
    text-align: center;
    border-radius: 2rem;
  }
}
@media (min-width: 64em) {
  .cta__card {
    max-width: 70rem;
    padding: 3.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "art   btn" "title btn" "text  btn";
    justify-items: start;
    align-items: center;
    column-gap: 4rem;
    text-align: left;
  }
}
.cta .promo__art {
  width: 7.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 48em) {
  .cta .promo__art {
    width: 9.5rem;
    margin-inline: auto;
    margin-bottom: 2rem;
  }
}
@media (min-width: 64em) {
  .cta .promo__art {
    grid-area: art;
    margin: 0 0 1rem;
  }
}
@media (min-width: 48em) {
  .cta .promo__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 64em) {
  .cta .promo__title {
    grid-area: title;
    font-size: 2.25rem;
  }
}
@media (min-width: 48em) {
  .cta .promo__text {
    font-size: 1.0625rem;
    max-width: 34rem;
    margin-inline: auto;
  }
}
@media (min-width: 64em) {
  .cta .promo__text {
    grid-area: text;
    max-width: 38rem;
    margin: 0.625rem 0 0;
  }
}
@media (min-width: 48em) {
  .cta .promo__btn {
    margin-inline: auto;
    padding-inline: 2.75rem;
  }
}
@media (min-width: 64em) {
  .cta .promo__btn {
    grid-area: btn;
    align-self: center;
    width: auto;
    margin: 0;
    padding-inline: 2.5rem;
    white-space: nowrap;
  }
}
