@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,600;1,100;1,300;1,400;1,600&family=Sora:wght@100;400;600&family=Playfair+Display:ital@1&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

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

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

.header {
  background: #000;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.header__logo:hover {
  opacity: 0.85;
}

.header__burger img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.header__burger:hover img {
  transform: scaleX(1.1);
}

.header__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header__logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 26.667px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.2667px;
  color: #fff;
  line-height: 40px;
  white-space: nowrap;
}

.header__logo-text span {
  font-weight: 100;
}

.header__nav {
  display: flex;
  gap: 43px;
  align-items: center;
}

.header__nav a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.48px;
  line-height: 20px;
  transition: color 0.3s;
}

.header__nav a:hover {
  color: #fff;
}

.header__burger {
  display: none;
  width: 45px;
  height: 12px;
}

.hero {
  background: #000;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero__ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 62px)) rotate(-90deg);
  width: 494px;
  height: 396px;
  pointer-events: none;
}

.hero__ellipse img {
  width: 200%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -40%;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -2.4px;
  line-height: 1;
  color: #fff;
  width: 1080px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.hero__title .thin {
  font-weight: 100;
}

.hero__description {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.48px;
  line-height: 20px;
  color: #fff;
  width: 815px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero__games {
  position: relative;
  width: 1200px;
  max-width: 100%;
  height: 319px;
  z-index: 1;
}

.hero__games-row {
  display: contents;
}

.hero__game {
  width: 160px;
  height: 160px;
  border-radius: 30px;
  box-shadow: 0 0 95.8px 0 #3ed0f9;
  overflow: hidden;
  position: absolute;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease;
}

.hero__game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero__game:hover {
  box-shadow: 0 0 120px 4px #3ed0f9;
}

.hero__game:hover img {
  transform: scale(1.08);
}

.hero__game--1 {
  left: 19px;
  top: 127px;
  transform: rotate(-16deg);
}

.hero__game--2 {
  left: 172px;
  top: 30.73px;
  transform: rotate(-8deg);
}

.hero__game--3 {
  left: 426px;
  top: 1px;
  transform: none;
}

.hero__game--4 {
  left: 614px;
  top: 1px;
  transform: none;
}

.hero__game--5 {
  left: 826px;
  top: 31px;
  transform: rotate(8deg);
}

.hero__game--6 {
  left: 993.9px;
  top: 127px;
  transform: rotate(16deg);
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  border-radius: 30px;
  background: linear-gradient(153.02deg, rgba(90, 59, 152, 0.8) 14.539%, rgba(40, 89, 250, 0.8) 41.085%, rgba(62, 208, 249, 0.8) 80.085%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 1.2;
  max-width: 200px;
}

.btn-gradient:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(62, 208, 249, 0.28);
}

.btn-gradient:active {
  transform: translateY(0);
}

.catalog-description {
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.48px;
  line-height: 20px;
  color: #fff;
  width: 815px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.catalog-description p + p {
  margin-top: 16px;
}

.features__description {
  width: 100%;
  position: relative;
  z-index: 1;
}

.policy {
  background: #000;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.policy__ellipse {
  position: absolute;
  top: -80px;
  left: 130px;
  width: 935.833px;
  height: 160.833px;
  pointer-events: none;
}

.policy__ellipse img {
  width: 130%;
  height: 360%;
  position: absolute;
  top: -83%;
  left: -14%;
}

.policy__title {
  font-size: 54px;
  font-weight: 100;
  text-align: center;
  letter-spacing: -2.5px;
  line-height: 0.8;
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 1;
}

.policy__title .bold {
  font-weight: 400;
}

.policy__content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #bbb;
  width: 100%;
  position: relative;
  z-index: 1;
}

.policy__content p {
  margin-bottom: 20px;
}

.policy__content p:last-child {
  margin-bottom: 0;
}

.hero__decor {
  position: absolute;
  right: -14px;
  top: 118px;
  width: 238px;
  height: 268px;
  pointer-events: none;
}

.decor-box {
  position: absolute;
}

.decor-box__outer {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 143px;
  height: 143px;
  left: 92.5px;
  top: 72px;
}

.decor-box__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(206, 206, 206, 0.6);
  border: 1px solid rgba(73, 73, 73, 0.6);
}

.decor-box__dot--tl { left: 90.5px; top: 70px; }
.decor-box__dot--tr { left: 233.5px; top: 70.5px; }
.decor-box__dot--br { left: 233px; top: 213px; }
.decor-box__dot--bl { left: 90.5px; top: 213px; }

.decor-box__inner {
  position: absolute;
  border: 0.6px solid rgba(255, 255, 255, 0.6);
  width: 85.8px;
  height: 85.8px;
  left: 54.7px;
  top: 161.9px;
}

.decor-box__inner-dot {
  position: absolute;
  width: 2.4px;
  height: 2.4px;
  background: rgba(206, 206, 206, 0.6);
  border: 0.6px solid rgba(255, 255, 255, 0.6);
}

.decor-box__inner-dot--tr { left: 139.3px; top: 161px; }
.decor-box__inner-dot--br { left: 139px; top: 246.5px; }

.pick-mode {
  background: #000;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.pick-mode__image {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  display: flex;
  overflow: hidden;
  border-radius: 30px;
}

.pick-mode__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.6s ease;
}

