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

:root {
  --c-dark: #060e1a;
  --c-dark2: #0a1628;
  --c-dark3: #0d1e38;
  --c-navy: #0f2a50;
  --c-blue: #1a5fde;
  --c-blue-mid: #2478f5;
  --c-blue-light: #4a9aff;
  --c-cyan: #00e5c8;
  --c-cyan-soft: #00c9b1;
  --c-cyan-glow: rgba(0, 229, 200, 0.15);
  --c-border: rgba(0, 229, 200, 0.12);
  --c-border-b: rgba(26, 95, 222, 0.22);
  --c-text: rgba(255, 255, 255, 0.88);
  --c-muted: rgba(255, 255, 255, 0.48);
  --c-muted2: rgba(255, 255, 255, 0.28);
  --nav-h: 64px;
  --radius: 10px;
  --radius-lg: 14px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--c-dark);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--c-dark2);
}

::-webkit-scrollbar-thumb {
  background: var(--c-blue);
  border-radius: 3px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: #0a1628;
  border: 0.7px solid rgba(23, 64, 92, .7);
  display: flex;
  align-items: center
}

.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: 64px;
  padding: 0 46px;
  display: flex;
  align-items: center;
  gap: 48px
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 296px;
  height: 64px;
  text-decoration: none;
  overflow: visible
}

.nav__logo-img {
  width: 296px;
  height: auto;
  display: block;
  object-fit: contain
}

.nav__logo-text {
  display: none !important
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 42px;
  flex: 1;
  height: 64px
}

.nav__link {
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
  color: #7d8aa0;
  padding: 22px 0;
  border-radius: 0;
  transition: color .18s ease;
  white-space: nowrap;
  position: relative
}

.nav__link:hover,
.nav__link.active {
  color: #00e5c8;
  background: transparent
}

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 6px
}

.nav__link--dropdown::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform .18s ease
}

.nav__link-wrap:hover .nav__link--dropdown::after {
  transform: rotate(180deg)
}

.nav__link-wrap {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center
}

.nav__link-wrap::after {
  content: '';
  position: absolute;
  left: -18px;
  right: -18px;
  top: 48px;
  height: 22px
}

.nav__dropdown {
  position: absolute;
  top: 64px;
  left: -18px;
  background: #0a1628;
  border: 0.7px solid rgba(23, 64, 92, .7);
  border-radius: 14px;
  padding: 10px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(.98);
  transform-origin: top left;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  pointer-events: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42)
}

.nav__link-wrap:hover .nav__dropdown,
.nav__link-wrap:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto
}

.nav__dropdown a {
  display: block;
  font-size: 13px;
  color: #7d8aa0;
  padding: 10px 12px;
  border-radius: 9px;
  transition: color .18s ease, background .18s ease
}

.nav__dropdown a:hover {
  color: #00e5c8;
  background: rgba(0, 229, 200, .09)
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0
}

