@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.main-header {
  width: 100vw;
  background: #ffe044;
  box-shadow: 0 2px 18px rgba(255, 224, 68, 0.1725490196);
  padding: 0.2em 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.main-header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.3em 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header__logo {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #16160e;
  text-transform: lowercase;
  font-family: inherit;
  transition: color 0.14s;
  user-select: none;
}
.main-header__nav {
  display: flex;
  gap: 2.3em;
}
.main-header__link {
  font-size: 1.08rem;
  font-weight: 600;
  color: #16160e;
  text-decoration: none;
  padding: 0.18em 0.7em;
  border-radius: 1.1em;
  transition: background 0.14s, color 0.14s;
}
.main-header__link:hover {
  background: #fffbe7;
  color: #000;
}
.main-header__lang {
  margin-left: 1.6em;
  font-size: 1.01rem;
  font-weight: 700;
  padding: 0.33em 1.25em;
  border-radius: 2.2em;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.16s, color 0.16s;
}
.main-header__lang:hover {
  background: #fff;
  color: #111;
}
@media (max-width: 700px) {
  .main-header__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    padding: 0.9em 2vw 0.6em 2vw;
  }
  .main-header__nav {
    gap: 1.3em;
    margin-top: 0.2em;
  }
  .main-header__logo {
    font-size: 1.4rem;
  }
  .main-header__lang {
    margin-left: 0;
    margin-top: 0.5em;
  }
}

.hero {
  position: relative;
  width: 100vw;
  height: 700px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #16160e;
}
.hero__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/hero.webp") center center/cover no-repeat;
  filter: brightness(0.72) blur(0.2px);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-size: 3.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2666666667);
  letter-spacing: -1px;
}
.hero__btn {
  background: #ffe044;
  color: #16160e;
  border-radius: 28px;
  font-size: 1.45rem;
  padding: 0.75em 2.2em;
  font-weight: 600;
  box-shadow: 0 3px 18px rgba(255, 224, 68, 0.2666666667);
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.2em;
}
.hero__btn:hover {
  background: #ffcb04;
  color: #000;
}

.goals {
  width: 100vw;
  background: #f9f4ec;
  padding: 4.2em 0 3em 0;
  text-align: center;
}
.goals__container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.goals__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #16160e;
  margin-bottom: 1.1em;
  letter-spacing: -1px;
}
.goals__desc {
  font-size: 1.15rem;
  color: #292929;
  line-height: 1.55;
  margin-bottom: 2.3em;
  max-width: 570px;
}
.goals__btn {
  background: #ffe044;
  color: #16160e;
  border-radius: 32px;
  font-size: 1.3rem;
  padding: 0.85em 2.4em;
  font-weight: 600;
  box-shadow: 0 3px 18px rgba(255, 224, 68, 0.2);
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.2em;
}
.goals__btn:hover {
  background: #ffcb04;
  color: #000;
}
@media (max-width: 900px) {
  .goals {
    padding: 2.6em 0 2em 0;
  }
  .goals__title {
    font-size: 2rem;
  }
  .goals__desc {
    font-size: 1em;
  }
}

.features {
  width: 100vw;
  background: #ffe044;
  border-top: 2px solid #16160e;
  border-bottom: 2px solid #ffe044;
  padding: 0.7em 0;
  font-size: 1.18rem;
  font-weight: 500;
}
.features__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.8vw;
}
.features__item {
  display: flex;
  align-items: center;
  gap: 0.7em;
  min-width: 220px;
}
.features__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}
.features__text {
  color: #16160e;
  font-size: 1.1em;
  line-height: 1.22;
  font-weight: 500;
}
@media (max-width: 900px) {
  .features__container {
    flex-direction: column;
    gap: 1.2em;
    align-items: stretch;
    text-align: left;
  }
  .features__item {
    min-width: 0;
    font-size: 1em;
  }
}

.personalize {
  background: #f9f4ec;
  padding: 2.8em 0;
  width: 100vw;
}
.personalize__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.6vw;
  max-width: 1350px;
  margin: 0 auto;
}
.personalize__item {
  flex: 1 1 0;
  background: #fff;
  border-radius: 1.2em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.4em;
  min-width: 340px;
  max-width: 620px;
  box-shadow: 0 4px 28px rgba(22, 22, 14, 0.0509803922);
  margin: 0 0.2em;
}
.personalize__title {
  width: 100%;
  font-size: 1.16rem;
  font-weight: 600;
  text-align: center;
  margin: 1.4em 0 0.6em 0;
  color: #232323;
}
.personalize__img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personalize__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.7em;
  object-fit: cover;
  max-height: 700px;
  min-height: 320px;
  background: #eee;
}
@media (max-width: 900px) {
  .personalize__grid {
    flex-direction: column;
    gap: 1.6em;
    max-width: 100vw;
  }
  .personalize__item {
    min-width: 0;
    max-width: 95vw;
  }
}

