@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #1a1a2e;
  --primary-color: #16213e; /* deep blue */
  --accent-color: #2d8dff; /* darker blue */
  --warning-color: #e94560; /* red */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background-color: #f4f6f8;
  line-height: 1.3;
  color: var(--dark-color);
}

body.lock {
  overflow: hidden;
}

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

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}

/*  STRUCTURE  */
.flx-header {
  padding: 10px 0;
  box-shadow: 0 5px 5px -5px var(--accent-color);
}
.flx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.flx-header__logo {
  max-width: 200px;
  width: 100%;
}
.flx-header__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.flx-header__btn {
  width: 120px;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  background: var(--light-color);
  color: var(--dark-color);
  z-index: 2;
  transition: all 0.5s ease;
  border: 1px solid #1c1c1c;
}
.flx-header__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  transform: translateX(-120%) skewX(-45deg);
  background-color: rgba(250, 207, 181, 0.5019607843);
  left: 0;
  transition: all 2s ease;
  z-index: -1;
}
.flx-header__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.flx-header__btn:hover::before {
  transform: translateX(120%) skewX(-45deg);
}

.flx-logo {
  max-width: 30px;
}
.nav__list {
  display: none;
}
@media screen and (min-width: 1200px) {
  .nav__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
.nav__list.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  gap: 20px;
  gap: 20px;
  background-color: var(--light-color);
  z-index: 10;
}
.flx-nav__link {
  color: var(--primary-color);
}
.flx-nav__link:hover {
  color: var(--accent-color);
}

.burger {
  flex-shrink: 0;
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.burger:before {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dark-color);
  top: 0%;
  transform: translateY(0%) rotate(0deg);
  transition: all 0.5s ease;
}
.burger:after {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dark-color);
  transition: all 0.5s ease;
  bottom: 0;
  transform: translateY(0%) rotate(0deg);
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  transition: all 0.5s ease;
}
.burger.is-open {
  z-index: 11;
}
.burger.is-open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.is-open::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.burger.is-open span {
  transform: scale(0);
}
@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.flx-hero {
  padding: 140px 0;
  position: relative;
  color: var(--light-color);
  background-image: url(../images/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}
.flx-hero:before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(
    135deg,
    rgba(22, 33, 62, 0.9) 0%,
    rgba(15, 52, 96, 0.8) 50%,
    rgba(45, 141, 255, 0.1) 100%
  );
  z-index: -1;
}

/* Добавляем декоративные элементы */
.flx-hero::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(45, 141, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: heroFloat 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, -20px) rotate(10deg);
  }
}
.flx-hero__title {
  font-size: 56px;
  font-weight: 800;
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flx-hero__text {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  animation: textFadeIn 1s ease-out 0.3s both;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.95;
    transform: translateY(0);
  }
}

.flx-hero__btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, #1468cb 100%);
  color: var(--light-color);
  border: none;
  padding: 16px 32px;
  max-width: 180px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(45, 141, 255, 0.4);
  transition: all 0.3s ease;
  animation: buttonFadeIn 1s ease-out 0.6s both;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

@keyframes buttonFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flx-hero__btn::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: left 0.5s;
}

.flx-hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 141, 255, 0.5);
}

.flx-hero__btn:hover::before {
  left: 100%;
}

.flx-about {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

/* Декоративные элементы для about */
.flx-about::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(45, 141, 255, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: aboutFloat 10s ease-in-out infinite;
}

.flx-about::after {
  content: "";
  position: absolute;
  bottom: -25%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(20, 104, 203, 0.02) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: aboutFloat 12s ease-in-out infinite reverse;
}

@keyframes aboutFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -15px) scale(1.05);
  }
}