.nav__phone {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  color: #7d8aa0;
  white-space: nowrap
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all .25s ease
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav__burger.open span:nth-child(2) {
  opacity: 0
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #0a1628;
  border-bottom: 0.7px solid rgba(23, 64, 92, .7);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px
}

.nav__mobile.open {
  display: flex
}

.nav__mobile a {
  font-size: 14px;
  color: #7d8aa0;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all .18s ease;
  display: block
}

.nav__mobile a:hover {
  color: #00e5c8;
  background: rgba(0, 229, 200, .09)
}

.nav__mobile .nav__mobile-phone {
  font-size: 16px;
  font-weight: 600;
  color: #00e5c8;
  padding: 12px;
  margin-top: 8px
}

.nav__mobile .nav-cta-btn {
  margin-top: 8px;
  text-align: center;
  background: #1a5fde;
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px
}

@media(max-width:1180px) {
  .nav__inner {
    padding: 0 24px;
    gap: 22px
  }

  .nav__links {
    gap: 22px
  }

  .nav__logo {
    width: 240px
  }

  .nav__logo-img {
    width: 240px
  }

  .nav__phone {
    display: none
  }
}

@media(max-width:900px) {

  .nav__links,
  .nav__right {
    display: none
  }

  .nav__burger {
    display: flex;
    margin-left: auto
  }

  .nav__logo {
    width: 230px
  }

  .nav__logo-img {
    width: 230px
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--c-blue);
  color: #fff;
}

.btn--primary:hover {
  background: var(--c-blue-mid);
  transform: translateY(-1px);
}

.btn--cyan {
  background: var(--c-cyan);
  color: var(--c-dark);
  font-weight: 600;
}

.btn--cyan:hover {
  background: #00f2d5;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--c-cyan);
  border: 0.5px solid rgba(0, 229, 200, 0.35);
}

.btn--outline:hover {
  background: var(--c-cyan-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--c-muted);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.btn--sm {
  font-size: 12px;
  padding: 7px 15px;
}

.btn--lg {
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--sm {
  padding: 48px 0;
}

.section--lg {
  padding: 96px 0;
}

.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
  margin-bottom: 8px;
}

.section__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section__title .accent {
  color: var(--c-cyan);
}

.section__title .accent-blue {
  color: var(--c-blue-light);
}

.section__sub {
  font-size: 15px;
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.65;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.page-hero {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 56px;
  background: var(--c-dark2);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 60%, rgba(26, 95, 222, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 80% 20%, rgba(0, 229, 200, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 200, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 200, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-muted2);
  margin-bottom: 16px;
}

.page-hero__breadcrumb a {
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
  color: var(--c-cyan);
}

.page-hero__breadcrumb span {
  color: var(--c-muted2);
}

.page-hero__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 700px;
}

.page-hero__desc {
  font-size: 16px;
  color: var(--c-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.trust-bar {
  background: var(--c-dark3);
  border-top: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
  padding: 0;
  height: 46px;
  overflow: hidden;
  position: relative;
}

.trust-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  min-width: max-content;
  height: 46px;
  animation: marquee 42s linear infinite;
  will-change: transform;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  padding: 0 28px;
  height: 46px;
  flex: 0 0 auto;
}

.trust-bar__item i {
  font-size: 14px;
  color: var(--c-cyan);
}

.trust-bar__sep {
  width: 1px;
  height: 24px;
  margin: 0;
  background: var(--c-border);
  flex: 0 0 auto;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--marquee-shift, -50%), 0, 0);
  }
}

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 12% 55%, rgba(26, 95, 222, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 78% 25%, rgba(0, 229, 200, 0.09) 0%, transparent 55%);
  pointer-events: none;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 200, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 200, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: float-p linear infinite;
  opacity: 0;
}

@keyframes float-p {
  0% {
    transform: translateY(100%) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.25;
  }

  100% {
    transform: translateY(-200px) scale(1.4);
    opacity: 0;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 229, 200, 0.1);
  border: 0.5px solid rgba(0, 229, 200, 0.28);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  color: var(--c-cyan);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-cyan);
  animation: pulse-d 2s infinite;
}

@keyframes pulse-d {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.6);
  }
}

.hero__title {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero__title .cyan {
  color: var(--c-cyan);
}

.hero__title .blue {
  color: var(--c-blue-light);
}

.hero__desc {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.stat-card {
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(0, 229, 200, 0.16);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}

.stat-card__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-cyan);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-card__label {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  background: var(--c-dark3);
  border: 0.5px solid var(--c-border-b);
  border-radius: var(--radius-lg);
  padding: 22px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card:hover {
  border-color: rgba(0, 229, 200, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.ic-cyan {
  background: rgba(0, 229, 200, 0.12);
  color: var(--c-cyan);
}

.ic-blue {
  background: rgba(26, 95, 222, 0.18);
  color: var(--c-blue-light);
}

.service-card__title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.55;
}

.service-card__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 14px;
  color: var(--c-cyan);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.about-quote {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  padding-left: 16px;
  border-left: 2.5px solid var(--c-cyan);
  margin-bottom: 18px;
}

.about-text {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.about-feature__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-cyan);
  flex-shrink: 0;
  margin-top: 6px;
}

.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stats-panel__item {
  background: var(--c-dark2);
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  text-align: center;
}

.stats-panel__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-panel__label {
  font-size: 11px;
  color: var(--c-muted);
  line-height: 1.4;
}

.cert-block {
  background: var(--c-dark3);
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  grid-column: 1 / -1;
}

.cert-block__icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 229, 200, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--c-cyan);
  flex-shrink: 0;
}