.pick-mode__image:hover img {
  transform: scale(1.05);
}

.pick-mode__content {
  width: 530px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pick-mode__title {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.pick-mode__title .thin {
  font-weight: 100;
}

.pick-mode__text {
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.32px;
  color: #fff;
}

.pick-mode__text p + p {
  margin-top: 0;
}

.features {
  background: #000;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.features__ellipse {
  position: absolute;
  top: -80px;
  left: 130px;
  width: 935.833px;
  height: 160.833px;
  pointer-events: none;
}

.features__ellipse img {
  width: 130%;
  height: 360%;
  position: absolute;
  top: -83%;
  left: -14%;
}

.features__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.features__title {
  font-size: 54px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -2.5px;
  line-height: 0.8;
  color: #fff;
  width: 100%;
}

.features__title .thin {
  font-weight: 100;
}

.features__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.features__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 0.833px solid #333;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.features__item:hover {
  border-color: rgba(62, 208, 249, 0.6);
  transform: translateX(6px);
}

.features__item-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.features__item:hover .features__item-icon {
  transform: scale(1.08);
}

.features__item-name {
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.2px;
  color: #fff;
  width: 350px;
  flex-shrink: 0;
}

.features__item-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  color: #bbb;
  width: 460px;
  flex-shrink: 0;
}