.flx-about .container {
  position: relative;
  z-index: 2;
}
.flx-about__title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.flx-about__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 2px;
}
.flx-about__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .flx-about__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .flx-about__list {
    grid-template-columns: 1fr;
  }
}
.flx-about__item {
  min-height: 425px;
  padding: 32px 24px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(45, 141, 255, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.flx-about__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
}

.flx-about__item::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(45, 141, 255, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: all 0.3s ease;
}

.flx-about__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.flx-about__item:hover::after {
  top: -30%;
  right: -30%;
  width: 150px;
  height: 150px;
}
.flx-about__media {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 16px;
}

.flx-about__media img {
  border-radius: 16px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 240px;
  transition: transform 0.3s ease;
}

.flx-about__item:hover .flx-about__media img {
  transform: scale(1.05);
}
.flx-about__item-title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.flx-about__item-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  z-index: 2;
}
.flx-about__btn {
  max-width: 180px;
  margin: 16px auto 0;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1468cb 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(45, 141, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}

.flx-about__btn::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: left 0.5s;
}

.flx-about__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 141, 255, 0.4);
}

.flx-about__btn:hover::before {
  left: 100%;
}

.flx-service {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-color) 100%
  );
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

/* Декоративные элементы для service */
.flx-service::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(45, 141, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: serviceFloat 15s ease-in-out infinite;
}

.flx-service::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -25%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(20, 104, 203, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: serviceFloat 20s ease-in-out infinite reverse;
}

@keyframes serviceFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(25px, -30px) rotate(15deg);
  }
}

.flx-service .container {
  position: relative;
  z-index: 2;
}
.flx-service__title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.flx-service__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  border-radius: 2px;
}

.flx-service__subtitle {
  text-align: center;
  margin-bottom: 60px;
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.flx-service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .flx-service__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .flx-service__list {
    grid-template-columns: 1fr;
  }
}
.flx-service__item {
  padding: 32px;
  border: 1px solid #4f4f4f;
  border-radius: 8px;
  background-color: #333333;
}
.flx-service__item svg {
  color: #1468cb;
}
.flx-service__item-title {
  margin-block: 16px;
  font-size: 24px;
}
.flx-service__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.flx-service__info h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  max-width: 380px;
}
.flx-service__info h2 span {
  display: block;
}
.flx-service__info p {
  max-width: 420px;
}

.flx-help {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

/* Декоративные элементы */
.flx-help::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(45, 141, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.flx-help::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(20, 104, 203, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.flx-help .container {
  position: relative;
  z-index: 2;
}
.flx-help__title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.flx-help__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 2px;
}

.flx-help__subtitle {
  margin-bottom: 60px;
  font-size: 18px;
  text-align: center;
  color: #64748b;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.flx-help__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.flx-help__list :nth-child(1) {
  grid-column: span 3;
}
@media screen and (max-width: 1200px) {
  .flx-help__list :nth-child(1) {
    grid-column: span 2;
  }
}
.flx-help__list :nth-child(2) {
  grid-column: span 3;
}
@media screen and (max-width: 1200px) {
  .flx-help__list :nth-child(2) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 1200px) {
  .flx-help__list {
    grid-template-columns: 1fr;
  }
}
.flx-help__item {
  grid-column: span 2;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: var(--dark-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(45, 141, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.flx-help__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
}

.flx-help__item::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(45, 141, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: all 0.3s ease;
}

.flx-help__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flx-help__item:hover::after {
  top: -30%;
  right: -30%;
  width: 150px;
  height: 150px;
}

.flx-help__item-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.flx-help__item-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1468cb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.flx-help__item:hover .flx-help__item-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(45, 141, 255, 0.4);
}

.flx-help__item-text {
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  z-index: 2;
}
.flx-help__item-btn {
  display: inline-flex;
  align-items: center;
  line-height: 24px;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1468cb 100%);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(45, 141, 255, 0.3);
  margin-top: auto;
}

.flx-help__item-btn::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: left 0.5s;
}

.flx-help__item-btn svg {
  position: relative;
  transform: translateX(0px) rotate(-90deg);
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.flx-help__item-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 141, 255, 0.4);
}

.flx-help__item-btn:hover::before {
  left: 100%;
}

.flx-help__item-btn:hover svg {
  transform: translateX(3px) rotate(-90deg);
}
.flx-help__btn {
  margin: 0 auto;
  max-width: 200px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1468cb 100%);
  border: none;
  padding: 16px 32px;
  gap: 8px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(45, 141, 255, 0.3);
  transition: all 0.3s ease;
}

.flx-help__btn::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: left 0.5s;
}

.flx-help__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 141, 255, 0.4);
}

