:root {
  --color-text: #232323;
  --color-muted: #3b3b3f;
  --color-muted-light: #6e6e74;
  --color-light: #ffffff;
  --color-bg: #ffffff;
  --color-accent: #ff8a67;
  --color-accent-dark: #e0704f;
  --color-dark: #1f1f21;
  --color-border: #e3e3e8;
  --page-gutter: 60px;
  --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.18);
  --shadow-inset: inset 0 0 48px rgba(0, 0, 0, 0.7);
  --soft-mask: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

.main-content-preload,
main {
  overflow-x: hidden;
}

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

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

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

.container {
  width: calc(100% - (var(--page-gutter) * 2));
  margin: 0 auto;
}

.bg-soft-radial,
.booking__bg,
.footer-shell::after {
  -webkit-mask-image: var(--soft-mask);
  mask-image: var(--soft-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.12s;
}

.reveal.delay-2 {
  animation-delay: 0.24s;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--light {
  background: radial-gradient(
      circle at 12% 12%,
      rgba(255, 138, 103, 0.08),
      transparent 55%
    ),
    radial-gradient(circle at 85% 18%, rgba(35, 35, 35, 0.06), transparent 55%),
    var(--color-bg);
}

.section--dark {
  background: #232323;
  color: var(--color-light);
  padding: 140px 0 120px;
}

.section__head {
  margin-bottom: 48px;
}

.section__eyebrow {
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

.section__desc {
  font-size: 20px;
  color: var(--color-muted);
  line-height: 1.4;
  max-width: 720px;
}

.btn {
  background: var(--color-accent);
  color: var(--color-light);
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(255, 138, 103, 0.35);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-light);
  padding: 12px 22px;
  text-transform: none;
  font-weight: 600;
}

.btn--primary {
  background: var(--color-accent);
}

.btn--small {
  padding: 10px 18px;
  font-size: 12px;
}

.btn--vk {
  background: #0077ff;
  padding: 10px 18px;
  font-size: 14px;
}

.btn--tg {
  background: #2ea5dd;
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 60px 0 100px;
  color: var(--color-light);
  overflow: hidden;
  min-height: 820px;
  background: #111820;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hero__ellipse {
  position: absolute;
  left: -140px;
  top: -80px;
  width: 720px;
  height: 520px;
  opacity: 0.6;
  border-radius: 9999px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 70%
  );
}

.hero__person {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: clamp(320px, 38vw, 560px);
  height: auto;
  pointer-events: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}

.logo__mark {
  color: var(--color-accent);
}

.logo--footer {
  color: var(--color-light);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__content {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 120px;
  position: relative;
  z-index: 2;
}

.hero__text {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__kicker {
  font-size: 72px;
  font-family: "Marck Script", "Montserrat", cursive;
  line-height: 1;
  margin: 0 0 12px;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
}

.hero__title {
  font-size: clamp(88px, 13vw, 190px);
  font-family: "Marck Script", "Montserrat", cursive;
  margin: 0 0 16px;
  line-height: 0.9;
  text-shadow: 0 12px 20px rgba(0, 0, 0, 0.55);
}

.hero__subtitle {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

.hero__stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.stat__value {
  font-size: 36px;
  font-weight: 600;
}

.stat__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  margin-bottom: 40px;
}

.photo-card {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--color-light);
  background: var(--photo);
  box-shadow: var(--shadow-inset);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.72) 20%,
    rgba(0, 0, 0, 0) 70%
  );
}

.photo-card__content {
  position: relative;
  padding: 28px;
}

.photo-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.photo-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.destination-card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e3e3e8;
  box-shadow: -8px 12px 30px rgba(0, 0, 0, 0.2);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  isolation: isolate;
  aspect-ratio: 418 / 520;
}

.destination-card__media {
  aspect-ratio: 3 / 2;
  background: var(--photo);
  border-radius: 12px;
  margin: 0 0 20px;
  width: 100%;
}

.destination-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  flex: 1;
}

.destination-card h3 {
  margin: 0;
  font-size: 22px;
}

.destination-card p {
  margin: 0;
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.5;
}

.destination-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
}