.cert-block__text {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.5;
}

.cert-block__text strong {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin-bottom: 3px;
}


.process-steps {
  display: flex;
  gap: 0;
  counter-reset: step;
  margin-top: 40px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.process-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.process-step__num:hover {
  background: transparent;
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  transform: scale(1.1);
}

.process-step__line {
  position: absolute;
  top: 22px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: var(--c-border-b);
  z-index: 1;
}

.process-step:last-child .process-step__line {
  display: none;
}

.process-step__title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
}

.process-step__desc {
  font-size: 11px;
  color: var(--c-muted);
  line-height: 1.5;
}


.cta-section {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26, 95, 222, 0.14) 0%, rgba(0, 229, 200, 0.05) 50%, transparent 75%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26, 95, 222, 0.14);
  border: 0.5px solid rgba(26, 95, 222, 0.28);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  color: var(--c-blue-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.cta-title .accent {
  color: var(--c-cyan);
}

.cta-sub {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
  transition: border-color var(--transition);
  font-family: inherit;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-input:focus {
  border-color: rgba(0, 229, 200, 0.38);
}

.form-input.full {
  grid-column: 1 / -1;
}

.form-select {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  cursor: pointer;
}

.form-select option {
  background: var(--c-dark2);
  color: var(--c-text);
}

.form-submit {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, var(--c-blue), var(--c-cyan-soft));
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.form-submit:active {
  transform: scale(0.98);
}

.form-note {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--c-muted2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-note a {
  color: var(--c-cyan);
}

.cta-discount {
  font-size: 11px;
  color: var(--c-cyan);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footer {
  background: var(--c-dark2);
  border-top: 0.5px solid var(--c-border);
  padding: 56px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer__logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.footer__logo-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer__logo-text span {
  color: var(--c-cyan);
}

.footer__desc {
  font-size: 12px;
  color: var(--c-muted2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 7px;
}

.footer__contact i {
  font-size: 14px;
  color: var(--c-cyan);
}

.footer__col-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 14px;
}

.footer__link {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 9px;
  transition: color var(--transition);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--c-cyan);
}

.footer__cta-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__cta-btn {
  font-size: 11px;
  font-weight: 600;
  background: rgba(26, 95, 222, 0.14);
  color: var(--c-blue-light);
  border: 0.5px solid rgba(26, 95, 222, 0.25);
  border-radius: 7px;
  padding: 9px 14px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  font-family: inherit;
  text-decoration: none;
  display: block;
}

.footer__cta-btn:hover {
  background: rgba(26, 95, 222, 0.26);
  color: var(--c-cyan);
}

.footer__bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

.footer__bottom-links {
  display: flex;
  gap: 16px;
}

.footer__bottom-link {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__bottom-link:hover {
  color: rgba(255, 255, 255, 0.55);
}


.info-card {
  background: var(--c-dark2);
  border: 0.5px solid var(--c-border-b);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.info-card--cyan {
  border-color: rgba(0, 229, 200, 0.2);
}

.highlight-block {
  background: rgba(0, 229, 200, 0.06);
  border: 0.5px solid rgba(0, 229, 200, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 16px 0;
}

.highlight-block i {
  color: var(--c-cyan);
  margin-right: 6px;
}

.text-body {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.text-body strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.content-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 28px;
}

.content-title:first-child {
  margin-top: 0;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.list-check li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 229, 200, 0.12);
  border: 1.5px solid var(--c-cyan);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5L9.5 3.5' stroke='%2300e5c8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.service-page {
  padding-top: var(--nav-h);
}

.service-page__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0 80px;
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.sidebar__title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted2);
  margin-bottom: 12px;
  padding: 0 12px;
}

.sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--c-muted);
  padding: 9px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
  margin-bottom: 2px;
}

.sidebar__link:hover {
  color: var(--c-cyan);
  background: var(--c-cyan-glow);
}

.sidebar__link.active {
  color: var(--c-cyan);
  background: var(--c-cyan-glow);
}

.sidebar__link i {
  font-size: 12px;
  opacity: 0.5;
}

.sidebar__cta {
  margin-top: 20px;
  background: var(--c-blue);
  color: #fff;
  display: block;
  padding: 12px 16px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.4;
}

.sidebar__cta:hover {
  background: var(--c-blue-mid);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.contact-info-block {
  background: var(--c-dark2);
  border: 0.5px solid var(--c-border-b);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row__label {
  color: var(--c-muted2);
}

.contact-row__val {
  color: rgba(255, 255, 255, 0.85);
}

.branch-card {
  background: var(--c-dark3);
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 16px;
}

.branch-card__city {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-cyan);
  margin-bottom: 6px;
}

.branch-card__info {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

.vacancy-card {
  background: var(--c-dark2);
  border: 0.5px solid var(--c-border-b);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.vacancy-card:hover {
  border-color: rgba(0, 229, 200, 0.2);
}

.vacancy-card__title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.vacancy-card__meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--c-muted2);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.vacancy-card__badge {
  display: inline-flex;
  background: rgba(0, 229, 200, 0.1);
  color: var(--c-cyan);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 0.5px solid rgba(0, 229, 200, 0.2);
}

.vacancy-section__title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin: 14px 0 8px;
}

.course-card {
  background: var(--c-dark2);
  border: 0.5px solid var(--c-border-b);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 14px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.course-card:hover {
  border-color: rgba(0, 229, 200, 0.2);
}

.course-card__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 95, 222, 0.2);
  border: 1px solid rgba(26, 95, 222, 0.35);
  color: var(--c-blue-light);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.course-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.course-card__desc {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.55;
}

.course-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  background: var(--c-dark3);
  border: 0.5px solid var(--c-border-b);
  color: var(--c-muted);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
}


.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.anim.vis {
  opacity: 1;
  transform: translateY(0);
}

.anim-d1 {
  transition-delay: 0.07s;
}

.anim-d2 {
  transition-delay: 0.14s;
}

.anim-d3 {
  transition-delay: 0.21s;
}

.anim-d4 {
  transition-delay: 0.28s;
}

.anim-d5 {
  transition-delay: 0.35s;
}

.anim-d6 {
  transition-delay: 0.42s;
}


@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1;
    min-width: 140px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-page__layout {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 58px;
  }

  .nav__links,
  .nav__right .nav__phone {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__right .btn {
    display: none;
  }

  .hero__inner {
    padding: 32px 0;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__desc {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }

  .form-input.full,
  .form-select,
  .form-submit,
  .form-note {
    grid-column: 1;
  }

  .service-page__layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 28px;
  }

  .process-step {
    width: calc(50% - 14px);
  }

  .process-step__line {
    display: none;
  }

  .page-hero {
    padding-top: calc(var(--nav-h) + 32px);
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero__buttons {
    flex-direction: column;
  }
}

.map-placeholder {
  min-height: 260px;
  border-radius: var(--radius-lg);
  border: 0.5px dashed rgba(0, 229, 200, 0.28);
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0, 229, 200, 0.09), transparent 45%),
    radial-gradient(ellipse at 70% 70%, rgba(26, 95, 222, 0.12), transparent 50%),
    var(--c-dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--c-muted);
  text-align: center;
  padding: 24px;
}

.map-placeholder i {
  font-size: 42px;
  color: var(--c-cyan);
}

.article-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.article-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--c-border-b);
  background: var(--c-dark3);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 200, 0.24);
  background: rgba(13, 30, 56, 0.82);
}

