html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}

img {
  display: block;
  max-width: 100%;
}

.header {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 101%;
}

.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 40px;
  background: rgba(20, 20, 30, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 2px 6px rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(255, 255, 255, 0.08),
    inset 0 0 10px rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

@media screen and (min-width: 1280px) {
  .header_container {
    padding: 12px 108px;
  }
}

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

.header-nav-pc {
  display: none;
}

@media screen and (min-width: 1280px) {
  .header-nav-pc {
    display: block;
    width: 100%;
  }
}

.header-nav-mobile-button {
  display: block;
  width: 50px;
  height: 40px;
}

@media screen and (min-width: 1280px) {
  .header-nav-mobile-button {
    display: none;
  }
}

.header-nav-mobile {
  position: fixed;
  top: 56px;
  right: -1900px;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: -webkit-linear-gradient(90deg, #000000, #0d1521, #070e18);
  background: linear-gradient(90deg, #000000, #0d1521, #070e18);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px #ffffff4d, 0 0 20px #fff3, 0 0 40px #ffffff1a,
    inset 0 0 15px #ffffff26;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease;
}

.header-nav-mobile.is-open {
  position: fixed;
  border-radius: 20px;
  top: 85px;
  width: 100%;
  height: 60vh;
  right: 2px;
  z-index: 999;
  pointer-events: painted;
  opacity: 1;
}

.header-nav-mobile-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 32px;
}

.header-nav-mobile-item>a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
}

.header-nav-mobile-item {
  transition: transform 0.3s ease;
}

.header-nav-mobile-item:hover,
.header-nav-mobile-item:focus,
.header-nav-mobile-item:active {
  transform: scale(1.05);
}

@media (min-width: 1280px) {
  .header-nav-mobile {
    display: none;
  }

  .header-nav-pc-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
  }

.mainnav-link {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #f5f5f5;
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.mainnav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6a00f4, #d500f9);
  opacity: 0;
  border-radius: 6px;
  z-index: -1;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.mainnav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.mainnav-link:hover {
  color: #1c1800;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.4);
}

.mainnav-link-item {
  margin: 0 6px;
  transition: transform 0.2s ease;
}

.mainnav-link-item:hover {
  transform: translateY(-2px);
}
}

.hero {
  background-image: linear-gradient(90deg, #000000c4, #0d1521c9, #070e18be),
    url(../images/h1-7130e609.jpg);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  height: 65vh;
  width: 100%;
  padding-top: 20px;
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}

.hero_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 14px;
}

@media screen and (min-width: 1440px) {
  .hero_container {
    padding: 0 80px;
  }
}

.hero_container h1 {
  color: #fff;
  font-size: 38px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 600px;
}

@media screen and (max-width: 1440px) {
  .hero_container h1 {
    font-size: 34px;
  }
}

.hero_container p {
  color: #fff;
  text-align: center;
  font-size: 24px;
  max-width: 600px;
}

@media screen and (max-width: 1440px) {
  .hero_container p {
    font-size: 20px;
  }
}

.reviews {
  margin-bottom: 80px;
}

@media screen and (min-width: 1440px) {
  .reviews {
    margin-bottom: 120px;
  }
}

.swiper-reviews {
  overflow: visible !important;
  max-width: 100%;
  margin-left: 0 !important;
}

@media screen and (min-width: 1440px) {
  .swiper-reviews {
    max-width: 497px;
  }
}

.reviews_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

@media screen and (min-width: 1440px) {
  .reviews_container {
    padding: 0 20px;
  }
}

.swiper-slide-review {
  border: 1px solid #fff;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  border-radius: 20px;
  padding: 40px 40px 21px;
  min-height: 214px;
  box-shadow: 3px 4px 11px #00000040;
  background: linear-gradient(90deg, #0000006a, #0d152173, #070e186c),
    url(../images/review-bg-4fc3e23a.jpg);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px #ffffff4d, 0 0 20px #fff3, 0 0 40px #ffffff1a,
    inset 0 0 15px #ffffff26;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media screen and (min-width: 1440px) {
  .swiper-slide-review {
    padding: 40px 73px 40px 40px;
    min-height: 258px;
  }
}

.swiper-slide-review:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px #ffffff80, 0 0 30px #ffffff4d, 0 0 60px #ffffff26,
    inset 0 0 20px #fff3;
}

.swiper-slide-review>p {
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  line-height: 1.2;
  color: #fff;
}

@media screen and (min-width: 1440px) {
  .swiper-slide-review>p {
    font-size: 24px;
    margin-bottom: 11px;
  }
}

.swiper-slide-review>h3 {
  position: absolute;
  top: -20px;
  right: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  padding: 9px 28px;
  border-radius: 24px;
  font-weight: 400;
  background: #350036 !important;
  opacity: 0.8;
  color: #fff;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px #ffffff4d, 0 0 20px #fff3, 0 0 40px #ffffff1a,
    inset 0 0 15px #ffffff26;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media screen and (min-width: 1440px) {
  .swiper-slide-review>h3 {
    top: -46px;
    font-size: 24px;
    padding: 25px 42px;
  }
}

.swiper-slide-review>h3:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px #ffffff80, 0 0 30px #ffffff4d, 0 0 60px #ffffff26,
    inset 0 0 20px #fff3;
}

