body {
  min-height: 100vh;
  background: #00000D;
}

main {
  --cards-gap: 24px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow: visible;
  position: relative;
}

.landing-page::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -195px;
  width: 1500px;
  height: 930px;
  background-image: url("../images/landing/bg.png");
  background-size: 1500px 930px;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.landing-page {
  position: relative;
  z-index: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  overflow: visible;
}

.landing-stack {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.waitlist {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: 170px;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: 40px;
  padding: 0 120px;
}

.waitlist__mascot-glow {
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 260px;
  height: 170px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 24%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 24%, #000 100%);
}

.waitlist__mascot-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 82% 72% at 42% 64%,
    rgba(152, 97, 178, 0.95) 0%,
    rgba(152, 97, 178, 0.58) 34%,
    rgba(152, 97, 178, 0.28) 58%,
    rgba(152, 97, 178, 0) 78%
  );
}

.waitlist__mascot-wrap {
  position: absolute;
  left: 26px;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.waitlist__mascot {
  position: relative;
  display: block;
  width: auto;
  height: 195px;
  object-fit: contain;
  object-position: bottom center;
  margin: 0 !important;
  z-index: 1;
}

.waitlist__main {
  grid-column: 1;
  margin-left: 100px;
}

.waitlist__founder {
  position: absolute;
  right: 26px;
  bottom: 0;
  width: auto;
  height: 195px;
  object-fit: contain;
  object-position: bottom center;
  margin: 0 !important;
  z-index: 1;
}

.waitlist .btn.btn--primary.waitlist__cta {
  margin-top: 0;
  height: 37px;
  box-sizing: border-box;
  padding: 0 32px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #74d04a 0%, #4ca227 55%, #3a8420 100%);
  letter-spacing: 1.5px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: rgb(28, 68, 12) 0px 10px 0px 0px;
  color: #ffffff;
  text-shadow: 0 2px 0 rgba(20, 60, 12, 0.6);
}

.waitlist__form {
  align-items: flex-start;
}

.waitlist__message {
  margin: 8px 0 0;
  color: #fff59a;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 0 rgba(10, 4, 56, 0.45);
}

.waitlist .field-pill input {
  padding: 12px 0;
  width: 250px;
}

.waitlist .btn.btn--primary.waitlist__cta:hover {
  box-shadow: rgb(28, 68, 12) 0px 7px 0px 0px;
  transform: none;
}

.waitlist .btn.btn--primary.waitlist__cta:active {
  background: linear-gradient(180deg, #74d04a 0%, #4ca227 55%, #3a8420 100%);
  box-shadow: rgb(28, 68, 12) 0px 0px 0px 0px;
  transform: translateY(5px);
  transition: 200ms;
}

.landing-footer {
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  padding: 22px 24px 28px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.landing-footer__title {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-footer__text {
  max-width: 610px;
  margin: 0 auto;
}

.landing-footer__text a {
  color: #ffce3a;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 206, 58, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.landing-footer__text a:hover {
  color: #fff59a;
  border-bottom-color: #fff59a;
}

.landing-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.landing-footer__credit a {
  color: #ffce3a;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 206, 58, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.landing-footer__credit a:hover {
  color: #fff59a;
  border-bottom-color: #fff59a;
}

.landing-cards-layout {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: var(--cards-gap);
  width: 100%;
  max-width: 100%;
  align-items: start;
  margin-top: 40px;
}

.landing-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  align-self: start;
  justify-self: start;
  max-width: 100%;
}

.landing-hero__logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-hero__logo {
  display: block;
  width: auto;
  max-width: min(100%, 450px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.landing-hero__ball {
  display: block;
  width: auto;
  max-width: 130px;
  height: auto;
  flex-shrink: 0;
  margin-left: 70px;
  margin-top: 50px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  will-change: transform;
  animation: grand-opening-float 4.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.landing-hero__copy {
  margin-top: 28px;
  margin-left: 50px;
  max-width: 520px;
}

.landing-hero__title {
  margin: 0;
  padding: 0;
}

.landing-hero__headline {
  display: block;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
}

.landing-hero__headline--accent {
  color: var(--gold);
  text-shadow: 0 3px 0 rgba(10, 4, 32, 0.5);
}

.landing-hero__lead {
  margin: 22px 0 0;
  max-width: 42ch;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #ffffff;
}

.landing-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  padding: 17px 40px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff59a 0%, #ffce3a 48%, #f5a623 100%);
  color: #0a0438;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: rgb(197, 122, 30) 0px 10px 0px 0px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.landing-hero__cta:hover {
  box-shadow: rgb(197, 122, 30) 0px 7px 0px 0px;
}

.landing-hero__cta:active {
  background: linear-gradient(180deg, #fff59a 0%, #ffce3a 48%, #f5a623 100%);
  box-shadow: rgb(197, 122, 30) 0px 0px 0px 0px;
  transform: translateY(5px);
  transition: 200ms;
}

.landing-hero__cta img {
  width: 22px;
  height: auto;
  object-fit: contain;
}

.landing-hero__hint {
  margin: 14px 0 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
  color: #ffffff;
}

.worlds-card {
  grid-column: 1;
  grid-row: 3;
  width: 100%;
}

.legend-ranks-card {
  grid-column: 2;
  grid-row: 3;
  width: 100%;
}

.grand-opening-card {
  grid-column: 3;
  grid-row: 1;
  width: 400px;
  position: relative;
  overflow: visible;
  padding: 22px 38px 20px;
}

@keyframes grand-opening-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(0, -4px, 0); }
  50% { transform: translate3d(0, -8px, 0); }
  75% { transform: translate3d(0, -4px, 0); }
}

@keyframes grand-opening-date-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__ball,
  .love-card__ball,
  .grand-opening-card__date {
    animation: none;
  }
}

.grand-opening-card__label {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}

.grand-opening-card__date {
  display: inline-block;
  margin: 10px 0 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff59a 0%, #ffce3a 48%, #f5a623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 3px 0 rgba(90, 45, 0, 0.65)) drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
  transform-origin: center;
  animation: grand-opening-date-pulse 1.8s ease-in-out infinite;
}

.love-card {
  grid-column: 3;
  grid-row: 2;
  width: 400px;
  padding-bottom: 28px;
  overflow: visible;
  position: relative;
  --love-ball-x: -120px;
  --love-ball-y: 10px;
}

.love-card__ball {
  position: absolute;
  left: var(--love-ball-x);
  bottom: var(--love-ball-y);
  width: auto;
  max-width: 110px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  will-change: transform;
  animation: grand-opening-float 5.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.rewards-card {
  grid-column: 3;
  grid-row: 3;
  width: 400px;
}

.landing-card.grand-opening-card,
.landing-card.love-card,
.landing-card.rewards-card {
  width: 400px;
}

.landing-cards-row,
.landing-cards-column {
  display: contents;
}

.landing-card {
  width: 475px;
  box-sizing: border-box;
  flex: 0 0 auto;
  padding: 28px 38px 20px;
  color: #ffffff;
  text-align: center;
  border: 2px solid rgba(91, 69, 255, 0.58);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(74, 38, 203, 0.42), transparent 48%),
    linear-gradient(180deg, #171168 0%, #090434 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36), inset 0 0 26px rgba(77, 80, 255, 0.2);
  font-family: "Nunito", sans-serif;
}

.landing-card.grand-opening-card {
  background: linear-gradient(180deg, rgba(74, 40, 150, 0.85) 0%, rgba(48, 24, 104, 0.9) 100%);
  border: 1.5px solid rgba(160, 120, 250, 0.55);
  box-shadow: 0 18px 40px rgba(10, 4, 32, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
  overflow: visible;
}

.why-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow: visible;
}

.why-item__glow {
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(152, 97, 178, 0.5) 0%,
    rgba(152, 97, 178, 0.28) 30%,
    rgba(152, 97, 178, 0.1) 55%,
    rgba(152, 97, 178, 0) 80%
  );
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.why-item__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__icon img {
  width: 50px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}

.why-item__text {
  position: relative;
  z-index: 1;
}

.why-item__text h3 {
  margin: 0;
  color: #fff65c;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.34);
}

.why-item__text p {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.landing-card > h1,
.landing-card > h2 {
  margin: 0 0 25px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.34);
}

.rank-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.rank-item {
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rank-item img {
  width: 64px;
  height: 72px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.35));
}

.rank-item span {
  width: 100%;
  margin-top: 14px;
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.38);
}

.rank-arrow {
  width: 22px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.rank-arrow img {
  width: 18px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.38));
}

.legend-reward {
  width: min(100%, 710px);
  margin: 25px auto 0;
  padding: 15px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid rgba(91, 69, 255, 0.34);
  border-radius: 24px;
  background: rgba(31, 24, 126, 0.72);
  box-shadow: inset 0 0 22px rgba(70, 65, 255, 0.18);
}

.legend-reward img {
  width: 90px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.28));
}