.quote {
  background: #000;
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.quote__text {
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -4.2px;
  line-height: 1.1;
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 1;
}

.quote__text .faded {
  color: rgba(255, 255, 255, 0.3);
}

.quote__decor-left {
  position: absolute;
  left: -33px;
  top: -65px;
  width: 238px;
  height: 268px;
  pointer-events: none;
}

.quote__decor-right {
  position: absolute;
  right: -76px;
  top: 276px;
  width: 181.164px;
  height: 204px;
  transform: scaleY(-1);
  pointer-events: none;
}

.quote__decor-right .decor-sm__outer {
  position: absolute;
  border: 0.761px solid rgba(255, 255, 255, 0.6);
  width: 108.851px;
  height: 108.851px;
  left: 70.41px;
  top: 54.81px;
}

.quote__decor-right .decor-sm__dot {
  position: absolute;
  width: 3.045px;
  height: 3.045px;
  background: rgba(206, 206, 206, 0.6);
  border: 0.761px solid rgba(73, 73, 73, 0.6);
}

.quote__decor-right .decor-sm__dot--tl { left: 68.89px; top: 53.28px; }
.quote__decor-right .decor-sm__dot--tr { left: 177.74px; top: 53.66px; }
.quote__decor-right .decor-sm__dot--br { left: 177.36px; top: 162.13px; }
.quote__decor-right .decor-sm__dot--bl { left: 68.89px; top: 162.13px; }

.quote__decor-right .decor-sm__inner {
  position: absolute;
  border: 0.457px solid rgba(255, 255, 255, 0.6);
  width: 65.31px;
  height: 65.31px;
  left: 41.64px;
  top: 123.24px;
}

.quote__decor-right .decor-sm__inner-dot {
  position: absolute;
  width: 1.827px;
  height: 1.827px;
  background: rgba(206, 206, 206, 0.6);
  border: 0.457px solid rgba(255, 255, 255, 0.6);
}

.quote__decor-right .decor-sm__inner-dot--tr { left: 106.03px; top: 122.55px; }
.quote__decor-right .decor-sm__inner-dot--br { left: 105.81px; top: 187.63px; }

.built {
  background: #000;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.built__content {
  width: 530px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.built__title {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.built__title .thin {
  font-weight: 100;
}

.built__text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  color: #fff;
}

.built__text p + p {
  margin-top: 16px;
}

.built__image {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  display: flex;
  overflow: hidden;
  border-radius: 30px;
}

.built__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.6s ease;
}

.built__image:hover img {
  transform: scale(1.05);
}

.footer {
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 115px;
  align-items: center;
  padding-bottom: 40px;
  overflow: hidden;
}

.footer__brand {
  position: relative;
  width: 1200px;
  max-width: 100%;
  height: 249px;
}

.footer__brand-ellipse {
  position: absolute;
  left: -27.5px;
  top: 114.83px;
  width: 1229.762px;
  height: 217.221px;
  pointer-events: none;
}

.footer__brand-ellipse img {
  width: 122%;
  height: 225%;
  position: absolute;
  top: -62%;
  left: -11%;
}

.footer__brand-ellipse-mobile {
  display: none;
}

.footer__brand-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 29.5px));
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 170px;
  line-height: 60px;
  letter-spacing: -5.1px;
  color: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  text-align: center;
}

