@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
}
html * {
  scroll-behavior: smooth;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background: #040511;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body * {
  box-sizing: border-box;
}

#gradient-canvas {
  width: 100%;
  height: 100%;
  --gradient-color-1: #111c51;
  --gradient-color-2: #040511;
  --gradient-color-3: #040511;
  --gradient-color-4: #040511;
  z-index: 0;
}

header {
  display: block;
  position: fixed;
  z-index: 10;
  top: 30px;
  left: 0;
  right: 0;
  width: 100%;
}
header .header-content {
  color: #fff;
  height: 62px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 11px;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
header .header-content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 31px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(20, 30, 53, 0.5);
  backdrop-filter: blur(12px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
header .logo img {
  width: 150px;
}
header .nav {
  gap: 20px;
  display: flex;
}
header .nav a {
  color: #a9a4c0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s linear;
}
header .nav a:hover {
  color: white;
}
header .btn {
  background: white;
  color: black;
  padding: 13px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  height: 650px;
  border-bottom-right-radius: 75px;
  border-bottom-left-radius: 75px;
  overflow: hidden;
  position: relative;
}

.hero-connect {
  padding-top: 120px;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.canvas {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 0;
}

.hero-content {
  padding-top: 70px;
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero-content .container {
  width: 1140px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-content .container h1 {
  color: white;
  font-size: 82px;
  font-weight: 500;
  font-family: Inter, sans-serif;
  margin-bottom: 30px;
  text-align: center;
}
.hero-content .container h1 i {
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.hero-content .container .additional {
  color: #747985;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.4;
}
.hero-content .container a {
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  background: white;
  border-radius: 100px;
  color: #1a202c;
  text-decoration: none;
  margin: 0 auto;
  display: inline-block;
}

footer {
  padding: 50px 0 30px 0;
}
footer .container {
  width: 1140px;
  margin: 0 auto;
}
footer .pre-footer {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
}
footer .pre-footer p {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
}
footer .pre-footer a {
  font-size: 18px;
  color: #a9a4c0;
  text-decoration: none;
  display: block;
  margin-bottom: 30px;
  transition: all 0.3s linear;
}
footer .pre-footer a:hover {
  color: white;
}
footer .bottom-nav {
  justify-content: flex-end;
  gap: 100px;
  display: flex;
}
footer .logo {
  width: 250px;
  margin-bottom: 30px;
}
footer .post-footer {
  padding-top: 20px;
  border-top: 1px solid #2d2934;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
footer .post-footer p {
  color: #5f5c70;
  font-size: 12px;
}
footer .post-footer ul {
  display: flex;
  gap: 10px;
}
footer .post-footer a {
  color: #a9a4c0;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s linear;
}
footer .post-footer a:hover {
  color: white;
}
footer .footer-platforms {
  display: flex;
  gap: 10px;
}
footer .footer-platforms a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(120% 120% at 10% 0%, rgba(125, 77, 255, 0.1803921569), rgba(0, 0, 0, 0) 60%), radial-gradient(140% 120% at 100% 100%, rgba(61, 193, 255, 0.1411764706), rgba(0, 0, 0, 0) 55%), rgba(255, 255, 255, 0.0392156863);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.0392156863), 0 8px 20px rgba(0, 0, 0, 0.3019607843);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
}
footer .footer-platforms a img {
  width: 18px;
  transition: all 0.3s linear;
}
footer .footer-platforms a:hover img {
  opacity: 1;
}
footer .tg-btn {
  background: #141626;
  border-radius: 30px;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  display: flex !important;
}
footer .tg-btn img {
  width: 24px;
}
footer .tg-btn:hover {
  background: #222649;
}

.locations {
  margin-bottom: 100px;
}

.locations .container {
  width: 1140px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: white;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  background: radial-gradient(120% 120% at 10% 0%, rgba(125, 77, 255, 0.2392156863), rgba(0, 0, 0, 0) 60%), radial-gradient(140% 120% at 100% 100%, rgba(61, 193, 255, 0.2), rgba(0, 0, 0, 0) 55%), rgba(255, 255, 255, 0.0392156863);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.0588235294), 0 8px 24px rgba(0, 0, 0, 0.3490196078);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9;
  box-sizing: border-box;
  backdrop-filter: blur(40px);
  transform: translateY(50px);
  cursor: pointer;
  min-height: 530px;
  padding: 50px 550px 50px 50px;
  transition: all 0.5s ease;
}

.locations .container #globe {
  position: absolute;
  bottom: -160px;
  right: -180px;
}

.locations .container h4 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.locations .container p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.locations .container p.description-section {
  font-size: 18px;
  margin-bottom: 20px;
}

.locations .container a {
  background: #1a202c;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  padding: 15px 30px;
  font-size: 17px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s linear;
}
.locations .container a:hover {
  background: white;
  color: black;
}

.locations .container a i {
  margin-left: 5px;
}

.locations .container > span {
  display: block;
  font-size: 11px;
  margin-left: 15px;
}

.locations .container .benefits {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.locations .container .benefits > div {
  padding-top: 20px;
  width: 200px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(221, 221, 221, 0.16);
}

.locations .container .benefits > div:first-child {
  width: 150px;
  border-right: none;
  border-left: none;
}

.locations .container .benefits > div:last-child {
  padding-left: 20px;
  border-right: none;
}

.locations .container .benefits h5 {
  font-size: 32px;
  font-weight: 700;
}

.locations .container .benefits h5 span {
  font-size: 20px;
}

.faq-section {
  padding: 72px 0;
}

.faq-container {
  width: 1000px;
  margin: 0 auto 50px auto;
}

.faq-title {
  font-weight: 800;
  text-align: center;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  margin: 0 0 48px;
}
.faq-title .t-strong {
  color: #e8edf7;
}
.faq-title .t-fade {
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-list {
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  background: transparent;
}
.faq-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 0px 22px 0px;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .q {
  color: #e8edf7;
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 20px);
}
.faq-item .toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}
.faq-item .toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #e8edf7;
  border-bottom: 2px solid #e8edf7;
  transform: rotate(45deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
  top: -5px;
  opacity: 0.9;
}
.faq-item[open] .toggle::before {
  transform: rotate(-135deg);
  top: 5px;
}
.faq-item .answer {
  color: #a7b0c5;
  padding: 0 0px 22px 0px;
  max-width: 820px;
  line-height: 1.55;
  font-size: 16px;
}

.faq-item summary:hover .toggle {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .faq-title {
    margin-bottom: 22px;
  }
  .faq-item summary {
    padding: 18px 14px 18px 16px;
  }
  .faq-item .answer {
    padding: 0 16px 18px 16px;
  }
  .faq-item .toggle {
    width: 32px;
    height: 32px;
  }
}
.promo {
  min-height: 550px;
  background: url(../img/bottom.png) no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.promo h3 {
  font-size: 48px;
  color: white;
  text-align: center;
}
.promo a {
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  background: white;
  border-radius: 100px;
  color: #1a202c;
  text-decoration: none;
  margin: 0 auto;
  display: inline-block;
}

.inner-content {
  padding-top: 150px;
  padding-bottom: 100px;
}
.inner-content .container {
  width: 1140px;
  margin: 0 auto;
}
.inner-content .container h1 {
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
}
.inner-content .container h2 {
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
}
.inner-content .container h3 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.inner-content .container ul {
  padding-left: 20px;
  color: #cfc9e7;
  margin-bottom: 20px;
  font-size: 18px;
}
.inner-content .container ul li {
  margin-bottom: 20px;
  list-style: decimal;
}
.inner-content .container a {
  color: white;
}
.inner-content .container p {
  font-size: 18px;
  color: #a9a4c0;
  line-height: 1.4;
  margin-bottom: 20px;
}

.testimonials {
  padding: 70px 0;
  color: #ffffff;
  font-family: Inter, sans-serif;
}
.testimonials .t-container {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  padding: 0 0;
}
.testimonials .t-eyebrow {
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 8px;
}
.testimonials .t-title {
  text-align: center;
  font-weight: 800;
  font-family: Inter, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  margin-bottom: 40px;
}
.testimonials .t-title .fade {
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonials .marquee {
  width: 100vw;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.testimonials .marquee:not(:last-child) {
  margin-bottom: 16px;
}
.testimonials .marquee .track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.testimonials .t-card {
  width: 320px;
  min-height: 150px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(120% 120% at 10% 0%, rgba(125, 77, 255, 0.1803921569), rgba(0, 0, 0, 0) 60%), radial-gradient(140% 120% at 100% 100%, rgba(61, 193, 255, 0.1411764706), rgba(0, 0, 0, 0) 55%), rgba(255, 255, 255, 0.0392156863);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.0392156863), 0 8px 24px rgba(0, 0, 0, 0.3490196078);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials .t-text {
  color: #a9a4c0;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 14px;
}
.testimonials .t-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonials .t-meta .avatar {
  width: 32px;
  height: 32px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .t-meta strong {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}
.testimonials .t-meta .role {
  font-size: 12px;
  color: #a9a4c0;
}
@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.testimonials .row-1 .track {
  animation: slide-right 48s linear infinite;
}
.testimonials .row-2 .track {
  animation: slide-left 48s linear infinite;
}
.testimonials .marquee:hover .track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .testimonials .row-1 .track, .testimonials .row-2 .track {
    animation: none;
  }
}
@media (max-width: 1240px) {
  .testimonials .t-container {
    width: calc(100% - 40px);
  }
}
@media (max-width: 640px) {
  .testimonials .t-card {
    width: 85vw;
  }
}

.features {
  padding: 70px 0;
  color: #ffffff;
  font-family: Inter, sans-serif;
}

.features .features__wrap {
  width: 1140px;
  margin: 0 auto;
}

.features .features__eyebrow {
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 8px;
}

.features .features__title {
  text-align: center;
  font-weight: 800;
  font-family: Inter, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  margin-bottom: 40px;
}

.features .features__fade {
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features .features__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1.2fr;
  grid-template-rows: auto auto auto auto;
  grid-template-areas: "left-top    center   right-top" "left-bottom center   right-top" "left-bottom center   right-bottom" "banner      banner   banner";
  gap: 16px;
}

.features .features__card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(120% 120% at 10% 0%, rgba(125, 77, 255, 0.18), rgba(0, 0, 0, 0) 60%), radial-gradient(140% 120% at 100% 100%, rgba(61, 193, 255, 0.14), rgba(0, 0, 0, 0) 55%), rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.35);
  padding: 20px;
  overflow: hidden;
}

.features .features__h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
}

.features .features__muted {
  color: #a9a4c0;
  font-size: 14px;
  line-height: 1.55;
}

.features .features__media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.features .features__media img {
  width: 70%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px auto;
}

.features .features__media--banner {
  height: 140px;
  margin-bottom: 14px;
}

.features .features__pill {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #141b2a;
  background: #e6ff3a;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.55), 0 10px 24px rgba(230, 255, 58, 0.2);
}

.features .features__card--left-top {
  grid-area: left-top;
  min-height: 260px;
}

.features .features__card--left-bottom {
  grid-area: left-bottom;
  min-height: 260px;
}

.features .features__card--center {
  grid-area: center;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.features .features__card--right-top {
  grid-area: right-top;
  min-height: 200px;
}

.features .features__card--right-bottom {
  grid-area: right-bottom;
  min-height: 260px;
}

.features .features__card--banner {
  grid-area: banner;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1140px) {
  .features .features__wrap {
    width: calc(100% - 40px);
  }
}
@media (max-width: 900px) {
  .features .features__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left-top    center" "right-top   center" "left-bottom right-bottom" "banner      banner";
  }
  .features .features__card--center {
    min-height: 440px;
  }
}
@media (max-width: 640px) {
  .features .features__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "left-top" "left-bottom" "center" "right-top" "right-bottom" "banner";
  }
  .features .features__card {
    min-height: auto;
  }
}
.tg-media img {
  width: 100px !important;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(120% 120% at 10% 0%, rgba(125, 77, 255, 0.18), rgba(0, 0, 0, 0) 60%), radial-gradient(140% 120% at 100% 100%, rgba(61, 193, 255, 0.14), rgba(0, 0, 0, 0) 55%), rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
}

.features-cards {
  display: flex;
  gap: 3%;
}

.features-left, .features-center, .features-right {
  width: 30%;
}

.loop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.loop-card img {
  width: 100px;
}
.loop-card h4 {
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

.prot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.prot-card img {
  width: 100px;
}
.prot-card h4 {
  background: linear-gradient(90deg, #cfc3f3, #cad5ea, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
}

.tg-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.tg-card img {
  width: 70px;
}
.tg-card h4 {
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
}

/* line 379, ../scss/main.scss */
/* line 382, ../scss/main.scss */
.security .container {
  display: flex;
  justify-content: space-between;
}

/* line 385, ../scss/main.scss */
.security .container h3 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #8967f0, #89aff7, #81b6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* line 389, ../scss/main.scss */
.security .container p {
  font-size: 14px;
  line-height: 1.4;
}

/* line 393, ../scss/main.scss */
.security .container > div {
  width: 50%;
}

/* line 395, ../scss/main.scss */
.security .container > div:first-child {
  padding: 83px 0 65px 0;
}

/* line 399, ../scss/main.scss */
.security .container a {
  margin-top: 20px;
  background: #1a202c;
  display: inline-block;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  padding: 15px 30px;
  font-size: 17px;
}

/* line 408, ../scss/main.scss */
.security .container a i {
  margin-left: 5px;
}

/* line 413, ../scss/main.scss */
.security .tech-list {
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
  overflow: hidden;
  height: 420px;
}

/* line 419, ../scss/main.scss */
.security .tech-list > div {
  width: 150px;
  animation: technologiesSpin linear 40s infinite;
}

/* line 422, ../scss/main.scss */
.security .tech-list > div > div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(120% 120% at 10% 0%, rgba(125, 77, 255, 0.1803921569), rgba(0, 0, 0, 0) 60%), radial-gradient(140% 120% at 100% 100%, rgba(61, 193, 255, 0.1411764706), rgba(0, 0, 0, 0) 55%), rgba(255, 255, 255, 0.0392156863);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.0392156863), 0 8px 24px rgba(0, 0, 0, 0.3490196078);
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  transition: all 0.5s ease;
  height: 150px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/* line 433, ../scss/main.scss */
.security .tech-list > div > div img {
  width: 32px;
}

/* line 436, ../scss/main.scss */
.security .tech-list > div > div h5 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

/* line 441, ../scss/main.scss */
.security .tech-list > div > div p {
  font-size: 12px;
  color: #a9a4c0;
}

/* line 445, ../scss/main.scss */
.security .tech-list > div > div:hover {
  transition: all 0.5s ease;
  box-shadow: 30px 60px 57px 0px rgba(5, 5, 5, 0.19);
}

/* line 450, ../scss/main.scss */
.security .tech-list > div:nth-child(1) {
  margin-top: -10px;
}

/* line 453, ../scss/main.scss */
.security .tech-list > div:nth-child(2) {
  transform: translateY(-350px);
  animation: technologiesSpinBackward linear 40s infinite;
}

/* line 457, ../scss/main.scss */
.security .tech-list > div:last-child {
  margin-top: -30px;
  animation-duration: 40s;
}

/* line 465, ../scss/main.scss */
.effect {
  position: absolute;
  bottom: -91px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 171px;
  z-index: 0;
  opacity: 0.1;
  width: 1200px;
  filter: brightness(1) blur(100px);
}

@keyframes technologiesSpin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-350px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes technologiesSpinBackward {
  0% {
    transform: translateY(-350px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-350px);
  }
}
/* line 550, ../scss/main.scss */
.features .container {
  display: flex;
  justify-content: space-between;
}

/* line 554, ../scss/main.scss */
.features .container > div:first-child {
  width: 300px;
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
}

/* line 560, ../scss/main.scss */
.features .container > div:last-child {
  width: calc(100% - 250px);
  padding-left: 50px;
  position: relative;
}

/* line 561, ../scss/main.scss */
.features .container > div:last-child:after {
  content: "";
  width: 1px;
  background: #dddddd;
  height: calc(100% - 70px);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 574, ../scss/main.scss */
.features .container > div:last-child h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 50px;
  line-height: 1.3;
}

/* line 580, ../scss/main.scss */
.features .container > div:last-child h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* line 585, ../scss/main.scss */
.features .container > div:last-child > div {
  display: flex;
  justify-content: flex-start;
}

/* line 588, ../scss/main.scss */
.features .container > div:last-child > div ul {
  width: 50%;
  padding-right: 50px;
}

/* line 591, ../scss/main.scss */
.features .container > div:last-child > div ul li {
  margin-bottom: 50px;
}

/* line 592, ../scss/main.scss */
.features .container > div:last-child > div ul li i {
  margin-bottom: 22px;
  font-size: 32px;
  display: inline-flex;
  color: #afafaf;
}

/* line 599, ../scss/main.scss */
.features .container > div:last-child > div ul li:last-child {
  margin-bottom: 0;
}

/* line 603, ../scss/main.scss */
.features .container > div:last-child > div ul:first-child {
  padding-right: 50px;
}

/* line 606, ../scss/main.scss */
.features .container > div:last-child > div ul:last-child {
  margin-top: 50px;
  padding-left: 50px;
  padding-right: 25px;
  border-left: 1px solid #dddddd;
}

/* line 612, ../scss/main.scss */
.features .container > div:last-child > div ul p {
  font-size: 14px;
  color: #a9a4c0;
  line-height: 1.4;
}

/* line 621, ../scss/main.scss */
.features .container a {
  font-size: 14px;
  background: white;
  height: 54px;
  color: black;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 20px 30px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.5s ease;
}

/* line 630, ../scss/main.scss */
.features .container a:hover {
  transition: all 0.5s ease;
  box-shadow: 30px 60px 57px 0px rgba(198, 198, 198, 0.19);
}

.security {
  color: white;
}

.security .container, .features .container {
  width: 1140px;
  margin: 0 auto;
}

.guide {
  padding: 48px 0 80px;
}
.guide h1 {
  margin-bottom: 0px !important;
}

.guide__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.guide__help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.guide__title {
  color: #fff;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
  text-align: center;
}

.guide__subtitle {
  color: #a9a4c0;
  text-align: center;
  font-size: 14px;
}

.guide__tabs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.guide__tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #dfe3f5;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.guide__tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.guide__tab.is-active {
  background: #1c1f2f;
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 6px 20px rgba(0, 0, 0, 0.35);
}

.guide__panes {
  margin-top: 24px;
}

.guide__panes {
  margin-top: 24px;
}

.guide__pane {
  display: none;
  grid-template-columns: 280px 1fr;
  gap: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #07091d;
  border-radius: 20px;
  padding: 26px 26px 28px;
  counter-reset: sec;
}

.guide__pane.is-active {
  display: grid;
}

.guide__pane h2 {
  grid-column: 1/-1;
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.guide__pane h3 {
  grid-column: 1/2;
  position: relative;
  color: #fff;
  line-height: 1.25;
  min-height: 44px;
  padding-top: 70px;
  align-items: center;
  display: inline-block;
  font-size: 22px !important;
  font-weight: 700;
  width: 240px;
  margin-bottom: 20px;
}

.guide__pane h3::before {
  counter-increment: sec;
  content: counter(sec);
  position: absolute;
  left: 0;
  top: 0%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0b1020;
  background: linear-gradient(135deg, #daa7f1, #627eea);
}

.guide__pane .guide__list {
  grid-column: 2/-1;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(100% 120% at 0% 0%, rgba(255, 255, 255, 0.06), transparent 60%), rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 8px 22px rgba(0, 0, 0, 0.35);
  color: #a9a4c0;
  line-height: 1.65;
  font-size: 15px;
  margin: 0 0 50px 0 !important;
}

.guide__pane .guide__list > li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  list-style: none !important;
}

.guide__pane .guide__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7d4dff, #3dc1ff);
}

.guide__pane .guide__list ol {
  counter-reset: sub;
  margin: 8px 0 0 12px;
}

.guide__pane .guide__list ol > li {
  counter-increment: sub;
  margin: 6px 0;
  padding-left: 26px;
  position: relative;
  list-style: none !important;
}

.guide__pane .guide__list ol > li::before {
  content: counter(sub) ".";
  position: absolute;
  left: 0;
  color: #dfe3f5;
  font-weight: 800;
}

.guide__pane a {
  color: #fff;
  text-decoration: underline;
}

.guide__pane strong {
  color: #fff;
}

@media (max-width: 980px) {
  .guide__pane {
    grid-template-columns: 1fr;
  }
  .guide__pane h3 {
    grid-column: 1/-1;
    padding-left: 52px;
  }
  .guide__pane .guide__list {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .guide__pane {
    padding: 20px;
    border-radius: 16px;
  }
  .guide__pane h2 {
    font-size: 22px;
  }
  .guide__pane h3 {
    font-size: 16px;
  }
  .guide__pane .guide__list {
    font-size: 14px;
  }
}
/* ========= TABLET DOWN (≤900px) ========= */
@media (max-width: 900px) {
  .container,
  header .header-content,
  footer .container,
  .hero-content .container,
  .features .features__wrap,
  .faq-container {
    width: calc(100% - 40px) !important;
  }
  header {
    top: 20px;
  }
  header .header-content {
    height: 56px;
    padding: 8px 12px 8px 16px;
    border-radius: 24px;
  }
  header .header-content .logo img {
    width: 128px;
  }
  header .header-content .nav {
    gap: 14px;
  }
  header .header-content .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  .hero {
    height: 560px;
    border-bottom-right-radius: 48px;
    border-bottom-left-radius: 48px;
  }
  .hero-content .container h1 {
    font-size: 54px;
    margin-bottom: 22px;
  }
  .hero-content .container .additional {
    max-width: 640px;
  }
  .locations .container {
    min-height: auto;
    padding: 32px 32px 32px 32px;
  }
  .locations .container #globe {
    right: -240px;
    bottom: -220px;
    transform: scale(0.9);
  }
  .features .features__card--center {
    min-height: 440px;
  }
  .security .container {
    gap: 24px;
  }
  .security .tech-list {
    padding-left: 40px;
    height: 360px;
  }
}
/* ========= MOBILE (≤640px) ========= */
@media (max-width: 640px) {
  .container,
  header .header-content,
  footer .container,
  .hero-content .container,
  .features .features__wrap,
  .faq-container {
    width: calc(100% - 32px);
  }
  header {
    top: 16px;
  }
  header .header-content {
    height: 52px;
    padding: 8px 10px 8px 12px;
    gap: 10px;
  }
  header .header-content:before {
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }
  header .logo img {
    width: 112px;
  }
  header .nav {
    display: none;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  header .nav::-webkit-scrollbar {
    display: none;
  }
  header .nav a {
    white-space: nowrap;
    font-size: 13px;
    padding: 6px 0;
  }
  header .btn {
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 20px;
  }
  .inner-content h1 {
    font-size: 20px !important;
  }
  .inner-content .guide__panes h3 {
    padding-top: 10px;
  }
  .inner-content .guide__panes h2 {
    font-size: 20px;
  }
  .hero {
    height: 445px;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
  }
  .hero-content {
    padding-top: 56px;
  }
  .hero-content .container h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .hero-content .container .additional {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .hero-content .container a {
    padding: 14px 18px;
    font-size: 16px;
  }
  .locations {
    margin-bottom: 56px;
  }
  .locations .container {
    transform: none;
    padding: 22px;
    border-radius: 14px;
    min-height: auto;
  }
  .locations .container #globe {
    display: none;
  }
  .locations .container h4 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .locations .container p.description-section {
    font-size: 16px;
  }
  .locations .container .benefits {
    flex-direction: column;
    align-items: stretch;
    margin: 14px 0;
  }
  .locations .container .benefits > div,
  .locations .container .benefits > div:first-child,
  .locations .container .benefits > div:last-child {
    width: 100%;
    border: 1px solid rgba(221, 221, 221, 0.16);
    padding-left: 0;
  }
  .locations .container a {
    padding: 12px 18px;
    font-size: 15px;
  }
  .faq-section {
    padding: 48px 0;
  }
  .faq-container {
    width: calc(100% - 32px);
    margin-bottom: 32px;
  }
  .faq-title {
    margin-bottom: 18px;
  }
  .faq-item summary {
    padding: 16px 0;
  }
  .faq-item .q {
    font-size: 16px;
    line-height: 1.4;
  }
  .faq-item .toggle {
    width: 32px;
    height: 32px;
  }
  .faq-item .answer {
    font-size: 14px;
    padding: 0 0 16px 0;
  }
  .testimonials {
    padding: 48px 0;
  }
  .testimonials .t-title {
    margin-bottom: 24px;
  }
  .testimonials .t-card {
    width: 85vw;
    min-height: auto;
  }
  .testimonials .row-1 .track,
  .testimonials .row-2 .track {
    animation-duration: 36s;
  }
  .features {
    padding: 56px 0;
  }
  .features .features__title {
    margin-bottom: 28px;
  }
  .features .features__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "left-top" "left-bottom" "center" "right-top" "right-bottom" "banner";
  }
  .features .features__card {
    padding: 16px;
    border-radius: 14px;
  }
  .features .features__media img {
    width: 100%;
    margin: 0 0 12px 0;
  }
  .features .features__card--center {
    min-height: auto;
  }
  .features .features__media--banner {
    height: 110px;
  }
  .features, .locations {
    display: none;
  }
  .security .container {
    flex-direction: column;
  }
  .security .container > div {
    width: 100%;
    height: 255px;
  }
  .security .container > div:first-child {
    padding: 32px 0 8px 0;
  }
  .security .container h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .security .container p {
    font-size: 13px;
  }
  .security .container a {
    padding: 12px 16px;
    font-size: 15px;
  }
  .security .tech-list {
    padding-left: 0;
    gap: 12px;
    height: auto;
  }
  .security .tech-list > div {
    width: 33%;
    animation-duration: 28s;
  }
  .security .tech-list > div > div {
    height: auto;
    min-height: 120px;
  }
  .promo {
    min-height: 380px;
    gap: 14px;
    background-size: 180% auto;
  }
  .promo h3 {
    font-size: 20px;
  }
  .promo a {
    padding: 14px 18px;
    font-size: 16px;
  }
  .inner-content {
    padding-top: 110px;
    padding-bottom: 64px;
  }
  .inner-content .container {
    width: calc(100% - 32px);
  }
  .inner-content h1 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .inner-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .inner-content h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .inner-content p {
    font-size: 16px;
  }
  .inner-content ul {
    font-size: 16px;
    padding-left: 18px;
  }
  .features .container {
    flex-direction: column;
  }
  .features .container > div:first-child, .features .container > div:last-child {
    width: 100%;
    padding: 0;
  }
  .features .container > div:last-child:after {
    display: none;
  }
  .features .container > div:last-child h3 {
    margin-bottom: 24px;
  }
  .features .container > div:last-child > div {
    flex-direction: column;
  }
  .features .container > div:last-child > div ul {
    width: 100%;
    padding: 0;
  }
  .features .container > div:last-child > div ul:last-child {
    margin-top: 24px;
    padding-left: 0;
    border-left: none;
  }
  footer {
    padding: 40px 0 24px;
  }
  footer .pre-footer {
    flex-direction: column;
    gap: 10px;
  }
  footer .bottom-nav {
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
  }
  footer .logo {
    width: 200px;
  }
  footer .footer-platforms a {
    width: 36px;
    height: 36px;
  }
  footer .tg-btn {
    padding: 10px 14px;
  }
  footer .post-footer {
    flex-direction: column;
    gap: 10px;
  }
  .guide {
    padding: 36px 0 56px;
  }
  .guide__title {
    font-size: 26px;
  }
  .guide__subtitle {
    font-size: 13px;
  }
  .guide__tabs {
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .guide__tabs::-webkit-scrollbar {
    display: none;
  }
  .guide__tab {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 12px;
  }
  .guide__panes {
    margin-top: 18px;
  }
  .guide__pane {
    grid-template-columns: 1fr;
    gap: 12px 0;
    padding: 18px;
    border-radius: 14px;
  }
  .guide__pane h2 {
    font-size: 22px;
    margin-bottom: 2px;
  }
  .guide__pane h3 {
    grid-column: 1/-1;
    width: auto;
    min-height: 40px;
    font-size: 18px !important;
    padding-top: 56px;
    margin-bottom: 12px;
  }
  .guide__pane h3::before {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .guide__pane .guide__list {
    grid-column: 1/-1;
    font-size: 14px;
    padding: 14px;
    margin: 0 0 28px 0 !important;
  }
  .testimonials .marquee {
    mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
}

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