.legend-reward p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.5;
  font-weight: 800;
  text-align: left;
  font-size: 16px;
}

.rewards-subtitle {
  margin: 25px 0 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
}

.reward-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  margin-bottom: 45px;
}

.reward-track img {
  width: auto;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.35));
}

.world-track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.world-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.world-item img.world-item__image {
  width: auto;
  max-width: 100%;
  height: 107px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.35));
}

.world-item__status {
  width: 100%;
  min-height: 16px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.world-item__status img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 30px;
}

.world-item__status span {
  color: #fff65c;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.38);
  white-space: nowrap;
}

.seo-content {
  width: 100%;
  box-sizing: border-box;
  margin-top: 40px;
  padding: 0 24px;
  font-family: "Nunito Sans", sans-serif;
}

.seo-content__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 38px;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(91, 69, 255, 0.45);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 38, 203, 0.32), transparent 55%),
    linear-gradient(180deg, #171168 0%, #090434 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36), inset 0 0 26px rgba(77, 80, 255, 0.18);
}

.seo-content__title {
  margin: 0 0 16px;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.34);
}

.seo-content__title + .seo-content__text,
.faq-list {
  margin-top: 0;
}

.seo-content__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}

.seo-content__text strong {
  color: #ffce3a;
  font-weight: 800;
}

