@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; /* Убирает обводку */
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 10;
}
.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header__logo {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #660f34;
}
.site-header__nav {
  display: flex;
  gap: 32px;
}
.site-header__nav a {
  text-decoration: none;
  color: #660f34;
  font-weight: 500;
  transition: 0.2s ease;
}
.site-header__nav a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__lang {
  display: flex;
  gap: 8px;
}
.site-header__lang .lang-btn {
  background: transparent;
  border: 1px solid #660f34;
  color: #660f34;
  padding: 4px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.site-header__lang .lang-btn:hover {
  background: #660f34;
  color: #fff;
}
@media (max-width: 768px) {
  .site-header__lang {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 24px;
  height: 2px;
  background: #660f34;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #ccc;
}
.mobile-menu a {
  color: #660f34;
  font-size: 18px;
  margin-bottom: 12px;
  text-decoration: none;
}
.mobile-menu .mobile-menu__lang {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.mobile-menu .mobile-menu__lang .lang-btn {
  border: 1px solid #660f34;
  background: transparent;
  color: #660f34;
  padding: 4px 10px;
  cursor: pointer;
}
.mobile-menu .mobile-menu__lang .lang-btn:hover {
  background: #660f34;
  color: #fff;
}
.mobile-menu.active {
  display: flex;
}

.hero {
  position: relative;
  display: flex;
  height: 800px;
  background-color: #fff6f2;
  overflow: hidden;
  font-family: "Georgia", serif;
}

.hero__image {
  flex: 1;
  height: 100%;
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.86);
  padding: 50px 60px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.hero__heading {
  font-size: 36px;
  line-height: 1.4;
  color: #531828;
  margin-bottom: 25px;
}

.hero__heading span {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
}

.hero__text {
  font-size: 17px;
  line-height: 1.7;
  color: #3b3b3b;
  margin-bottom: 30px;
}

.hero__btn {
  display: inline-block;
  background-color: #d8a08e;
  color: #2a1a1a;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero__btn:hover {
  background-color: #c28876;
}

/* Адапtywność */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero__image {
    width: 100%;
  }
  .hero__content {
    position: static;
    transform: none;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: none;
    text-align: center;
  }
  .hero__heading {
    font-size: 28px;
  }
  .hero__heading span {
    font-size: 26px;
  }
  .hero__text {
    font-size: 16px;
  }
  .hero__btn {
    padding: 10px 22px;
  }
}
.section-info {
  background: #fdf7f5;
  padding: 80px 20px;
  text-align: center;
  font-family: "Georgia", serif;
}

.section-info__inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-info__line {
  height: 1px;
  background: #3f0f1c;
  opacity: 0.2;
  margin: 20px auto;
}

.section-info__title {
  font-size: 28px;
  color: #531828;
  margin: 20px 0;
}

.section-info__title em {
  font-style: italic;
  color: #7b1e36;
}

.section-info__text {
  font-size: 18px;
  line-height: 1.6;
  color: #3b3b3b;
  margin-top: 40px;
}

.section-info__text strong {
  color: #7b1e36;
  font-weight: 600;
}

.section-info__subtext {
  font-size: 17px;
  margin-top: 20px;
  color: #4c1c2b;
}

.section-info__subtext strong {
  color: #7b1e36;
  font-weight: 600;
}

/* Адаптив */
@media (max-width: 768px) {
  .section-info__title {
    font-size: 22px;
  }
  .section-info__text,
  .section-info__subtext {
    font-size: 16px;
  }
}
.section-divider {
  background: #fdf7f5;
  padding: 60px 20px;
  text-align: center;
  font-family: "Georgia", serif;
}

.section-divider__title {
  font-size: 26px;
  color: #531828;
  margin: 25px 0;
}

.section-divider__line {
  height: 1px;
  background-color: #531828;
  opacity: 0.4;
  max-width: 700px;
  margin: 0 auto;
}

.mentoring {
  background: #fefcfa;
  padding: 80px 20px;
  font-family: "Georgia", serif;
}

.mentoring__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.mentoring__image {
  flex: 1 1 400px;
  max-width: 450px;
}

.mentoring__image img {
  width: 100%;
  display: block;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.mentoring__content {
  flex: 1 1 500px;
  max-width: 650px;
}

.mentoring__title {
  font-size: 28px;
  color: #54192a;
  margin-bottom: 20px;
}

.mentoring__title em {
  font-style: italic;
  color: #7d2a40;
}

.mentoring__desc {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.mentoring__desc strong {
  color: #7d2a40;
}

.mentoring__list {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #3b3b3b;
}

.mentoring__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.mentoring__bonus {
  font-size: 16px;
  color: #4a1f2f;
  margin-bottom: 30px;
}

.mentoring__bonus strong {
  color: #8b2d44;
}

.mentoring__btn {
  display: inline-block;
  background: #681936;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.mentoring__btn:hover {
  background: #4f1028;
}

/* Адаптив */
@media (max-width: 768px) {
  .mentoring__container {
    flex-direction: column;
    align-items: center;
  }
  .mentoring__content {
    text-align: center;
  }
  .mentoring__list {
    text-align: left;
  }
}
.coaching {
  background: #fffaf8;
  padding: 80px 20px;
  font-family: "Georgia", serif;
}

.coaching__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap-reverse;
}

.coaching__content {
  flex: 1 1 500px;
  max-width: 650px;
}

.coaching__title {
  font-size: 26px;
  color: #551c2d;
  margin-bottom: 15px;
  border-top: 1px solid #a34a5d;
  border-bottom: 1px solid #a34a5d;
  padding: 20px 0;
}

.coaching__title em {
  font-style: italic;
}

.coaching__subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #531828;
  margin-bottom: 15px;
}

.coaching__desc {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.coaching__desc strong {
  color: #8b2d44;
}

.coaching__list {
  list-style: disc;
  padding-left: 20px;
  color: #3b3b3b;
  margin-bottom: 25px;
}

.coaching__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.coaching__note {
  font-size: 16px;
  color: #4b1d2c;
  margin-bottom: 30px;
}

.coaching__btn {
  display: inline-block;
  background: #681936;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.coaching__btn:hover {
  background: #4f1028;
}

.coaching__image {
  flex: 1 1 400px;
  max-width: 450px;
}

.coaching__image img {
  width: 100%;
  display: block;
  border: 1px solid #e6e6e6;
}

.success-definition {
  background: #fcf8f6;
  padding: 80px 20px;
  text-align: center;
  font-family: "Georgia", serif;
}

.success-definition__inner {
  max-width: 900px;
  margin: 0 auto;
}

.success-definition__line {
  height: 1px;
  background: #561f2e;
  opacity: 0.3;
  max-width: 600px;
  margin: 20px auto;
}

.success-definition__title {
  font-size: 28px;
  color: #511828;
  margin: 20px 0;
}

.success-definition__title em {
  font-style: italic;
}

.success-definition__text {
  font-size: 17px;
  line-height: 1.7;
  color: #3b3b3b;
  margin-top: 25px;
}

.success-definition__text strong {
  color: #7d1f36;
  font-weight: 600;
}

.footer {
  background: #111;
  color: #e2e2e2;
  padding: 40px 20px 20px;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #fff;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}
.footer__nav a {
  font-size: 15px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__nav a:hover {
  color: #fff;
}
.footer__bottom {
  font-size: 13px;
  color: #888;
}
@media (max-width: 600px) {
  .footer__nav {
    flex-direction: column;
    gap: 10px;
  }
  .footer__logo {
    font-size: 22px;
  }
}

.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 {
  padding: 80px 20px;
  font-family: "Georgia", serif;
  color: #2a1a1a;
}
.about h1, .about h2 {
  font-size: 28px;
  color: #511828;
  margin-bottom: 20px;
}
.about p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.about ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 40px;
}
.about ul li {
  margin-bottom: 10px;
  font-size: 16px;
}
.about .container {
  max-width: 900px;
  margin: 0 auto;
}
.about__intro, .about__values, .about__story, .about__offer, .about__vision {
  margin-bottom: 60px;
}

.about {
  padding: 80px 20px;
  color: #1e1e1e;
  font-family: "Georgia", serif;
}
.about h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about h2 {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 500;
}
.about h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}
.about p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.about blockquote {
  font-size: 20px;
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: 60px auto 0;
  line-height: 1.5;
}
.about .container {
  max-width: 1000px;
  margin: 0 auto;
}
.about__pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 30px;
}
.about .pillar {
  background: #fafafa;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #511828;
}

.why__intro {
  background: linear-gradient(135deg, #fdfdfd, #f5f5f5);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why__intro h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}
.why__intro p {
  font-size: 20px;
  color: #555;
  max-width: 740px;
  margin: 0 auto;
}
.why__intro::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}
.why__reasons {
  background: #fff;
  padding: 80px 20px 100px;
  position: relative;
}
.why__reasons::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 100px;
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 50%;
}
.why__container {
  max-width: 1240px;
  margin: 0 auto;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.why__card {
  background: #fafafa;
  border: 1px solid #e3e3e3;
  padding: 32px 28px;
  text-align: left;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.why__card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ddd, #f2f2f2);
  border-radius: 50%;
}
.why__card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 14px;
}
.why__card p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .why__intro h1 {
    font-size: 32px;
  }
  .why__card {
    padding: 24px 20px;
  }
  .why__grid {
    gap: 24px;
  }
}

.privacy {
  padding: 60px 20px;
  background: #fafafa;
  color: #222;
  font-family: sans-serif;
}

.privacy__container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy__container__title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  color: #5e004e;
}