.stars {
  width: 247px;
  height: 39px;
}

.reviews-title {
  font-family: Playfair Display, serif;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.7),
    0 0 8px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.2),
    0 0 1px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
  font-size: 36px;
  display: flex;
  align-self: flex-start;
}

.site-footer {
  background: linear-gradient(135deg, #2a0033cc, #2b2b2bcc);
    url(../images/footer-bg-1a7137c3.jpg) center/cover no-repeat;
  border-top: 1px solid #333;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #eaeaea;
}

.site-footer__container {
  padding: 50px 16px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

@media screen and (min-width: 1280px) {
  .site-footer__container {
    padding: 100px 120px 40px;
    gap: 50px;
  }
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .site-footer__nav {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__nav-item>a {
  color: #f5f5f5;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.site-footer__nav-item>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.site-footer__nav-item>a:hover::after {
  transform: scaleX(1);
}

.site-footer__logo {
  margin-bottom: 20px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
}

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

.footer-disclaimer {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .footer-disclaimer {
    font-size: 16px;
  }
}

footer a {
  text-decoration: none;
}

.disclaimer-block {
  max-width: 1200px;
  margin: 0 auto;
  color: #d1cfe0;
  /* ніжний світло-фіолетовий відтінок */
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  padding: 0 15px;
  font-weight: 400;
}

.disclaimer-block p {
  margin-bottom: 12px;
}

.disclaimer-block strong {
  color: #5a4b7f;
  /* темно-фіолетовий, без агресивності */
  font-weight: 600;
}

@media screen and (min-width: 1280px) {
  .disclaimer-block {
    font-size: 16px;
    line-height: 1.75;
    padding: 0;
  }
}

.companies_container {
  border-radius: 10px;
  width: 80%;
  padding: 10px 0;
  background: #350036 !important;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-link-site {
  max-width: 100px;
}

.logo-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  /* Темний фон для контрасту */
}

/* Зображення логотипу, варіант 1 */
.logo-image {
  width: 90%;
  height: 90%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-margin {
  margin-bottom: 32px;
}

.page-margin-2 {
  margin-bottom: 16px;
}

.page-margin-8,
.page-margin-24 {
  margin-bottom: 8px;
}

.h3-uppercase {
  text-transform: uppercase;
}

.page-text-bold {
  font-weight: 600;
}

.page-text {
  line-height: 1.57143;
}

@media screen and (min-width: 1440px) {
  .page-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-simple-list {
  list-style: disc;
  padding-left: 20px;
}

.page-simple-link {
  line-height: 1.57143;
  color: #0059ff;
}

@media screen and (min-width: 1440px) {
  .page-simple-link {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-title-h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55556;
}

@media screen and (min-width: 1440px) {
  .page-title-h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}

.page-title {
  font-family: Nunito, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin: 116px auto 40px;
}

@media screen and (min-width: 1440px) {
  .page-title {
    font-size: 28px;
    line-height: 1.57143;
    margin-top: 189px;
  }
}

.page-content {
  padding: 0 16px 60px;
}

@media screen and (min-width: 1440px) {
  .page-content {
    padding: 0 212px 120px;
  }
}

.btn-flip {
  opacity: 1;
  outline: 0;
  color: #fff;
  line-height: 40px;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-family: Open Sans;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;
}

.btn-flip:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.btn-flip:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}

.btn-flip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #323237;
  display: block;
  transition: 0.5s;
  position: absolute;
  background: #adadaf;
  content: attr(data-back);
  transform: translateY(-50%) rotateX(90deg);
}

.btn-flip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #adadaf;
  display: block;
  padding: 0 30px;
  line-height: 40px;
  transition: 0.5s;
  position: relative;
  background: #323237;
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
}

.cards {
  scroll-margin-top: 100px;
  width: 100%;
}

.img_company_box {
  min-width: 300px;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (min-width: 1280px) {
  .img_company_box {
    min-width: 350px;
  }
}

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

.position-box {
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-bottom: 10px;
}

.position-text {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f4f4f4;
  border-radius: 5px;
  padding: 10px;
}

.position {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #f6f6f6;
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1280px) {
  .position {
    height: 72px;
    border-radius: 0;
  }
}

.cards_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 16px 50px;
}

@media screen and (min-width: 1280px) {
  .cards_container {
    gap: 76px;
    padding: 20px 16px 50px;
  }
}

.cards_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
}



  .legal-slide-gallery-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      /* відстань між картками */
      justify-content: center;
      /* центровані по горизонталі */
      max-width: 1300px;
      margin: 0 auto;
    }
  
    .legal-slide-gallery {
      flex: 1 1 calc(50% - 24px);
      /* дві в рядок з врахуванням gap */
      box-sizing: border-box;
      min-width: 280px;
      /* мінімальна ширина для мобільних */
    }

.swiper-slide-gallery {
  overflow: hidden;
  width: 100%;
  border-radius: 30px;
}

.swiper-slide-gallery>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-wrapper1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px auto;
}