.tag {
  position: absolute;
  right: -0.8rem;
  top: -0.8rem;
  z-index: 2;
  background: var(--color-accent);
  color: var(--color-light);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.tag__line {
  display: block;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.image-block {
  width: 100%;
  min-height: 304px;
  aspect-ratio: 16 / 7;
  border-radius: 20px;
  background: linear-gradient(135deg, #3f5667, #a0b3bf 60%, #e1e7ec);
  box-shadow: var(--shadow-inset);
}

.copy-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.copy-block .btn {
  align-self: flex-start;
  width: 33.333%;
  padding: 16px 0;
  justify-content: center;
}

.booking__title {
  position: absolute;
  top: calc(var(--booking-divider-height, 0px) + 16px);
  left: var(--page-gutter);
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  z-index: 3;
}

#booking {
  --booking-divider-height: 43px;
  position: relative;
  overflow: hidden;
}

.booking__bg {
  position: absolute;
  height: 1282.16px;
  left: -100px;
  right: -954px;
  top: calc(50% - 1282.16px / 2 + 12.72px);
  background: #ffffff;
  background-image: url("../img/back3.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.booking-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--booking-divider-height);
  transform: none;
  z-index: 2;
  pointer-events: none;
}

.booking__layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.booking__card {
  background: var(--color-light);
  color: var(--color-text);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 20px 13px 54px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
  margin-left: 60px;
}

.booking__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking__icon {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-size: 36px;
}

.booking__icon .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.booking__icon .bi::before {
  line-height: 1;
  vertical-align: 0;
}

.booking__steps {
  display: grid;
  gap: 24px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step__num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step__title {
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.4;
}

.booking__image {
  min-height: 520px;
  border-radius: 20px;
  border: 8px solid var(--color-light);
  background: linear-gradient(140deg, #2a3c4e, #5c7484 60%, #1e2b34);
  box-shadow: var(--shadow-inset);
  width: calc(100% + 140px);
  margin-left: -200px;
  position: relative;
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--color-light);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: -8px 12px 30px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.team-card__media {
  height: 320px;
  background: linear-gradient(140deg, #514b60, #847e9a 60%);
}

.team-card__media--alt {
  background: linear-gradient(140deg, #3f5b4d, #90ad93 60%);
}

.team-card__media--alt2 {
  background: linear-gradient(140deg, #4d3b3b, #9f7b7b 60%);
}

.team-card__media--alt3 {
  background: linear-gradient(140deg, #2c4155, #7b9cb5 60%);
}

.team-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-card h3 {
  margin: 0;
  font-size: 20px;
}

.team-card span {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 16px;
}

.team-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.4;
}

.reviews {
  position: relative;
  overflow: visible;
}

.reviews::before {
  content: "";
  position: absolute;
  left: -33px;
  width: 2649px;
  height: 1947px;
  top: -600px;
  bottom: auto;
  background: url("../img/back1.webp") center/cover no-repeat;
  opacity: 0.03;
  transform: rotate(180deg);
  transform-origin: center;
  z-index: 0;
  pointer-events: none;
}

.reviews::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    #ffffff 70%,
    #ffffff 100%
  );
  z-index: 1;
  pointer-events: none;
}

.reviews__layout {
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
  z-index: 2;
}

.reviews__intro {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
}

.reviews__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.review-card {
  background: var(--color-light);
  border-radius: 12px;
  border: 1px solid #e9e9ed;
  box-shadow: -8px 12px 30px rgba(0, 0, 0, 0.2);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card__header {
  display: flex;
  gap: 24px;
  align-items: center;
}

.review-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2e3d4f, #4d6b87);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4);
}

.review-card__avatar--alt {
  background: linear-gradient(135deg, #5f4b3c, #b08b6c);
}

.review-card__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.review-card__meta {
  color: var(--color-muted-light);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.review-card p {
  margin: 0;
  color: var(--color-muted-light);
  font-size: 16px;
  line-height: 24px;
}

.review-card__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-card__gallery .gallery-box {
  flex: 0 0 88px;
  width: 88px;
  height: 81px;
}

.review-card__gallery .gallery-box a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(120deg, #c7c7c7, #eeeeee);
}

.review-card__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews__phone {
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(220px, 26vw, 317px);
  aspect-ratio: 317 / 686;
  background: url("Frame68/iPhone 13 - Silver - Portrait.svg") center/contain
    no-repeat;
  box-shadow: -16px 32px 30px rgba(0, 0, 0, 0.2);
  transform: translate(-8%, 8%) rotate(-33.79deg);
  transform-origin: center;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 80px 0;
}

.footer-shell {
  position: relative;
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 1px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 3px
  );
  transform: scale(1.1);
  filter: blur(0.35px);
  z-index: 2;
}

.footer-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      120% 90% at 50% 40%,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url("../img/back3.webp") right bottom / 120% auto no-repeat,
    radial-gradient(700px 420px at 75% 92%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 60%);
  filter: grayscale(1) contrast(1.05) brightness(0.85);
  opacity: 0.55;
  z-index: 2;
}

.footer-vector {
  z-index: 4 !important;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer__brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.footer__title {
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col a {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .hero__person {
    right: -120px;
    width: clamp(260px, 45vw, 420px);
    opacity: 0.7;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .booking__layout {
    grid-template-columns: 1fr;
  }

  .booking__card {
    margin-left: 0;
  }

  .booking__image {
    width: 100%;
    margin-left: 0;
  }

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

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

  .reviews__phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__content {
    margin-top: 80px;
  }

  .hero__person {
    display: none;
  }

  .hero__kicker {
    font-size: 54px;
  }

  .section {
    padding: 80px 0;
  }

  .booking__title {
    display: none;
  }

  .booking__card {
    padding: 32px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .image-block {
    min-height: 240px;
  }

  .reviews__cards {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: 24px;
  }

  #benefits.section,
  #routes.section,
  #routes + .section.section--light,
  #routes + .section + .section.section--light {
    padding: 68px 0;
  }

  #benefits .section__head,
  #routes .section__head,
  #routes + .section .section__head,
  #routes + .section + .section .section__head {
    margin-bottom: 32px;
  }

  #benefits .section__eyebrow,
  #routes .section__eyebrow,
  #routes + .section .section__eyebrow,
  #routes + .section + .section .section__eyebrow {
    font-size: 14px;
  }

  #benefits .section__title,
  #routes .section__title,
  #routes + .section .section__title,
  #routes + .section + .section .section__title {
    font-size: 28px;
    line-height: 1.2;
  }

  #benefits .section__desc,
  #routes .section__desc,
  #routes + .section .section__desc,
  #routes + .section + .section .section__desc {
    font-size: 16px;
    max-width: none;
  }

  #benefits .card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #benefits .photo-card,
  #routes + .section + .section .photo-card {
    min-height: 260px;
  }

  #benefits .photo-card__content,
  #routes + .section + .section .photo-card__content {
    padding: 24px;
  }

  #benefits .photo-card h3,
  #routes + .section + .section .photo-card h3 {
    font-size: 18px;
  }

  #benefits .photo-card p,
  #routes + .section + .section .photo-card p {
    font-size: 15px;
  }

  #routes .destination-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #routes .destination-card {
    aspect-ratio: auto;
    padding: 18px;
  }

  #routes .destination-card h3 {
    font-size: 20px;
  }

  #routes .destination-card p {
    font-size: 16px;
  }

  #routes .tag {
    width: 72px;
    height: 72px;
    font-size: 14px;
    line-height: 18px;
  }

  #routes + .section .two-column {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #routes + .section .image-block {
    min-height: 312px;
    aspect-ratio: 428 / 312;
  }

  #routes + .section .copy-block {
    gap: 16px;
  }

  #routes + .section .copy-block .btn {
    width: 100%;
    max-width: 380px;
  }

  #routes + .section + .section .card-grid--wide {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  #booking.section--dark {
    padding: 120px 0;
  }

  #booking .booking__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #booking .booking__card {
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
    padding: 24px;
    gap: 24px;
  }

  #booking .booking__intro h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  #booking .booking__steps {
    gap: 24px;
  }

  #booking .step {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  #booking .step__title {
    font-size: 20px;
  }

  #booking .step p {
    font-size: 16px;
    line-height: 1.5;
  }

  #booking .btn {
    width: 100%;
    max-width: 380px;
  }

  #booking .booking__image {
    display: none;
  }

  footer {
    align-items: stretch;
  }

  .footer-shell {
    padding: 68px 0 48px !important;
    gap: 48px !important;
    align-items: stretch !important;
  }

  .footer-bg {
    width: 1482px !important;
    height: 761.89px !important;
    left: -100px !important;
    right: auto !important;
    top: 129.77px !important;
  }

  .footer-vector {
    height: auto !important;
    top: -1 !important;
  }

  .footer-content {
    width: 100%;
    padding: 0 24px;
    gap: 68px !important;
    align-items: flex-start !important;
  }

  .footer-top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 68px !important;
  }

  .footer-brand-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }

  .footer-brand {
    align-items: flex-start !important;
    width: 100%;
  }

  .footer-columns {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 48px !important;
    width: 100% !important;
  }

  .footer-columns > div {
    width: 100% !important;
    align-items: flex-start !important;
  }

  .footer-columns > div > div {
    align-items: flex-start !important;
  }

  .footer-columns > div:nth-of-type(1) > div:last-child {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 24px !important;
    width: 100% !important;
  }

  .footer-columns > div:nth-of-type(1) > div:last-child > div {
    align-items: flex-start !important;
  }

  .footer-columns > div[style*="width: 1px"] {
    display: none !important;
  }

  .footer-top > div:last-child {
    max-width: none !important;
    width: 100% !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }

  .footer-top > div:last-child > div {
    align-items: flex-start !important;
  }

  .footer-top > div:last-child [data-big-icon="true"] {
    justify-content: flex-start !important;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