.flx-help__btn:hover::before {
  left: 100%;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  /* Hero responsive */
  .flx-hero {
    padding: 100px 0;
  }

  .flx-hero::after {
    display: none;
  }

  .flx-hero__title {
    font-size: 40px;
  }

  .flx-hero__text {
    font-size: 16px;
  }

  /* About responsive */
  .flx-about::before,
  .flx-about::after {
    display: none;
  }

  .flx-about__title {
    font-size: 36px;
  }

  /* Service responsive */
  .flx-service::before,
  .flx-service::after {
    display: none;
  }

  .flx-service__title {
    font-size: 36px;
  }

  /* Help responsive */
  .flx-help {
    padding: 80px 0;
  }

  .flx-help::before,
  .flx-help::after {
    display: none;
  }

  .flx-help__title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .flx-help__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .flx-help__item {
    padding: 24px;
    border-radius: 16px;
  }

  .flx-help__item-title {
    font-size: 18px;
  }

  .flx-help__item-text {
    font-size: 14px;
  }

  .flx-help__item-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .flx-help__btn {
    max-width: 180px;
    padding: 14px 28px;
    font-size: 15px;
  }

  .flx-help__item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
}

.flx-join {
  padding: 30px 0;
  border-radius: 32px;
}
.flx-join__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.flx-join__subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}
.join__form {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  max-width: 600px;
  padding: 40px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 141, 255, 0.1);
  animation: formFadeIn 0.8s ease-out;
}

@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  animation: slideUp 0.6s ease-out;
  animation-fill-mode: both;
}

.form__group:nth-child(1) {
  animation-delay: 0.1s;
}
.form__group:nth-child(2) {
  animation-delay: 0.2s;
}
.form__group:nth-child(3) {
  animation-delay: 0.3s;
}
.form__group:nth-child(4) {
  animation-delay: 0.4s;
}
.form__group:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form__group label {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px;
  margin-bottom: 4px;
}
.form__input {
  padding: 16px 20px;
  height: 56px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form__input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(45, 141, 255, 0.1);
  background-color: #ffffff;
}

.form__input::placeholder {
  color: #94a3b8;
  font-size: 15px;
}
.form__textarea {
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
}

.form__textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(45, 141, 255, 0.1);
  background-color: #ffffff;
}

.form__textarea::placeholder {
  color: #94a3b8;
  font-size: 15px;
}

/* Form validation styles */
.form__input.error,
.form__textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  font-size: 14px;
  color: #ef4444;
  font-weight: 500;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.error-message::before {
  content: "⚠";
  font-size: 12px;
}
.flx-form__btn {
  max-width: 200px;
  margin: 16px auto 0;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1468cb 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(45, 141, 255, 0.3);
}

.flx-form__btn::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: left 0.5s;
}

.flx-form__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 141, 255, 0.4);
}

.flx-form__btn:hover::before {
  left: 100%;
}

.flx-form__btn:active {
  transform: translateY(0);
}

.flx-form__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.flx-form__btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(45, 141, 255, 0.3);
}
.flx-form__disclaimer {
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  text-align: center;
}
.flx-form__disclaimer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.flx-form__disclaimer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Form responsive styles */
@media screen and (max-width: 768px) {
  .join__form {
    margin: 0 20px;
    padding: 32px 24px;
    border-radius: 12px;
  }

  .form__input,
  .form__textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .form__input {
    height: 52px;
  }

  .flx-form__btn {
    width: 100%;
    max-width: none;
    padding: 16px 24px;
  }
}

.flx-service-page,
.service-page {
  padding: 70px 0;
}
.flx-service-page__title,
.service-page__title {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center;
}
.flx-service-page__content p,
.service-page__content p {
  margin-bottom: 16px;
}
.flx-service-page__content h2,
.service-page__content h2 {
  margin-bottom: 12px;
}
.flx-service-page__content a,
.service-page__content a {
  color: var(--accent-color);
}
.flx-service-page__content a:hover,
.service-page__content a:hover {
  color: var(--primary-color);
}
.flx-service-page__content ul,
.service-page__content ul {
  margin-bottom: 12px;
}
.flx-service-page__btn,
.service-page__btn {
  max-width: 180px;
  width: 100%;
  margin: 32px auto 0;
  padding: 12px 0;
}
.flx-service-page__btn:hover,
.service-page__btn:hover {
  background-color: var(--accent-color);
}