.faq {
  width: 100%;
  padding-bottom: 50px;
}

.faq_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

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

.faq_list:hover> :not(:hover) {
  filter: blur(5px);
  opacity: 0.5;
}

.faq-item {
  background: #4e004f !important;
  opacity: 0.7;
  box-shadow: 12px 12px 20px #0000001a;
  width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px #ffffff80, 0 0 30px #ffffff4d, 0 0 60px #ffffff26,
    inset 0 0 20px #fff3;
}

.faq-question-button-js {
  color: #fff;
  display: flex;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid black;
}

.faq_question {
  width: 100%;
  border-radius: 8px 8px 0 0;
  padding: 16px;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease, background 0.3s ease;
  padding: 0 16px;
  margin-top: 6px;
  background: linear-gradient(135deg, #2e003e, #3c1c57, #5c008b);
    border-left: 4px solid #ea00ff;
  /* темно-фіолетовий акцент */
  border-radius: 0 0 10px 10px;
  color: #ddd;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.6;
}

.faq-answer.open {
  margin: 0;
  width: 100%;
  max-height: 800px;
  padding-top: 12px;
  padding-bottom: 14px;
  box-shadow: inset 0 1px 0 #444, 0 4px 10px rgba(0, 0, 0, 0.3);
  border-left-color: #bf8bff;
}
.faq-title {
  font-family: Playfair Display, serif;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.7),
    0 0 8px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.2),
    0 0 1px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
  font-size: 36px;
}

