@charset "UTF-8";
a {
  color: #159af8; /* Синий цвет */
  text-decoration: none; /* Убирает стандартное подчёркивание */
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0A0A0A;
  color: #EFEFEF;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.header {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
  background-color: rgba(10, 10, 10, 0.5);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #EFEFEF;
  text-decoration: none;
  letter-spacing: -1.5px;
}

.logo__img {
  height: 70px;
  width: auto;
}

.logo__text-part--blue {
  color: #159af8;
}

.logo__text-part--white {
  color: #EFEFEF;
}

.nav {
  display: flex;
  align-items: center;
}
.nav__link {
  color: #888888;
  text-decoration: none;
  margin-left: 2.5rem;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.nav__link:hover {
  color: #EFEFEF;
}
.nav__link--cta {
  background-color: #159af8;
  color: #0A0A0A;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.nav__link--cta:hover {
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .nav {
    display: none;
  }
}

.hero {
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 10rem;
}
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding-top: 5rem;
  }
}
.hero__title {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__subtitle {
  font-size: 1.5rem;
  color: #888888;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}

.hero__banner-logo {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero__banner-logo {
    max-width: 250px;
  }
}

.button {
  text-decoration: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background-color 0.3s ease;
  display: inline-block;
}
@media (max-width: 768px) {
  .button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}
.button--primary {
  background-color: #159af8;
  color: #0A0A0A;
}
.button--primary:hover {
  background-color: rgb(6.3319502075, 126.6390041494, 211.6680497925);
  transform: translateY(-3px);
}
.button--secondary {
  background-color: transparent;
  color: #EFEFEF;
  border: 2px solid #159af8;
}
.button--secondary:hover {
  background-color: rgba(21, 154, 248, 0.1);
  transform: translateY(-3px);
}

section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

.app-section .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 992px) {
  .app-section .container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 2rem;
  }
}
.app-section .app__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.app-section .app__info .button--secondary {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 992px) {
  .app-section .app__info .button--secondary {
    align-self: center;
  }
}
.app-section .app__image-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .app-section .app__image-container {
    justify-content: center;
    margin-top: 2rem;
  }
}
.app-section .app__image {
  width: auto;
  max-width: 350px;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}
@media (max-width: 992px) {
  .app-section .app__image {
    max-width: 300px;
  }
}

.app__title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .app__title {
    font-size: 1.8rem;
    text-align: center;
    max-width: 18ch;
  }
}

.app__version {
  font-size: 1.25rem;
  color: #888888;
  margin-bottom: 1rem;
}

.app__changelog {
  background-color: #151515;
  padding: 2.5rem;
  border-radius: 16px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #333333;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .app__changelog {
    padding: 1.5rem;
  }
}
.app__changelog h3 {
  margin-top: 0;
  color: #159af8;
}

.app__message {
  white-space: pre-line;
  font-size: 0.95rem;
  word-wrap: break-word;
}

.features-section {
  text-align: center;
}
.features-section .features__title {
  font-size: 2.8rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .features-section .features__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature-card {
  background-color: #151515;
  padding: 3rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
@media (max-width: 768px) {
  .feature-card {
    padding: 2rem;
  }
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: #159af8;
}

.feature-card__icon {
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
  filter: invert(1);
}

.feature-card__title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .feature-card__title {
    font-size: 1.4rem;
  }
}

.feature-card__description {
  color: #888888;
  font-size: 1rem;
}

.footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #333333;
}
@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0;
  }
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__links {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.footer__links a {
  color: #888888;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .footer__links a {
    padding: 0;
  }
}
.footer__links a:hover {
  color: #EFEFEF;
}
.footer p {
  margin: 0;
  color: #888888;
  font-size: 0.9rem;
}

.footer__links a {
  padding: 0 0.75rem;
  position: relative;
}
@media (max-width: 768px) {
  .footer__links a {
    padding: 0;
  }
}

.footer__links a:first-child {
  padding-left: 0;
}

.footer__links a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.25rem;
  color: #888888;
  pointer-events: none;
}
@media (max-width: 768px) {
  .footer__links a:not(:last-child)::after {
    content: none;
  }
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animated {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animated.visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-hero {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .privacy-hero {
    padding-top: 5rem;
  }
}

.privacy-hero__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .privacy-hero__title {
    font-size: 2rem;
  }
}

.privacy-hero__subtitle,
.privacy-hero__note {
  color: #888888;
  font-size: 1rem;
  margin-bottom: 0;
}

.privacy-hero__note {
  margin-top: 0.5rem;
}

.content-section {
  padding: 2rem 0 6rem;
}
@media (max-width: 768px) {
  .content-section {
    padding: 1rem 0 4rem;
  }
}

.content-wrapper {
  background-color: #151515;
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid #333333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 1.5rem;
  }
}

.content-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  color: #159af8;
  position: relative;
}
@media (max-width: 768px) {
  .content-title {
    font-size: 1.4rem;
  }
}

.content-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: #159af8;
  border-radius: 2px;
}

.content-section p,
.content-section ul {
  font-size: 1rem;
  color: #EFEFEF;
  line-height: 1.8;
}

.content-section strong {
  color: #EFEFEF;
}

.styled-list {
  padding-left: 2rem;
  list-style: none;
}

.styled-list > li {
  position: relative;
  margin-bottom: 1rem;
}

.styled-list > li::before {
  content: "•";
  position: absolute;
  left: -1.5rem;
  color: #159af8;
  font-size: 1.2rem;
  line-height: 1.8;
}