.article-card span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 14px;
}

.article-card small {
  color: var(--c-cyan);
  font-size: 11px;
  white-space: nowrap;
}

.docs-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.docs-list>div {
  padding: 14px 16px;
  background: var(--c-dark3);
  border: 0.5px solid var(--c-border-b);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

.docs-list strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

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

@media (max-width: 640px) {
  .article-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-card small {
    white-space: normal;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .anim {
    opacity: 1;
    transform: none;
  }
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px
}

.leader-card {
  background: var(--c-dark2);
  border: .5px solid var(--c-border-b);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 20px;
  align-items: center
}

.leader-card__photo {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0, 229, 200, .22)
}

.leader-card__name {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px
}

.leader-card__role {
  font-size: 13px;
  color: var(--c-cyan);
  line-height: 1.45;
  margin-bottom: 8px
}

.leader-card__addr {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.55
}

@media(max-width:700px) {
  .leaders-grid {
    grid-template-columns: 1fr
  }

  .leader-card {
    align-items: flex-start
  }

  .leader-card__photo {
    width: 96px;
    height: 96px
  }
}

.footer__logo-text {
  display: none !important
}

.footer__logo {
  width: 250px;
  height: auto;
  display: block
}

.footer__logo img {
  display: block
}

.about-feature__dot,
.feature-dot {
  background: var(--c-cyan) !important
}



.footer__logo-text {
  display: none !important
}

.footer__logo {
  width: 250px;
  height: auto;
  display: block
}

.footer__logo img {
  display: block
}

.about-feature__dot,
.feature-dot {
  background: var(--c-cyan) !important
}


.footer__contact svg,
.footer__cta-btn svg,
.service-card__icon svg,
.cert-block__icon svg,
.highlight-block svg,
.branch-card__city svg,
.vacancy-card svg,
.course-card svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  display: inline-block !important;
  vertical-align: -3px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.footer__contact svg circle,
.footer__cta-btn svg circle,
.service-card__icon svg circle,
.cert-block__icon svg circle,
.highlight-block svg circle,
.branch-card__city svg circle,
.vacancy-card svg circle,
.course-card svg circle {
  fill: none !important;
  stroke: currentColor !important;
}

.footer__contact {
  gap: 8px !important;
  align-items: flex-start !important;
}

.footer__contact svg {
  color: var(--c-cyan) !important;
  margin-top: 1px !important;
}

.footer__logo {
  width: 260px !important;
  height: auto !important;
  margin-bottom: 16px !important;
}

.footer__logo img {
  width: 260px !important;
  height: auto !important;
  object-fit: contain !important;
}


.mini-icon {
  display: none;
}


.sidebar__link svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  opacity: 0.45;
  stroke: currentColor;
  fill: none;
  transition: opacity 0.2s;
}