#faq-title {
  margin-top: 30px;
}

.faq-list {
  margin: 0;
}

.faq-item {
  padding: 16px 0;
  border-top: 1px solid rgba(91, 69, 255, 0.28);
}

.faq-item:first-of-type {
  border-top: 0;
}

.faq-item__q {
  margin: 0 0 6px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff65c;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.faq-item__a {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

/* ===== Tablet / small-desktop: el layout fijo (~1400px) pasa a 2 columnas ===== */
@media (max-width: 1400px) {
  body {
    overflow-x: hidden;
  }

  main {
    padding: 24px 16px;
  }

  .landing-page::before {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-size: 100% auto;
    background-position: top center;
  }

  .landing-cards-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 20px;
    width: min(calc(100vw - 32px), 1024px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 1;
    justify-self: stretch;
    max-width: 100%;
  }

  .grand-opening-card {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 2;
  }

  .worlds-card { grid-column: auto; grid-row: auto; order: 3; }
  .legend-ranks-card { grid-column: auto; grid-row: auto; order: 4; }
  .love-card { grid-column: auto; grid-row: auto; order: 5; }
  .rewards-card { grid-column: auto; grid-row: auto; order: 6; }

  .landing-card,
  .landing-card.grand-opening-card,
  .landing-card.love-card,
  .landing-card.rewards-card,
  .worlds-card,
  .legend-ranks-card {
    width: 100%;
  }

  .landing-card {
    padding: 24px 22px 20px;
  }

  .landing-hero__ball {
    display: none;
  }

  .love-card__ball {
    display: none;
  }

  .rank-arrow {
    display: none;
  }

  .rank-track {
    flex-wrap: wrap;
    gap: 16px 10px;
  }

  .waitlist {
    padding: 0 clamp(24px, 7vw, 120px);
  }

  .waitlist__mascot-glow,
  .waitlist__mascot-wrap {
    display: none;
  }

  .waitlist__main {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .landing-page::before {
    display: none;
  }

  .landing-cards-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .worlds-card,
  .legend-ranks-card,
  .grand-opening-card,
  .love-card,
  .rewards-card {
    grid-column: 1;
    grid-row: auto;
  }

  .landing-hero {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    text-align: center;
    margin-bottom: 8px;
  }

  .landing-hero__logo-row {
    justify-content: center;
  }

  .landing-hero__logo {
    max-width: min(100%, 320px);
  }

  .landing-hero__ball {
    display: none;
  }

  .love-card__ball {
    display: none;
  }

  .landing-hero__copy {
    margin-top: 20px;
    margin-left: 0;
    max-width: 100%;
  }

  .landing-hero__lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .rank-track {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
  }

  .rank-arrow {
    display: flex;
    width: 12px;
    flex: 0 0 12px;
    height: auto;
    align-self: center;
  }

  .rank-arrow img {
    width: 10px;
  }

  .rank-item {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }

  .rank-item img {
    width: 100%;
    max-width: 64px;
    height: auto;
  }

  .legend-reward img {
    display: none;
  }

  .rank-item span {
    margin-top: 8px;
    font-size: 10px;
  }

  .legend-reward {
    margin-top: 30px;
    padding: 18px;
    flex-direction: column;
    gap: 12px;
  }

  .legend-reward img {
    width: 60px;
  }

  .legend-reward p {
    text-align: center;
  }

  .world-track {
    flex-wrap: wrap;
    row-gap: 22px;
  }

  .world-item {
    flex: 1 1 90px;
  }

  .waitlist {
    height: auto;
    min-height: 0;
    padding: 24px 16px;
    grid-template-columns: 1fr;
  }

  .waitlist__main {
    margin-left: 0;
  }

  .waitlist__form {
    justify-content: center;
  }

  .waitlist__cta {
    align-self: center;
  }

  .waitlist__mascot-glow,
  .waitlist__mascot-wrap,
  .waitlist__founder {
    display: none;
  }

  .landing-footer {
    padding: 18px 8px 24px;
    font-size: 12px;
  }

  .seo-content {
    padding: 0 16px;
  }

  .seo-content__inner {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .seo-content__title {
    font-size: 19px;
  }
}