.rating_container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 0;
}

@media screen and (max-width: 1280px) {
  .rating_container {
    flex-direction: column;
    padding-right: 0;
    gap: 20px;
  }
}

.rating_container img {
  width: 100%;
  height: 100%;
  max-width: 700px;
  object-fit: cover;
  border: 2px solid #fff3;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.rating_container h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 1280px) {
  .rating_container h1 {
    font-size: 30px;
  }
}

.rating_container p {
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 1280px) {
  .rating_container p {
    font-size: 18px;
  }
}

.rating-text-box {
  max-width: 600px;
  margin-top: 35px;
}

.tech-dot {
  color: #141414;
}

.marquee {
  overflow: hidden;
  font-family: Pridi, sans-serif;
  font-weight: 600;
  font-size: 34px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-left: -2px;
  margin-right: -2px;
}

.marquee__inner {
  display: flex;
}

.marquee__line {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin: 0;
  min-width: 100%;
  white-space: nowrap;
  animation-name: marqueeLine;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  padding: 32px 0;
  text-align: center;
  background-color: red;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.tech-dot-hidden {
  display: none;
}

@keyframes marqueeLine {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(-100%);
  }
}

.second_marquee__line {
  transform: translate(100%);
  animation-name: marqueeLineSecond;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes marqueeLineSecond {
  0% {
    transform: translate(-100%);
  }

  to {
    transform: translate(0);
  }
}

.second-marquee {
  transform: rotate(2deg);
  position: relative;
  z-index: 0;
}

.tech-dot:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  margin: 0 16px;
  vertical-align: middle;
  border-radius: 2px;
  position: relative;
  top: -4px;
  transform: rotate(-180deg);
  animation: rotateAnimation 5s infinite linear;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(-180deg);
  }

  to {
    transform: rotate(180deg);
  }
}

.second_marquee__line {
  background: #e4e5e6;
}

.second_marquee__line {
  color: var(--main-color);
}

.tech-second-dot:before {
  background-color: var(--text-color-white-t);
}

.tech-wrapper {
  position: relative;
}

@media screen and (min-width: 480px) {

  .marquee__line,
  .second_marquee__line {
    animation-timing-function: ease-in-out;
    animation-duration: 5s;
  }
}

@media screen and (min-width: 768px) {
  .marquee__line {
    padding: 40px 0;
    font-size: 36px;
    line-height: 1.33;
    letter-spacing: 0.01em;
  }

  .tech-dot-hidden {
    display: inline-block;
  }
}

@media screen and (min-width: 1280px) {

  .marquee__line,
  .second_marquee__line {
    text-align: center;
  }
}

.legal-page {
  padding: 140px 20px 80px;
  font-family: 'Lato', sans-serif;
  color: #f2f2f2;
  line-height: 1.7;
}

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

.legal-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  color: #ffffff;
}

.legal-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #f5f5f5;
}

.legal-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #dddddd;
}

.legal-text a {
  color: #b580ff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-text a:hover {
  color: #d6b7ff;
}

.legal-slide-gallery {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 15px;
  background: #2e1a4f;
  /* темно-фіолетовий фон */
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(75, 0, 130, 0.6);
  font-family: 'Lato', sans-serif;
  color: #eee;
}

.legal-company-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #3b2a6f;
  border-radius: 12px;
}

.legal-img-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.legal-rank-badge {
  display: flex;
  position: absolute;
  flex-direction: column;
  align-items: center;
  top: 10px;
  left: 10px;
  background: #6a0dad;
  padding: 6px 12px;
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 0 6px #a05effaa;
}

.legal-rank-number {
  font-size: 18px;
  font-weight: 800;
}

.legal-logo-box img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 12px #b88fffaa;
}

.legal-rating-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-rating-score {
  font-weight: 700;
  font-size: 18px;
  color: #d8baff;
}

