@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-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 20px;
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header__logo-link {
  font-size: 28px;
  font-weight: 700;
  color: #2c2c2c;
  text-decoration: none;
}
.site-header__nav {
  display: flex;
}
@media (max-width: 992px) {
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid #eee;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    pointer-events: none;
    opacity: 0;
  }
  .site-header__nav.active {
    transform: translateY(0);
    pointer-events: all;
    opacity: 1;
  }
}
.site-header__nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .site-header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.site-header__nav-list a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__nav-list a:hover {
  color: #a67c52;
}
.site-header__lang-switch {
  display: flex;
  gap: 8px;
}
.site-header__lang-switch button {
  background: none;
  border: none;
  font-size: 14px;
  color: #777;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.site-header__lang-switch button:hover {
  background-color: #f2ede7;
}
@media (max-width: 768px) {
  .site-header__lang-switch {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.burger__line {
  height: 2px;
  background-color: #333;
  width: 100%;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}
.burger.active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 992px) {
  .burger {
    display: flex;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - WOW Effect */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero__text-block {
  flex: 1;
  max-width: 600px;
  animation: fadeInUp 1s ease;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.hero__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 90%;
}

.hero__cta {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.hero__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.hero__cta:hover::before {
  left: 100%;
}

.hero__features {
  display: flex;
  gap: 30px;
  margin-top: 3rem;
}

.hero__feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.hero__feature strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 5px;
  color: var(--accent);
}

.hero__feature span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero__visual-panel {
  flex: 1;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-decor {
  position: relative;
  width: 100%;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

.hero__image {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 5px solid var(--light);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
  width: 600px;
}
@media (max-width: 740px) {
  .hero__image {
    display: none;
  }
}

.hero__fact-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--light);
  color: var(--dark);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  max-width: 200px;
  animation: pulse 2s infinite;
}

.hero__fact-box p {
  margin: 5px 0;
}

.hero__fact-box p:first-child {
  color: var(--primary);
  font-weight: 700;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--light);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.1;
}

.about__heading {
  text-align: center;
  margin-bottom: 60px;
}

.about__title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.about__intro {
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.about__content {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.about__text {
  flex: 2;
}

.about__text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about__facts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__fact {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.about__fact:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about__fact strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.about__fact span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about__item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--secondary);
}

.about__item-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.about__item-text {
  color: var(--dark);
  opacity: 0.8;
}

/* Advantages Section */
.advantages {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
  position: relative;
}

.advantages__header {
  text-align: center;
  margin-bottom: 60px;
}

.advantages__title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.advantages__subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.advantages__item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 20px;
}

.advantages__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantages__number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 1;
}

.advantages__content {
  position: relative;
  z-index: 2;
}

.advantages__item-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.advantages__item-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.advantages__item-text {
  color: var(--dark);
  opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__features {
    justify-content: center;
  }
  .hero__visual-decor {
    margin-top: 50px;
  }
  .about__content {
    flex-direction: column;
  }
  .about__facts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about__fact {
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__features {
    flex-direction: column;
    gap: 15px;
  }
  .hero__feature {
    width: 100%;
  }
  .about__title,
  .advantages__title {
    font-size: 2rem;
  }
  .about__intro,
  .advantages__subtitle {
    font-size: 1rem;
  }
  .about__grid,
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__cta {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .hero__fact-box {
    right: 0;
    bottom: -50px;
    max-width: 150px;
    padding: 15px;
  }
  .about__title,
  .advantages__title {
    font-size: 1.8rem;
  }
}
/* Why Us Section */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLDAsMCwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==");
  opacity: 0.5;
}

.why-us__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.why-us__title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.why-us__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.why-us__subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.why-us__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.why-us__item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-us__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-us__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.why-us__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-us__icon img {
  width: 40px;
  height: 40px;
}

.why-us__item-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.why-us__item-text {
  color: var(--dark);
  opacity: 0.8;
  font-size: 1.05rem;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--light);
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  opacity: 0.1;
}

.faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq__title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.faq__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.faq__subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.faq__item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq__question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--primary);
}

.faq__question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq__question[aria-expanded=true]::after {
  content: "-";
  color: var(--secondary);
}