.work-anywhere {
  background: #b9eaff;
  position: relative;
  overflow: hidden;
  width: 100vw;
  padding: 0 0 7vw 0;
}
.work-anywhere__bg-top {
  position: absolute;
  top: -9vw;
  left: -6vw;
  right: 0;
  height: 12vw;
  background: #56b6da;
  transform: rotate(-8deg);
  z-index: 1;
}
.work-anywhere__bg-bottom {
  position: absolute;
  bottom: -5vw;
  left: 0;
  right: -5vw;
  height: 14vw;
  background: #7ea7ce;
  transform: rotate(5deg);
  z-index: 1;
}
.work-anywhere__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 7vw 2vw 4vw 2vw;
  gap: 4vw;
}
.work-anywhere__img {
  flex: 0 0 470px;
}
.work-anywhere__img img {
  width: 100%;
  height: auto;
  border-radius: 1.3em;
  object-fit: cover;
  box-shadow: 0 8px 38px rgba(0, 0, 0, 0.0666666667);
  background: #ececec;
  min-height: 360px;
  max-height: 410px;
  display: block;
}
.work-anywhere__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2vw;
}
.work-anywhere__title {
  font-size: 3rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 0.7em;
  line-height: 1.14;
  letter-spacing: -1px;
}
.work-anywhere__desc {
  color: #292929;
  font-size: 1.22rem;
  line-height: 1.6;
  margin-bottom: 2.4em;
  max-width: 600px;
}
.work-anywhere__btn {
  background: #111;
  color: #fff;
  border-radius: 32px;
  font-size: 1.18rem;
  padding: 0.8em 2.5em;
  font-weight: 600;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.0666666667);
  text-decoration: none;
  display: inline-block;
  transition: background 0.16s;
}
.work-anywhere__btn:hover {
  background: #333;
}
@media (max-width: 900px) {
  .work-anywhere__content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.2em;
    padding: 4vw 1vw 5vw 1vw;
  }
  .work-anywhere__img {
    min-width: 0;
    max-width: 98vw;
  }
  .work-anywhere__info {
    padding-left: 0;
  }
  .work-anywhere__title {
    font-size: 2rem;
  }
  .work-anywhere__desc {
    font-size: 1em;
  }
}

.cta-headline {
  width: 100vw;
  background: #f9f4ec;
  padding: 3.5em 0 2.3em 0;
  text-align: center;
}
.cta-headline__title {
  font-size: 3rem;
  font-weight: 700;
  color: #131313;
  letter-spacing: -1px;
  line-height: 1.12;
  margin: 0 auto;
  max-width: 1300px;
}
@media (max-width: 900px) {
  .cta-headline {
    padding: 2.1em 0 1.5em 0;
  }
  .cta-headline__title {
    font-size: 1.65rem;
  }
}

.main-footer {
  width: 100vw;
  background: #ffe044;
  padding-top: 2em;
  font-family: inherit;
  border-top: 2px solid #e6d100;
  box-shadow: 0 -3px 18px rgba(255, 224, 68, 0.1058823529);
}
.main-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2vw 1em 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.1em;
}
.main-footer__logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #16160e;
  letter-spacing: -1px;
  text-decoration: none;
  text-transform: lowercase;
  font-family: inherit;
  transition: color 0.13s;
}
.main-footer__logo:hover {
  color: #333;
}
.main-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6em;
  align-items: center;
}
.main-footer__nav a {
  font-size: 1.02rem;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
  padding: 0.13em 0.7em;
  border-radius: 0.8em;
  transition: background 0.12s, color 0.12s;
}
.main-footer__nav a:hover {
  background: #fffbe6;
  color: #000;
}
.main-footer__bottom {
  text-align: center;
  font-size: 1rem;
  color: #16160e;
  opacity: 0.7;
  padding: 1.2em 0 0.4em 0;
  border-top: 1.5px solid #f3e065;
  background: none;
}
@media (max-width: 700px) {
  .main-footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2em;
    padding: 0 4vw 1em 4vw;
  }
  .main-footer__nav {
    gap: 1em;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .main-footer__logo {
    font-size: 1.2rem;
  }
  .main-footer__bottom {
    font-size: 0.95rem;
  }
}