.legal-rating-stars {
  width: 90px;
  height: auto;
}

.legal-review-count {
  font-size: 14px;
  color: #c8a1ffcc;
  text-align: center;
}

.legal-offer-details {
  background: #4a3399;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: inset 0 0 12px #7845ff88;
}

.legal-offer-label {
  font-weight: 600;
  font-size: 16px;
  color: #f0eaff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.legal-offer-value {
  font-size: 20px;
  font-weight: 700;
  color: #ffdfff;
}

.legal-payment-icons {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.legal-payment-icons img {
  width: 36px;
  height: auto;
  filter: drop-shadow(0 0 2px #a676ff);
}

.legal-features-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.legal-features-box {
  display: flex;
  gap: 20px;
  flex: 1;
}

.legal-feature-item p:first-child {
  font-weight: 600;
  color: #cdb7ff;
  font-size: 14px;
  margin-bottom: 4px;
}

.legal-feature-item p:last-child {
  font-weight: 700;
  font-size: 18px;
  color: #f7e6ff;
}

.legal-cta-button {
  background: #8e50ff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 15px #a17aff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-cta-button:hover,
.legal-cta-button:focus {
  background: #b07dff;
  box-shadow: 0 0 25px #d9b8ff;
  outline: none;
}

@media screen and (max-width: 1280px) {
  .legal-rank-badge {
    display: none;
  }
}

label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px #007bff4d;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input[type="checkbox"] {
  margin-right: 8px;
}

label div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #555;
}

label div a {
  color: #007bff;
  text-decoration: none;
}

label div a:hover {
  text-decoration: underline;
}

.text-error1,
.email-error,
.textarea-error,
.checkbox-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

.btn-2 {
  background: #003f11 !important;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-2:hover {
  background: #003f11 !important;
}

.btn-2 span {
  display: inline-block;
}

@media (max-width: 480px) {
  .form-container {
    padding: 20px;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .btn-2 {
    padding: 10px;
  }
}

.cookies-section {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 100%;
  background: -webkit-linear-gradient(90deg, #000000, #0d1521, #070e18);
  background: linear-gradient(90deg, #000000, #0d1521, #070e18);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 5px #ffffff4d, 0 0 10px #fff3, 0 0 20px #ffffff1a,
    inset 0 0 15px #ffffff26;
  transition: box-shadow 0.3s ease;
}

.cookies-section:hover {
  box-shadow: 0 0 15px #ffffff80, 0 0 30px #ffffff4d, 0 0 60px #ffffff26,
    inset 0 0 20px #fff3;
}

.cookies-container {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media screen and (min-width: 1440px) {
  .cookies-container {
    padding: 40px 108px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookies-text {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.57143;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1440px) {
  .cookies-text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 705px;
    text-align: left;
  }
}

.cookies-text a {
  text-decoration: underline;
}

.cookies-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 1440px) {
  .cookies-buttons {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0;
  }
}

.cookies-accept-js {
  background-color: #a9ffcc;
  transition: background-color 0.3s ease;
  color: #121212 !important;
}

.cookies-accept-js:hover {
  background-color: #49db86;
}

.cookies-decline-js {
  background-color: #ff735d;
  transition: background-color 0.3s ease;
  color: #121212 !important;
}

.cookies-decline-js:hover {
  background-color: #ce1b00;
}

.btn-1 {
  text-align: center;
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #fff;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  margin: 0 20px;
}

.btn-1:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 50px;
  background: #fff;
  left: -55px;
  top: -40px;
  transform: rotate(37deg);
  transition: all 0.3s;
  opacity: 0.3;
}

.btn-1:hover:before {
  left: 95%;
}

:root {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #eaeaea;
  background-color: #1b001c;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.container {
  max-width: 375px;
  min-width: 320px;
  margin: 0 auto;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.page-section {
  background-color: #fff;
  padding-top: 100px;
}

body {
  overflow-x: hidden !important;
}

#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}