.faq__answer {
  padding: 0 25px;
  background: white;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  opacity: 0.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__answer[aria-hidden=false] {
  padding: 0 25px 25px;
  max-height: 500px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-us__title, .faq__title {
    font-size: 2rem;
  }
  .why-us__subtitle, .faq__subtitle {
    font-size: 1rem;
  }
  .why-us__columns {
    grid-template-columns: 1fr;
  }
  .why-us__item {
    padding: 30px 20px;
  }
  .faq__question {
    padding: 15px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .why-us, .faq {
    padding: 70px 0;
  }
  .why-us__title, .faq__title {
    font-size: 1.8rem;
  }
  .why-us__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .why-us__icon img {
    width: 30px;
    height: 30px;
  }
}
.footer {
  background: #f5f5f5;
  padding: 4rem 0 2rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer__branding .footer__logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.footer__branding .footer__slogan {
  font-size: 1.1rem;
  color: #555;
}
.footer__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
}
.footer__section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin-top: 0.5rem;
}
.footer__contact-list, .footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-list li, .footer__nav-list li {
  margin-bottom: 0.6rem;
}
.footer__contact-list li a, .footer__nav-list li a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-list li a:hover, .footer__nav-list li a:hover {
  color: var(--secondary);
}
.footer__contact-list span, .footer__nav-list span {
  font-weight: 600;
  color: #444;
}
.footer__bottom {
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #777;
}

.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 Page Section */
.aboutpage {
  padding: 120px 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.aboutpage__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.aboutpage__header {
  text-align: center;
  margin-bottom: 80px;
}

.aboutpage__header h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

.aboutpage__header h1:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.aboutpage__header p {
  font-size: 22px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.aboutpage__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.aboutpage__textblock {
  position: relative;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aboutpage__textblock:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.aboutpage__textblock h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.aboutpage__textblock h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
}

.aboutpage__textblock p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.aboutpage__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.aboutpage__facts .fact__item {
  background: white;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.aboutpage__facts .fact__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.aboutpage__facts .fact__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.aboutpage__facts .fact__item:hover:before {
  transform: scaleX(1);
}

.aboutpage__facts .fact__number {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.aboutpage__facts .fact__label {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.aboutpage__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.aboutpage__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

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

.aboutpage__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 95, 115, 0.1) 0%, rgba(0, 95, 115, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.aboutpage__image:hover:after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .aboutpage {
    padding: 100px 0;
  }
  .aboutpage__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .aboutpage__textblock {
    padding: 35px;
  }
  .aboutpage__header h1 {
    font-size: 48px;
  }
  .aboutpage__header p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .aboutpage__facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .aboutpage__header h1 {
    font-size: 42px;
  }
  .aboutpage__header p {
    font-size: 18px;
  }
  .aboutpage__textblock h2 {
    font-size: 24px;
  }
  .aboutpage__facts .fact__item {
    padding: 40px 25px;
  }
  .aboutpage__facts .fact__number {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .aboutpage {
    padding: 80px 0;
  }
  .aboutpage__container {
    padding: 0 25px;
  }
  .aboutpage__header h1 {
    font-size: 36px;
  }
  .aboutpage__textblock {
    padding: 30px 25px;
  }
}
.services-intro {
  padding: 100px 20px;
  background: var(--light);
  text-align: center;
}
.services-intro__container {
  max-width: 900px;
  margin: 0 auto;
}
.services-intro__title {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.services-intro__text {
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.services-list {
  padding: 80px 20px;
  background: white;
}
.services-list__container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.services-list__item {
  background: var(--light);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}
.services-list__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}
.services-list__title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
}
.services-list__text {
  color: var(--dark);
  opacity: 0.85;
  font-size: 1.05rem;
}

.services-plans {
  padding: 100px 20px;
  background: var(--light);
}
.services-plans__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.services-plans__heading {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--dark);
}
.services-plans__table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.services-plans__row {
  display: table-row;
  background: white;
}
.services-plans__row:nth-child(odd) {
  background: #f7f7f7;
}
.services-plans__cell {
  display: table-cell;
  padding: 16px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  color: var(--dark);
  text-align: center;
}
@media (max-width: 768px) {
  .services-plans__table {
    display: block;
  }
  .services-plans__row {
    display: flex;
    flex-wrap: wrap;
  }
  .services-plans__cell {
    flex: 1 1 50%;
    box-sizing: border-box;
  }
}

.services-request {
  padding: 100px 20px;
  background: white;
}
.services-request__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.services-request__title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--dark);
}
.services-request__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-request__form input, .services-request__form textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}
.services-request__form button {
  padding: 14px 24px;
  background: var(--primary);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.services-request__form button:hover {
  background: var(--secondary);
}

.privacy__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 130px;
  margin-bottom: 80px;
  color: #000;
  gap: 20px;
}
@media (max-width: 740px) {
  .privacy__container {
    margin-top: 201px;
  }
}
.privacy__container__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90%;
}
.privacy__container__text {
  font-size: 22px;
  width: 80%;
}
.privacy__container__title {
  width: 80%;
  font-size: 24px;
}

.contact {
  padding: 100px 20px;
  background: var(--light);
}
.contact__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact__title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.contact__subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 40px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form input, .contact__form textarea {
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}
.contact__form button {
  padding: 14px;
  background: #000;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact__form button:hover {
  background: #8f8f8f;
}
.contact__popup {
  margin-top: 30px;
  background: #d4edda;
  color: #155724;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.contact__popup.visible {
  opacity: 1;
  transform: translateY(0);
}

@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 */