.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: #fff;
  color: #fff;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

.about {
  background: #f9f4ec;
  width: 100vw;
  padding: 3.7em 0 4.1em 0;
}
.about__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about__title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #131313;
  margin-bottom: 1.1em;
  letter-spacing: -1px;
}
.about__desc {
  font-size: 1.25rem;
  color: #232323;
  margin-bottom: 2.6em;
  line-height: 1.57;
  font-weight: 500;
  max-width: 690px;
}
.about__block {
  margin-bottom: 2.1em;
}
.about__subtitle {
  font-size: 1.42rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5em;
}
.about__text {
  color: #3c3c3c;
  font-size: 1.07rem;
  margin-bottom: 0.7em;
  line-height: 1.59;
  font-weight: 400;
  max-width: 650px;
}
.about__facts {
  display: flex;
  gap: 1.5em;
  margin-top: 1.7em;
  flex-wrap: wrap;
}
.about__fact {
  background: #ffe044;
  color: #16160e;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 1.2em;
  padding: 0.7em 1.8em;
  box-shadow: 0 3px 18px rgba(255, 224, 68, 0.1607843137);
  margin-bottom: 0.6em;
}
@media (max-width: 700px) {
  .about {
    padding: 2.2em 0 2.6em 0;
  }
  .about__container {
    padding: 0 0.3em;
  }
  .about__title {
    font-size: 1.38rem;
  }
  .about__desc {
    font-size: 1.01rem;
  }
  .about__subtitle {
    font-size: 1.11rem;
  }
  .about__facts {
    gap: 0.6em;
  }
  .about__fact {
    font-size: 0.96rem;
    padding: 0.5em 1.1em;
  }
}

.whyus {
  background: #f9f4ec;
  width: 100vw;
  padding: 3.8em 0 4.2em 0;
}
.whyus__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.whyus__title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #16160e;
  margin-bottom: 0.82em;
  letter-spacing: -1px;
}
.whyus__desc {
  font-size: 1.17rem;
  color: #2c2c2c;
  margin-bottom: 2.6em;
  max-width: 650px;
  font-weight: 500;
  line-height: 1.56;
}
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.1em 2.3em;
  width: 100%;
}
.whyus__item {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 2px 18px rgba(255, 224, 68, 0.1333333333);
  padding: 2.1em 1.6em 1.5em 1.6em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
}
.whyus__icon {
  font-size: 2.15em;
  margin-bottom: 0.43em;
  color: #ffe044;
  filter: drop-shadow(0 1px 6px rgba(255, 224, 68, 0.337254902));
}
.whyus__item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 0.51em;
}
.whyus__item-text {
  font-size: 1.01rem;
  color: #444;
  line-height: 1.57;
  font-weight: 400;
}
@media (max-width: 700px) {
  .whyus {
    padding: 2.3em 0 2.3em 0;
  }
  .whyus__container {
    padding: 0 0.3em;
  }
  .whyus__title {
    font-size: 1.2rem;
  }
  .whyus__desc {
    font-size: 0.99rem;
  }
  .whyus__item-title {
    font-size: 0.99rem;
  }
  .whyus__grid {
    gap: 1.2em 0.6em;
  }
  .whyus__item {
    padding: 1.3em 1em 1em 1em;
  }
}