.sub-list {
  padding-left: 1.5rem;
  list-style: none;
}

.sub-list li {
  position: relative;
  margin-bottom: 1rem;
}

.sub-list li::before {
  content: "—";
  position: absolute;
  left: -1rem;
  color: #159af8;
}

.card {
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
  border: 1px solid #333333;
}
@media (max-width: 768px) {
  .card {
    padding: 1.5rem;
  }
}

.card--warning {
  background-color: rgba(255, 152, 0, 0.1);
  border-left: 4px solid #ff9800;
}

.card--contact {
  background-color: rgba(41, 121, 255, 0.1);
  border-left: 4px solid #159af8;
}

.card__title {
  font-size: 1.6rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .card__title {
    font-size: 1.4rem;
  }
}

.highlight {
  background-color: rgba(21, 154, 248, 0.15);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  color: #EFEFEF;
}

code {
  background-color: rgba(21, 154, 248, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  color: #159af8;
  font-family: "Courier New", monospace;
  font-size: 0.95em;
}

.logo-banner {
  text-align: center;
  background-color: transparent;
}

.logo-banner__image {
  max-width: 800px;
  width: 80%;
  height: auto;
  object-fit: contain;
}

.account-section {
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 10rem;
}
@media (max-width: 768px) {
  .account-section {
    min-height: 70vh;
    padding-top: 5rem;
  }
}
.account-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.account-section .account__title {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .account-section .account__title {
    font-size: 2.5rem;
  }
}
.account-section .account__subtitle {
  font-size: 1.5rem;
  color: #888888;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  .account-section .account__subtitle {
    font-size: 1rem;
  }
}

.contact-section {
  padding: 6rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
}

.contact__title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 2rem;
  }
}

.contact__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #159af8;
  border-radius: 2px;
}

.contact-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  text-align: left;
  background-color: #151515;
  border-radius: 16px;
  border: 1px solid #333333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
@media (max-width: 992px) {
  .contact-card-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contact-info {
  background-color: rgba(21, 154, 248, 0.1);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(21, 154, 248, 0.2);
}
@media (max-width: 992px) {
  .contact-info {
    border-right: none;
    border-bottom: 1px solid rgba(21, 154, 248, 0.2);
  }
}
@media (max-width: 768px) {
  .contact-info {
    padding: 2rem;
  }
}

.contact-info__title {
  font-size: 2rem;
  color: #159af8;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-info__title {
    font-size: 1.6rem;
  }
}

.contact-info__subtitle {
  color: #888888;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #0A0A0A;
  border: 1px solid #333333;
  border-radius: 8px;
  text-decoration: none;
  color: #EFEFEF;
  transition: transform 0.2s ease, background-color 0.3s ease;
}
.contact-link:hover {
  transform: translateX(5px);
  background-color: #1a1a1a;
}

.contact-link i {
  font-size: 1.5rem;
  color: #159af8;
}

.contact-form {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem;
  }
}

.contact-form__title {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-form__title {
    font-size: 1.4rem;
  }
}

.input-group {
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background-color: #0A0A0A;
  color: #EFEFEF;
  border: 1px solid #333333;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Это новое свойство */
}
.form-input:focus {
  border-color: #159af8;
  box-shadow: 0 0 0 3px rgba(21, 154, 248, 0.3);
}
.form-input::placeholder {
  color: #888888;
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.button.w-full {
  width: 100%;
}

.status-message {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  font-size: 0.9rem;
}

.status-message.success {
  background-color: rgba(21, 154, 248, 0.2);
  color: #159af8;
}

.status-message.error {
  background-color: rgba(255, 0, 0, 0.2);
  color: #ff0000;
}

.status-message.hidden {
  display: none;
}

.success-message {
  text-align: center;
  padding: 2rem 1rem;
}
@media (max-width: 768px) {
  .success-message {
    padding: 1rem;
  }
}

.success-message .fas.fa-check-circle {
  font-size: 3rem;
  color: #159af8;
  margin-bottom: 1rem;
}

.success-message h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.success-message p {
  color: #888888;
}

/* Стили для мобильного меню и кнопки - ИСПРАВЛЕНО ОКОНЧАТЕЛЬНО */
.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #EFEFEF;
  background: transparent;
  border: none;
  padding: 0.5rem;
  position: relative;
  z-index: 101;
  transition: transform 0.3s ease;
}
.nav-toggle i {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
}

.nav-toggle.active i {
  opacity: 0;
  transform: rotate(90deg);
}

.nav-toggle.active::before,
.nav-toggle.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  background-color: #EFEFEF;
  transition: transform 0.3s ease;
}

.nav-toggle.active::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.active::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 60%; /* МЕНЯЕМ ШИРИНУ, ТЕПЕРЬ ОНО НЕ НА ВЕСЬ ЭКРАН */
  height: 100vh;
  background-color: #151515;
  padding: 6rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5); /* Добавляем тень для лучшего вида */
}
@media (min-width: 993px) {
  .nav-menu {
    display: none;
  }
}
@media (max-width: 480px) {
  .nav-menu {
    width: 100%;
  }
}
.nav-menu.is-active {
  transform: translateX(0);
}
.nav-menu .nav__link {
  margin: 1.5rem 0;
  font-size: 1.5rem;
  text-align: center;
}
.nav-menu .nav__link--cta {
  margin-top: 2rem;
}

* {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -user-drag: none;
  -webkit-user-drag: none;
}

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