@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_18pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_18pt-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_28pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/Work_Sans/WorkSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/Work_Sans/WorkSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/Space Grotesk/SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/Space Grotesk/SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/Space Grotesk/SpaceGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button {
  all: unset;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.highlight {
  color: #09a9ff;
  font-weight: 700;
}

body {
  font-size: 16px;
  font-family: "Space Grotesk", sans-serif;
  background: rgb(0, 0, 20);
  color: #ffffff;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.video-bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.site-wrap {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(0, 0, 20, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.topbar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.topbar__logo {
  height: 34px;
  width: auto;
}

@media (max-width: 768px) {
  .topbar__logo {
    height: 28px;
  }
}
.topbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.topbar__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.topbar__link--active {
  color: #09a9ff;
}

.topbar__lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar__lang-option {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}

a.topbar__lang-option:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.topbar__lang-option--active {
  color: #09a9ff;
}

.topbar__lang-divider {
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
  user-select: none;
}

.topbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.topbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 768px) {
  .topbar__toggle {
    display: flex;
  }
  .topbar__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 8, 14, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
  }
  .topbar__nav--open {
    display: flex;
  }
  .topbar__link {
    padding: 12px 24px;
    border-radius: 0;
    width: 100%;
  }
  .topbar__lang-switcher {
    margin: 8px 24px;
    justify-content: center;
    border: none;
  }
}
.home-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 64px 0 48px;
  text-align: center;
  padding: 350px 0;
}

.hero__tagline {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #09a9ff;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(9, 169, 255, 0.25);
  border-radius: 20px;
  background: rgba(9, 169, 255, 0.06);
  font-size: 1rem;
}

.hero__title {
  font-size: 5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__title-accent {
  color: #09a9ff;
}

.hero__desc {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0;
  }
  .hero-mt {
    margin-top: 120px;
  }
}
@media (max-width: 500px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__desc {
    font-size: 1rem;
  }
  .hero__tagline {
    font-size: 0.8rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 2.2rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.4s ease;
}

.btn:hover {
  color: #ffffff;
  border-color: #0f172a;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(49, 118, 255, 0.25), rgba(64, 128, 255, 0.45), rgba(49, 118, 255, 0.25), transparent);
  border-radius: 999px;
  transition: left 0.75s cubic-bezier(0.2, 0.8, 0.4, 1);
  pointer-events: none;
}

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

.btn:hover {
  box-shadow: 0 0 20px rgba(49, 118, 255, 0.45), 0 0 40px rgba(49, 118, 255, 0.25);
}

.btn--primary {
  background: #09a9ff;
  color: #000000;
}

.btn--primary:hover {
  background: #24b5ff;
  box-shadow: 0 4px 20px rgba(9, 169, 255, 0.35);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 48px 0;
}

.pillar {
  padding: 48px 0;
  margin-top: 100px;
}

.pillar__header {
  margin-bottom: 32px;
}

.pillar__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #3175ff;
  margin-bottom: 8px;
}

.pillar__title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.pillar__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.6;
}

.pillar__services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .pillar__services {
    grid-template-columns: 1fr;
  }
}
.svc-card {
  background: #0f172a;
  border: 1px solid rgba(49, 118, 255, 0.3);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 118, 255, 0.6);
  box-shadow: 0 20px 50px rgba(49, 118, 255, 0.25), 0 0 30px rgba(49, 118, 255, 0.15);
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
  z-index: -1;
}

.svc-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1;
}

.svc-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.svc-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-card__list li {
  position: relative;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  padding-left: 16px;
  margin-bottom: 4px;
}

.svc-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3175ff;
}

.pillar__cta {
  padding-top: 8px;
}

.pillar-mt {
  margin-top: 150px;
}

@media (max-width: 500px) {
  .pillar {
    margin-top: 60px;
    padding: 0;
  }
  .pillar:first-of-type {
    margin-top: 88px;
  }
  .pillar__title {
    font-size: 2rem;
  }
  .pillar__cta {
    text-align: center;
  }
  .pillar:first-child {
    margin-top: 88px;
  }
}
.trust {
  padding: 48px 0;
  text-align: center;
}

.trust__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}

.trust__item {
  background: #0f172a;
  border: 1px solid rgba(49, 118, 255, 0.3);
  border-radius: 10px;
  padding: 24px;
}

.trust__item-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1;
}

.trust__item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.trust__item-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

@media (max-width: 500px) {
  .trust__title {
    font-size: 1.5rem;
  }
}
.cert {
  margin-top: 32px;
  background: #0f172a;
  border: 1px solid rgba(49, 118, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
}

.cert__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cert__unifi-logo {
  height: 14px;
  width: auto;
  opacity: 0.85;
}

.cert__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
}

.cert__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 640px;
}

.cert__desc strong {
  color: #ffffff;
  font-weight: 600;
}

.cert__badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cert__badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cert__badge img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.cert__badge-info {
  display: flex;
  flex-direction: column;
}

.cert__badge-name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.cert__badge-full {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

@media (max-width: 480px) {
  .cert__badges {
    flex-direction: column;
    gap: 16px;
  }
}
.cta-section {
  padding: 48px 0;
  text-align: center;
}

.cta-section__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-section__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bar {
  margin-top: 32px;
  padding: 32px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bar a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-bar a:hover {
  color: #09a9ff;
}

.footer-bar__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-bar__nav a {
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-bar__contact {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-bar__contact a {
  color: #09a9ff;
}

.footer-bar__sep {
  color: rgba(255, 255, 255, 0.25);
}

.footer-bar__copy {
  margin: 0;
}

.contact-page {
  margin-top: 12rem;
  padding: 32px 0;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contact-page__block-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-page__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-page__card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: rgba(15, 20, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-page__card:hover {
  border-color: rgba(9, 169, 255, 0.4);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.contact-page__card-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1;
}

.contact-page__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-page__card-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #09a9ff;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal--open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #0d1220 0%, #080c14 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}

.modal__close:hover {
  color: #ffffff;
}

.modal__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.modal__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 24px;
}

.modal__direct {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.modal__direct-item {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  background: rgba(15, 20, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.modal__direct-item:hover {
  border-color: rgba(9, 169, 255, 0.4);
}

.modal__direct-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.modal__direct-value {
  font-size: 1rem;
  font-weight: 600;
  color: #09a9ff;
}

.modal__separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}

.modal__separator::before,
.modal__separator::after {
  content: "";
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__input {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9375rem;
  color: #ffffff;
  background: rgba(15, 20, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.modal__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.modal__input:focus {
  border-color: #09a9ff;
}

.modal__textarea {
  resize: vertical;
  min-height: 80px;
}

.modal__submit {
  align-self: flex-start;
  border: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  tab-index: -1;
}

.form-feedback {
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: 0;
  transition: all 0.2s;
}

.form-feedback:empty {
  display: none;
}

.form-feedback--success {
  color: #2fe676;
  padding: 8px 16px;
  background: rgba(47, 230, 118, 0.08);
  border: 1px solid rgba(47, 230, 118, 0.2);
  border-radius: 8px;
}

.form-feedback--error {
  color: #ff5c5c;
  padding: 8px 16px;
  background: rgba(255, 92, 92, 0.08);
  border: 1px solid rgba(255, 92, 92, 0.2);
  border-radius: 8px;
}

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