.footer__content {
  width: 1080px;
  max-width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__info {
  display: flex;
  gap: 100px;
  align-items: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer__info-block {
  width: 255px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.footer__info-label {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 13px;
}

.footer__info-value {
  font-size: 15px;
  line-height: 23px;
}

.footer__socials {
  display: flex;
  gap: 32.3px;
}

.footer__social {
  width: 76px;
  height: 76px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__social:hover {
  transform: translateY(-4px) scale(1.05);
  opacity: 0.85;
}

.footer__social img {
  width: 100%;
  height: 100%;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.footer__copyright {
  font-size: 12px;
  color: #bbb;
  line-height: 17px;
}

.footer__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 53px;
  white-space: nowrap;
}

.footer__links a {
  font-size: 16px;
  color: #bbb;
  line-height: 17px;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__back-top {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__back-top:hover {
  transform: translateY(-4px);
  opacity: 0.7;
}

.footer__back-top img {
  width: 82.62%;
  height: 45.7%;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title,
.hero__description,
.hero__games,
.hero .btn-gradient {
  animation: fadeUp 0.8s ease both;
}

.hero__description { animation-delay: 0.1s; }
.hero__games { animation-delay: 0.2s; }
.hero .btn-gradient { animation-delay: 0.3s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 24px);
  width: calc(100% - 48px);
  max-width: 1320px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 28px;
  padding: 40px 48px;
  z-index: 1000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.cookie-banner.cookie-banner--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-banner__title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  color: #0a0a0a;
  margin-bottom: 22px;
}

.cookie-banner__text {
  font-size: 16px;
  line-height: 1.45;
  color: #1c1c1c;
  margin-bottom: 28px;
  max-width: 1180px;
}

.cookie-banner__actions {
  display: flex;
  gap: 16px;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-banner__btn--accept {
  background: linear-gradient(153.02deg, rgba(90, 59, 152, 0.95) 14.539%, rgba(40, 89, 250, 0.95) 41.085%, rgba(62, 208, 249, 0.95) 80.085%);
}

.cookie-banner__btn--settings {
  background: linear-gradient(110deg, rgba(150, 135, 205, 0.55) 0%, rgba(150, 165, 235, 0.5) 45%, rgba(170, 215, 245, 0.75) 100%);
}

.cookie-banner__btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(62, 208, 249, 0.25);
}

.cookie-banner__btn:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__description,
  .hero__games,
  .hero .btn-gradient,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1200px) {
  .hero__games {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__games-row {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .hero__game {
    position: static;
  }

  .hero__game--1 { transform: rotate(-16deg); }
  .hero__game--2 { transform: rotate(-8deg); }
  .hero__game--3,
  .hero__game--4 { transform: none; }
  .hero__game--5 { transform: rotate(8deg); }
  .hero__game--6 { transform: rotate(16deg); }

  .hero__decor {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    position: relative;
    overflow: visible;
    z-index: 50;
  }

  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 60;
  }

  .header--open .header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__nav a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .header__nav a:hover,
  .header__nav a:active {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 16px;
  }

  .hero {
    padding: 40px 0;
    gap: 20px;
  }

  .hero__ellipse {
    transform: translate(-50%, calc(-50% - 62.4px)) rotate(-90deg);
  }

  .hero__title {
    font-size: 40px;
    letter-spacing: -1.2px;
    width: 390px;
    max-width: calc(100% - 40px);
  }

  .hero__description {
    width: 390px;
    max-width: calc(100% - 40px);
    padding: 0;
  }

  .catalog-description {
    width: 390px;
    max-width: calc(100% - 40px);
    padding: 0;
  }

  .policy {
    padding: 40px 20px;
    gap: 20px;
  }

  .policy__title {
    font-size: 32px;
  }

  .pick-mode {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .pick-mode__image {
    width: 100%;
    flex: none;
    height: 300px;
  }

  .pick-mode__image img {
    height: 300px;
  }

  .pick-mode__content {
    width: 100%;
  }

  .pick-mode__title {
    font-size: 32px;
  }

  .features {
    padding: 40px 20px;
    gap: 20px;
  }

  .features__header {
    gap: 20px;
  }

  .features__title {
    font-size: 32px;
    width: 390px;
    max-width: 100%;
  }

  .features__list {
    gap: 20px;
  }

  .features__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 390px;
    max-width: 100%;
  }

  .features__item-name {
    width: 100%;
  }

  .features__item-desc {
    width: 100%;
  }

  .quote {
    padding: 60px 20px;
    gap: 20px;
  }

  .quote__text {
    font-size: 40px;
    letter-spacing: -2.8px;
  }

  .quote__decor-right {
    right: auto;
    left: calc(50% + 58px);
    top: 274px;
  }

  .built {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .built__content {
    width: 100%;
    order: 2;
  }

  .built__image {
    width: 100%;
    flex: none;
    height: 300px;
    order: 1;
  }

  .built__image img {
    height: 300px;
  }

  .built__title {
    font-size: 32px;
  }

  .footer {
    gap: 20px;
    padding-bottom: 40px;
  }

  .footer__brand {
    height: 139px;
    width: 100%;
  }

  .footer__brand-ellipse {
    left: -120.24px;
    top: 82px;
    width: 645.362px;
    height: 113.995px;
  }

  .footer__brand-ellipse img {
    width: 142%;
    height: 336%;
    top: -118%;
    left: -21%;
  }

  .footer__brand-ellipse-desktop {
    display: none;
  }

  .footer__brand-ellipse-mobile {
    display: block;
  }

  .footer__brand-name {
    font-size: 60px;
    letter-spacing: -1.8px;
  }

  .footer__content {
    width: 100%;
    max-width: calc(100% - 40px);
    gap: 20px;
    align-items: center;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer__info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer__info-block {
    align-items: center;
  }

  .footer__socials {
    order: 3;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer__links {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer__copyright {
    order: 3;
  }

  .footer__back-top {
    order: 4;
  }

  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 28px 24px;
    border-radius: 24px;
  }

  .cookie-banner__title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .cookie-banner__text {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner__btn {
    width: 100%;
    padding: 16px 24px;
  }
}