.sidebar__link:hover svg,
.sidebar__link.active svg {
  opacity: 1;
  color: var(--c-cyan);
}


.trust-bar__item svg {
  flex-shrink: 0;
  color: var(--c-cyan);
  opacity: 0.7;
}



.highlight-block.anim,
.highlight-block.anim.vis {
  max-width: 100%;
  box-sizing: border-box;
}

.section>.highlight-block,
.section>.highlight-block.anim {
  width: min(100% - 48px, 1280px);
  margin-left: auto !important;
  margin-right: auto !important;
}

.service-page main>.highlight-block {
  width: 100%;
}

.map-placeholder {
  min-height: 320px;
  background: linear-gradient(135deg, rgba(26, 95, 222, .12), rgba(0, 229, 200, .06));
  border: 1px solid rgba(0, 229, 200, .18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: saturate(.75) invert(.9) hue-rotate(175deg) brightness(.9);
}





.service-card__icon svg,
.footer__contact svg,
.footer__cta-btn svg,
.highlight-block svg,
.branch-card__city svg,
.vacancy-card svg,
.course-card svg,
.cert-block__icon svg,
.cta-badge svg,
.cta-discount svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.service-card__icon {
  color: var(--c-cyan);
}

.ic-blue {
  color: var(--c-blue-light) !important;
}

.ic-cyan {
  color: var(--c-cyan) !important;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  color: var(--c-cyan);
}

.footer__cta-btn svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.highlight-block svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.branch-card__city svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.cert-block__icon svg {
  width: 28px;
  height: 28px;
}

.cta-badge svg,
.cta-discount svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.vacancy-card svg,
.course-card svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.trust-bar__item svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--c-cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__icon svg circle,
.footer__contact svg circle,
.footer__cta-btn svg circle,
.highlight-block svg circle,
.branch-card__city svg circle,
.cert-block__icon svg circle,