.privacy__container__text {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 15px;
}

.contact {
  padding: 80px 20px;
  font-family: "Georgia", serif;
  color: #1e1e1e;
}
.contact .container {
  max-width: 800px;
  margin: 0 auto;
}
.contact h1, .contact h2 {
  font-weight: 600;
  margin-bottom: 20px;
}
.contact p {
  font-size: 17px;
  line-height: 1.6;
}
.contact__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin: 40px 0;
}
.contact__info-box {
  background: #fafafa;
  padding: 20px;
  border-left: 4px solid #511828;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact form label {
  display: flex;
  flex-direction: column;
  font-size: 15px;
}
.contact form label input, .contact form label textarea {
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 15px;
  resize: vertical;
}
.contact form label textarea {
  min-height: 120px;
}
.contact form button {
  align-self: start;
  padding: 12px 24px;
  background: #511828;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.contact form button:hover {
  background: #731d39;
}
.contact .popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}
.contact .popup.active {
  display: flex;
}
.contact .popup__content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}
.contact .popup__content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #511828;
  color: white;
  border: none;
  cursor: pointer;
}

.about-natalia {
  background: #fffaf7;
  padding: 80px 20px;
  font-family: "Georgia", serif;
}

.about-natalia__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.about-natalia__image {
  flex: 1 1 400px;
  max-width: 450px;
}