.privacy {
  background: #fff;
  width: 100vw;
  padding: 3.3em 0 3.8em 0;
}
.privacy__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.privacy__container__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #131313;
  margin: 2.1em 0 0.5em 0;
  letter-spacing: -1px;
}
.privacy__container__title:first-child {
  margin-top: 0;
}
.privacy__container__text {
  font-size: 1.09rem;
  color: #232323;
  margin-bottom: 1.1em;
  line-height: 1.58;
  font-weight: 400;
  max-width: 750px;
}
@media (max-width: 700px) {
  .privacy {
    padding: 1.6em 0 1.8em 0;
  }
  .privacy__container {
    padding: 0 0.3em;
  }
  .privacy__container__title {
    font-size: 1.02rem;
    margin: 1.1em 0 0.4em 0;
  }
  .privacy__container__text {
    font-size: 0.97rem;
  }
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffe044;
  color: #16160e;
  box-shadow: 0 -4px 28px rgba(255, 224, 68, 0.2392156863);
  width: 100vw;
  padding: 1.6em 2vw 1.2em 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.3em;
  font-size: 1.07rem;
  animation: fadeInUp 0.6s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-banner__text {
  flex: 1 1 0;
  line-height: 1.54;
}
.cookie-banner__text a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.13s;
}
.cookie-banner__text a:hover {
  color: #222;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.8em;
}
.cookie-banner__btn {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.6em 1.5em;
  border-radius: 2em;
  border: none;
  cursor: pointer;
  background: #fffbe8;
  color: #16160e;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner__btn--accept {
  background: #111;
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  background: #ffe044;
  color: #111;
}
.cookie-banner__btn--decline {
  background: #ffe044;
  color: #16160e;
  border: 1.5px solid rgba(17, 17, 17, 0.0666666667);
}
.cookie-banner__btn--decline:hover {
  background: #fff;
  color: #16160e;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1.3em;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  background: #f9f4ec;
  width: 100vw;
  height: 70vh;
  padding: 3.5em 0 3.8em 0;
}
.contact__container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  gap: 5vw;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 2vw;
}
.contact__info {
  flex: 1 1 330px;
  min-width: 260px;
  max-width: 410px;
  margin-bottom: 2.2em;
}
.contact__title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #131313;
  margin-bottom: 0.4em;
  letter-spacing: -1px;
}
.contact__desc {
  font-size: 1.13rem;
  color: #232323;
  margin-bottom: 1.6em;
  line-height: 1.5;
  font-weight: 500;
}
.contact__details {
  margin-bottom: 1.7em;
  display: flex;
  flex-direction: column;
  gap: 0.85em;
  font-size: 1.03rem;
  color: #393939;
}
.contact__detail strong {
  color: #16160e;
  font-weight: 700;
}
.contact__form {
  flex: 1 1 320px;
  min-width: 260px;
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 3px 22px rgba(255, 224, 68, 0.1607843137);
  padding: 2.1em 2.1em 1.4em 2.1em;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  align-items: stretch;
  position: relative;
}
.contact__form-row {
  margin-bottom: 0.8em;
}
.contact__form-row input, .contact__form-row textarea {
  width: 100%;
  padding: 1em 1.2em;
  border: 1.5px solid #ffe044;
  border-radius: 1em;
  background: #f9f4ec;
  font-size: 1.07rem;
  color: #131313;
  resize: none;
  transition: border 0.13s;
  box-sizing: border-box;
}
.contact__form-row input:focus, .contact__form-row textarea:focus {
  border-color: #ffe044;
  background: #fff;
  outline: none;
}
.contact__form-row textarea {
  min-height: 100px;
}
.contact__btn {
  background: #ffe044;
  color: #16160e;
  border-radius: 2em;
  font-size: 1.15rem;
  padding: 0.9em 0;
  font-weight: 700;
  width: 100%;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 224, 68, 0.0705882353);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  margin-bottom: 0.6em;
}
.contact__btn:hover {
  background: #111;
  color: #fff;
}
.contact__success {
  display: none;
  background: #fff;
  border: 2px solid #ffe044;
  border-radius: 1em;
  color: #111;
  font-weight: 600;
  font-size: 1.03rem;
  text-align: center;
  padding: 1.4em 0.9em;
  margin-top: 0.8em;
  animation: fadeIn 0.7s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .contact__container {
    flex-direction: column;
    gap: 2.3em;
  }
  .contact__info, .contact__form {
    max-width: 97vw;
  }
  .contact__title {
    font-size: 1.3rem;
  }
  .contact__desc {
    font-size: 1.01rem;
  }
}

.pricing {
  width: 100vw;
  background: #f9f4ec;
  padding: 3em 0;
}
.pricing__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 2em;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pricing__card {
  background: #fff;
  border-radius: 1.8em;
  box-shadow: 0 3px 32px rgba(165, 165, 165, 0.0705882353);
  padding: 2.2em 2.3em 2.7em 2.3em;
  width: 100%;
  max-width: 380px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0.1em;
  min-width: 260px;
}
.pricing__card--featured {
  background: #ffe044;
  box-shadow: 0 6px 38px rgba(255, 224, 68, 0.2196078431);
  border: 2.5px solid rgba(22, 22, 14, 0.0392156863);
  position: relative;
  z-index: 2;
  transform: scale(1.03);
}
.pricing__title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.35em;
  letter-spacing: -0.5px;
  color: #111;
}
.pricing__subtitle {
  font-size: 1.09rem;
  margin-bottom: 1.8em;
  color: #232323;
  min-height: 2.6em;
}
.pricing__btn {
  background: #111;
  color: #fff;
  border-radius: 2.2em;
  font-size: 1.18rem;
  padding: 0.8em 0;
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-bottom: 2em;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.0666666667);
  text-decoration: none;
  transition: background 0.17s;
}
.pricing__btn:hover {
  background: #232323;
}
.pricing__btn--yellow {
  background: #ffe044;
  color: #111;
}
.pricing__btn--yellow:hover {
  background: #ffd700;
}
.pricing__prices {
  margin-bottom: 1.6em;
  display: flex;
  align-items: flex-end;
  gap: 1em;
  flex-wrap: wrap;
}
.pricing__old {
  text-decoration: line-through;
  color: #888;
  font-size: 1.09rem;
  font-weight: 500;
  opacity: 0.68;
  margin-right: 1.2em;
}
.pricing__new {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
}
.pricing__new span {
  font-size: 1.2rem;
  color: #444;
  margin-left: 0.3em;
}
.pricing__list {
  margin: 0;
  padding: 0 0 0 1.3em;
  font-size: 1.03rem;
  color: #232323;
  line-height: 1.58;
}
.pricing__list li {
  margin-bottom: 0.62em;
}
@media (max-width: 900px) {
  .pricing__container {
    flex-direction: column;
    gap: 2em;
  }
  .pricing__card {
    max-width: 96vw;
  }
}