.docomentation__inner {
  padding: 32px;
  border: 1px solid #4f4f4f;
  border-radius: 8px;
  background-color: #333333;
}
.documentation__link {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  position: relative;
  height: 40px;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid var(--accent-color);
  padding: 8px 16px;
}
@media (max-width: 993px) {
  .documentation__link {
    display: flex;
    max-width: 220px;
    justify-content: center;
    margin: 0 auto;
  }
}

.documentation__link:hover {
  color: #000;
}

.documentation__text {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.flx-footer {
  padding: 35px 0;
  background-color: #dadada;
}

#accept-cookies,
#reject-cookies {
  padding: 5px;
  border-radius: 5px;
}

.flx-footer__info-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.flx-footer__info-list :nth-child(1) {
  margin-right: auto;
  width: 70px;
}
@media screen and (max-width: 768px) {
  .flx-footer__info-list {
    flex-wrap: wrap;
  }
  .flx-footer__info-list :nth-child(1) {
    flex: 0 1 100%;
    margin: 0 auto;
  }
}
.flx-footer__info-link {
  color: var(--accent-color);
}
.flx-footer__info-link:hover {
  color: var(--primary-color);
}
.flx-footer__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.flx-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .flx-footer__inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .flx-footer__copy {
    order: 2;
    text-align: center;
    margin: 0 auto;
  }
}
.flx-footer__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .flx-footer__list {
    flex: 0 1 100%;
  }
}
@media screen and (max-width: 480px) {
  .flx-footer__list {
    flex-direction: column;
  }
}
.flx-footer__link {
  transition: color 0.3s ease;
  color: var(--accent-color);
}
.flx-footer__link:hover {
  color: var(--primary-color);
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.notify {
  background-color: var(--dark-color);
}
.notify__text {
  color: var(--light-color);
  padding: 8px 0;
  font-size: 16px;
  font-weight: 300;
}

.rating {
  background-color: var(--light-color);
  padding: 30px 0;
  max-width: 960px;
  border-radius: 30px;
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .rating {
    margin-top: 0;
  }
}
.rating__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .rating__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-self: center;
  }
}
@media screen and (max-width: 1200px) {
  .rating__card {
    width: 100%;
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.rating__card:nth-child(2) img,
.rating__card:nth-child(3) img {
  max-width: 24px;
  width: 100%;
}
.rating__card:nth-child(1) svg {
  color: #2962ff;
}
.rating__card:nth-child(4) svg {
  color: #01b57a;
}
.rating__head {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.rating__head img {
  height: 26px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .rating__head span {
    font-size: 14px;
  }
}
.rating__content {
  display: flex;
  align-items: center;
  gap: 3px;
}
.rating__content span {
  margin-right: 8px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .rating__content span {
    font-size: 18px;
  }
}
.rating__content svg {
  color: #ff9f29;
}
@media screen and (max-width: 1200px) {
  .rating__content svg {
    width: 16px;
  }
}

.card {
  position: fixed;
  z-index: 20;
  bottom: 20px;
  right: 20px;
  width: 300px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 13px;
  overflow: hidden;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 18px #06a18f;
}
@media screen and (max-width: 480px) {
  .card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

#cookieSvg {
  width: 50px;
}

#cookieSvg g path {
  fill: rgb(227, 110, 110);
}

.flx-cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  text-align: center;
}

.flx-cookieDescription {
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
}

.rth-buttonContainer {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.rth-acceptButton {
  width: 80px;
  height: 30px;
  background-color: #7b57ff;
  transition-duration: 0.2s;
  border: none;
  color: rgb(241, 241, 241);
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.rth-declineButton {
  width: 110px;
  height: 30px;
  background-color: rgb(218, 218, 218);
  transition-duration: 0.2s;
  color: rgb(46, 46, 46);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.rth-declineButton:hover {
  background-color: var(--warning-color);
  transition-duration: 0.2s;
}

.rth-acceptButton:hover {
  background-color: #9173ff;
  transition-duration: 0.2s;
}

/*  COMPONENTS  */

/* Modern Thank you page */
.thankyou__hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}
.thankyou__success-animation {
  margin-bottom: 32px;
}
.thankyou__circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
}
.thankyou__checkmark {
  width: 100%;
  height: 100%;
}
.thankyou__circle-bg {
  stroke: rgba(147, 51, 234, 0.1);
  stroke-width: 2;
}
.thankyou__circle-progress {
  stroke: var(--accent-color);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1s ease-in-out;
}
.thankyou__check {
  stroke: var(--accent-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.5s ease-in-out 0.5s;
}
.thankyou__success-animation.animate .thankyou__circle-progress {
  stroke-dashoffset: 0;
}
.thankyou__success-animation.animate .thankyou__check {
  stroke-dashoffset: 0;
}
.thankyou__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-color);
}
.thankyou__subtitle {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}
.thankyou__content {
  max-width: 1000px;
  margin: 0 auto 48px;
}
.thankyou__section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
  color: var(--dark-color);
}
.thankyou__timeline {
  margin-bottom: 48px;
}
.thankyou__steps {
  display: grid;
  gap: 24px;
}
.thankyou__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.thankyou__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.thankyou__step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.thankyou__step-icon svg {
  width: 24px;
  height: 24px;
}
.thankyou__step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}
.thankyou__step-content p {
  color: #666;
  line-height: 1.6;
}
.thankyou__details {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
}
.thankyou__details-grid {
  display: grid;
  gap: 20px;
}
.thankyou__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.thankyou__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.thankyou__detail-icon svg {
  width: 20px;
  height: 20px;
}
.thankyou__detail-content h4 {
  font-size: 0.875rem;
  font-weight: 600;

  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.thankyou__detail-content p {
  color: var(--dark-color);
  line-height: 1.5;
}
.thankyou__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.thankyou__btn {
  display: flex;
  align-items: center;
  max-width: 250px;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}
.thankyou__btn svg {
  width: 18px;
  height: 18px;
}
.thankyou__btn--primary {
  background: var(--accent-color);
  color: white;
  border: 1px solid var(--accent-color);
}
.thankyou__btn--primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.thankyou__btn--secondary {
  background: transparent;
  color: var(--dark-color);
  border: 1px solid #d1d5db;
}
.thankyou__btn--secondary:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .thankyou__title {
    font-size: 2rem;
  }
  .thankyou__step {
    flex-direction: column;
    text-align: center;
  }
  .thankyou__actions {
    flex-direction: column;
    align-items: center;
  }
  .thankyou__btn {
    width: 100%;
    max-width: 280px;
  }
}