.about-natalia__image img {
  width: 100%;
  display: block;
  border: 1px solid #e6e6e6;
}

.about-natalia__content {
  flex: 1 1 500px;
  max-width: 650px;
}

.about-natalia__title {
  font-size: 28px;
  color: #531828;
  margin-bottom: 20px;
}

.about-natalia__title em {
  font-style: italic;
}

.about-natalia__text {
  font-size: 17px;
  line-height: 1.7;
  color: #3b3b3b;
  margin-bottom: 15px;
}

.about-natalia__text strong {
  color: #7b1e36;
}

.about-natalia__btn {
  display: inline-block;
  margin-top: 20px;
  background: #6a1b35;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.about-natalia__btn:hover {
  background: #501026;
}

/* Адаптив */
@media (max-width: 768px) {
  .about-natalia__container {
    flex-direction: column;
    text-align: center;
  }
  .about-natalia__text {
    text-align: left;
  }
}
.faq {
  background: #fefaf8;
  padding: 80px 20px;
}
.faq__container {
  max-width: 1000px;
  margin: 0 auto;
}
.faq__title {
  text-align: center;
  font-size: 32px;
  color: #531828;
  margin-bottom: 40px;
}
.faq__title em {
  font-style: italic;
}
.faq__item {
  border-top: 1px solid #d9b6a8;
}
.faq__item:last-child {
  border-bottom: 1px solid #d9b6a8;
}
.faq__question {
  width: 100%;
  padding: 18px 15px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #531828;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.faq__question::before {
  content: "▸";
  margin-right: 8px;
  transition: transform 0.3s ease;
}
.faq__question.active::before {
  transform: rotate(90deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  font-size: 16px;
  color: #531828;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq__answer.open {
  max-height: 300px;
  padding: 10px 15px 20px;
}

.testimonial {
  background: #660f34;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.testimonial__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.testimonial__image {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
}
.testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial__title {
  font-size: 26px;
  margin-bottom: 30px;
  color: #fff;
}
.testimonial__title em {
  font-style: italic;
}
.testimonial__quote {
  position: relative;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  margin: 0 auto 20px;
  background: transparent;
  padding: 0 20px;
  border-left: 6px solid #e5a99f;
}
.testimonial__quote strong {
  font-weight: 700;
  color: #fff;
}
.testimonial__author {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@font-face {
  font-family: "Jost";
  src: url("/Jost-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Jost";
  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 */