.faq {
  width: 100vw;
  background: #f9f4ec;
  padding: 3.2em 0 3.7em 0;
  font-family: inherit;
}
.faq__container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2vw;
}
.faq__title {
  font-size: 2.15rem;
  font-weight: 700;
  color: #131313;
  text-align: center;
  margin-bottom: 2.1em;
  letter-spacing: -1px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}
.faq__item {
  background: #fff;
  border-radius: 1.6em;
  box-shadow: 0 2px 18px rgba(187, 187, 187, 0.0666666667);
  padding: 0.5em 2.1em;
  transition: box-shadow 0.14s;
  position: relative;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: #16160e;
  font-size: 1.14rem;
  font-weight: 600;
  padding: 1.15em 0 0.8em 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.14s;
  outline: none;
  position: relative;
}
.faq__question:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.1em;
  font-size: 1.4em;
  transition: transform 0.2s;
}
.faq__question.active:after {
  content: "-";
}
.faq__question:hover {
  color: #ffe044;
}
.faq__answer {
  font-size: 1.04rem;
  color: #292929;
  line-height: 1.62;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.27s cubic-bezier(0.77, 0, 0.18, 1), padding 0.2s;
  padding: 0 0;
  opacity: 0.98;
  pointer-events: none;
  margin-bottom: 0;
}
.faq__answer.show {
  max-height: 300px;
  padding: 0.2em 0 1.2em 0;
  pointer-events: auto;
  margin-bottom: 0.4em;
}
@media (max-width: 600px) {
  .faq {
    padding: 2.1em 0;
  }
  .faq__container {
    padding: 0 0.2em;
  }
  .faq__item {
    padding: 0.5em 0.7em;
  }
  .faq__title {
    font-size: 1.25rem;
  }
  .faq__question {
    font-size: 1em;
  }
  .faq__answer {
    font-size: 0.97em;
  }
}

.motivation {
  width: 100vw;
  background: #ffe044;
  padding: 4.2em 0 4.2em 0;
  text-align: center;
}
.motivation__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.motivation__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.7em;
  letter-spacing: -1px;
}
.motivation__subtitle {
  color: #393939;
  font-size: 1.2rem;
  margin-bottom: 2.3em;
  font-weight: 400;
  opacity: 0.88;
}
.motivation__imgbox {
  position: relative;
  width: 60vw;
  max-width: 820px;
  min-width: 340px;
  background: #f9f4ec;
  border-radius: 0;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5vw 0;
}
.motivation__imgbox img {
  width: 100%;
  max-width: 680px;
  min-height: 170px;
  object-fit: contain;
  background: #f9f4ec;
}
.motivation__caption {
  background: #222;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.19em 0.95em;
  border-radius: 0.19em;
  display: inline-block;
  margin-top: 1.1em;
  margin-bottom: 0;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .motivation__title {
    font-size: 1.7rem;
  }
  .motivation__imgbox {
    width: 96vw;
    min-width: 0;
    padding: 4vw 0;
  }
  .motivation__imgbox img {
    max-width: 98vw;
  }
  .motivation__caption {
    font-size: 1.01rem;
  }
}

@font-face {
  font-family: "Sora";
  src: url("/Sora-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Sora";
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  color: #333333;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.games-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.deepshadow {
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 22px 30px rgba(0, 0, 0, 0.9);
}

.subtitile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subtitile__img {
  width: 100px;
}

/*# sourceMappingURL=main.css.map */