/* License modal */
.license-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}
.license-modal.is-open {
  display: flex;
}
.license-modal__dialog {
  max-height: 90vh;
  background: #eaeaea;
  color: var(--dark-color);
  border-radius: 16px;
  width: 100%;
  max-width: 1160px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.license-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.license-modal__title {
  font-size: 18px;
  font-weight: 700;
}
.license-modal__close {
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark-color);
}
.license-modal__content {
  background: #e6e6e6;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.license-modal__content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .license-modal__content {
    grid-template-columns: 1fr;
    overflow-y: scroll;
    max-height: 80vh;
  }
}

/* Анимированный график свечей */
.candlestick-chart-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.candlestick-chart-bg svg {
  width: 100%;
  height: 100%;
}

/* Анимация появления свечей */
@keyframes candleAppear {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Анимация пульсации свечей */
@keyframes candlePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Анимация линии тренда */
@keyframes trendLineDraw {
  0% {
    stroke-dasharray: 0 1000;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 1000 0;
    stroke-dashoffset: 0;
  }
}

/* Применение анимаций */
.candle {
  animation: candleAppear 0.8s ease-out forwards,
    candlePulse 3s ease-in-out infinite;
  opacity: 0;
}

.trend-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: trendLineDraw 4s ease-in-out 2s forwards;
}

/* Эффект свечения для свечей */
.candle line {
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

.candle rect {
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .candlestick-chart-bg {
    opacity: 0.4;
  }

  .candle {
    animation-duration: 0.6s, 2.5s;
  }

  .trend-line {
    animation-duration: 3s;
  }
}

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