@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #111111;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
  color: #0A2B5C;
}

.section-text {
  max-width: 720px;
  color: #334155;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #1D4ED8;
  color: #fff;
}
.btn-primary:hover {
  background: rgb(22.9632653061, 61.7632653061, 171.0367346939);
}

.btn-outline {
  border: 2px solid #1D4ED8;
  color: #1D4ED8;
}
.btn-outline:hover {
  background: #1D4ED8;
  color: #fff;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease;
  transform: none;
  filter: none;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
}
.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}
.site-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1;
  white-space: nowrap;
  color: #0A2B5C;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-header .logo span {
  color: #1D4ED8;
}
.site-header .logo:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.site-header .logo:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.18);
  outline-offset: 6px;
  border-radius: 12px;
}
.site-header .main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  font-weight: 650;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: #0F172A;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header .main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #1D4ED8, #F59E0B);
  transition: transform 0.25s ease;
}
.site-header .main-nav a:hover {
  color: #1D4ED8;
}
.site-header .main-nav a:hover::after {
  transform: scaleX(1);
}
.site-header .main-nav a:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.18);
  outline-offset: 8px;
  border-radius: 12px;
}
.site-header .burger {
  width: 42px;
  height: 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
  z-index: 999;
}
.site-header .burger span {
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background: #0F172A;
  transform-origin: left center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.site-header .burger:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.18);
  outline-offset: 6px;
  border-radius: 12px;
}
.site-header .burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 1px);
}
.site-header .burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.site-header .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -1px);
}
.site-header .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  margin: 0;
  border-radius: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 55%), linear-gradient(135deg, #081c3a, #123d8a);
  backdrop-filter: blur(18px);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.25s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: calc(86px + env(safe-area-inset-top));
  padding-right: 18px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom));
  padding-left: 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-header .mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.site-header .mobile-menu .mobile-close {
  position: absolute;
  top: calc(14px + env(safe-area-inset-top));
  right: calc(14px + env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.site-header .mobile-menu .mobile-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.16);
}
.site-header .mobile-menu .mobile-close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 6px;
}
.site-header .mobile-menu .mobile-nav {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.site-header .mobile-menu .mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site-header .mobile-menu .mobile-nav li {
  width: 100%;
}
.site-header .mobile-menu .mobile-nav a {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 12px 16px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.site-header .mobile-menu .mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #F59E0B;
  transform: translateY(-1px);
}
.site-header .mobile-menu .mobile-nav a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 6px;
}
.site-header .mobile-menu .mobile-nav .divider {
  width: 170px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 18px auto 6px;
}
.site-header .mobile-menu .mobile-nav li {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-header .mobile-menu.active .mobile-nav li {
  opacity: 1;
  transform: translateY(0);
}
.site-header .mobile-menu.active .mobile-nav li:nth-child(1) {
  transition-delay: 0.06s;
}
.site-header .mobile-menu.active .mobile-nav li:nth-child(2) {
  transition-delay: 0.09s;
}
.site-header .mobile-menu.active .mobile-nav li:nth-child(3) {
  transition-delay: 0.12s;
}
.site-header .mobile-menu.active .mobile-nav li:nth-child(4) {
  transition-delay: 0.15s;
}
.site-header .mobile-menu.active .mobile-nav li:nth-child(5) {
  transition-delay: 0.18s;
}
.site-header .mobile-menu.active .mobile-nav li:nth-child(6) {
  transition-delay: 0.21s;
}
.site-header .mobile-menu.active .mobile-nav li:nth-child(7) {
  transition-delay: 0.24s;
}
.site-header .mobile-menu.active .mobile-nav li:nth-child(8) {
  transition-delay: 0.27s;
}
@media (max-width: 992px) {
  .site-header .main-nav {
    display: none;
  }
  .site-header .burger {
    display: flex;
  }
  .site-header .header__inner {
    min-height: 74px;
  }
  .site-header .logo {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .site-header .mobile-menu {
    padding-right: 14px;
    padding-left: 14px;
  }
  .site-header .mobile-menu .mobile-nav a {
    font-size: 22px;
    padding: 11px 14px;
  }
}
@media (max-height: 620px) {
  .site-header .mobile-menu {
    padding-top: calc(76px + env(safe-area-inset-top));
  }
  .site-header .mobile-menu .mobile-nav a {
    font-size: 22px;
    padding: 10px 14px;
  }
  .site-header .mobile-menu .mobile-nav ul {
    gap: 12px;
  }
}

.page {
  overflow: hidden;
}

.section-head {
  margin-bottom: 42px;
}
.section-head.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-head.section-head--row .section-head__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .section-head.section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-head .section-head__title {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #0A2B5C;
}
@media (max-width: 992px) {
  .section-head .section-head__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .section-head .section-head__title {
    font-size: 32px;
  }
}
.section-head .section-head__text {
  max-width: 760px;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .section-head .section-head__text {
    font-size: 15px;
  }
}

.btn {
  position: relative;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn.btn-primary {
  background: linear-gradient(135deg, rgb(29, 78, 216), rgb(10, 43, 92));
  color: #fff;
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.25);
}
.btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(29, 78, 216, 0.32);
}
.btn.btn-primary:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 3px;
}
.btn.btn-outline {
  border: 2px solid rgba(29, 78, 216, 0.35);
  color: #1D4ED8;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}
.btn.btn-outline:hover {
  border-color: rgba(29, 78, 216, 0.7);
  background: rgba(29, 78, 216, 0.08);
  transform: translateY(-1px);
}
.btn.btn-outline:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}
.site-header .header__inner .logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #0A2B5C;
  display: inline-flex;
  align-items: center;
}
.site-header .header__inner .logo span {
  color: #1D4ED8;
}
.site-header .header__inner .logo:hover {
  opacity: 0.9;
}
.site-header .header__inner .logo:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .site-header .header__inner .logo {
    font-size: 22px;
  }
}
.site-header .header__inner .main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-header .header__inner .main-nav ul li a {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #0F172A;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.site-header .header__inner .main-nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1D4ED8, #F59E0B);
  transition: width 0.28s ease;
}
.site-header .header__inner .main-nav ul li a:hover {
  color: #1D4ED8;
}
.site-header .header__inner .main-nav ul li a:hover::before {
  width: 100%;
}
.site-header .header__inner .main-nav ul li a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}
.site-header .header__inner .burger {
  width: 40px;
  height: 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.site-header .header__inner .burger span {
  width: 100%;
  height: 3px;
  background: #0F172A;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.site-header .header__inner .burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.site-header .header__inner .burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.site-header .header__inner .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.site-header .mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 45%), radial-gradient(circle at 82% 75%, rgba(245, 158, 11, 0.12), transparent 42%), linear-gradient(135deg, #081c3a, #123d8a);
  backdrop-filter: blur(20px);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.35s ease;
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.site-header .mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.site-header .mobile-menu .mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header .mobile-menu .mobile-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.site-header .mobile-menu .mobile-close:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
  border-radius: 10px;
}
.site-header .mobile-menu .mobile-nav {
  width: 100%;
  max-width: 520px;
  padding: 0 22px;
}
.site-header .mobile-menu .mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.site-header .mobile-menu .mobile-nav ul li.divider {
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  margin: 18px 0;
}
.site-header .mobile-menu .mobile-nav ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.7px;
  color: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.site-header .mobile-menu .mobile-nav ul li a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
  color: #F59E0B;
}
.site-header .mobile-menu .mobile-nav ul li a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
}
@media (max-width: 480px) {
  .site-header .mobile-menu .mobile-nav ul li a {
    font-size: 22px;
    padding: 10px 14px;
  }
}
@media (max-width: 992px) {
  .site-header .header__inner .main-nav {
    display: none;
  }
  .site-header .header__inner .burger {
    display: flex;
  }
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 110px 0 90px;
  color: #fff;
  background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.18), transparent 40%), radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.12), transparent 45%), linear-gradient(135deg, #0A2B5C, #1D4ED8);
}
.hero .hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}
.hero .hero__inner .hero__content .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}
.hero .hero__inner .hero__content .hero__badge .hero__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.18);
}
.hero .hero__inner .hero__content .hero__badge .hero__badge-text {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 13px;
  opacity: 0.95;
}
.hero .hero__inner .hero__content .hero__title {
  margin-top: 18px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -1.2px;
}
@media (max-width: 1200px) {
  .hero .hero__inner .hero__content .hero__title {
    font-size: 50px;
  }
}
@media (max-width: 992px) {
  .hero .hero__inner .hero__content .hero__title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .hero .hero__inner .hero__content .hero__title {
    font-size: 36px;
  }
}
.hero .hero__inner .hero__content .hero__text {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.92;
  max-width: 640px;
}
@media (max-width: 480px) {
  .hero .hero__inner .hero__content .hero__text {
    font-size: 15.5px;
  }
}
.hero .hero__inner .hero__content .hero__actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .hero__inner .hero__content .hero__highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero .hero__inner .hero__content .hero__highlights .hero__highlight {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}
.hero .hero__inner .hero__content .hero__highlights .hero__highlight .hero__highlight-title {
  display: block;
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 14px;
}
.hero .hero__inner .hero__content .hero__highlights .hero__highlight .hero__highlight-text {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.45;
}
@media (max-width: 992px) {
  .hero .hero__inner .hero__content .hero__highlights {
    grid-template-columns: 1fr;
  }
}
.hero .hero__inner .hero__visual {
  position: relative;
  min-height: 420px;
}
.hero .hero__inner .hero__visual .hero-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary {
  padding: 22px;
  transform: translateY(-8px);
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__top .hero-card__chip {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08)), linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(29, 78, 216, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__top .hero-card__meta .hero-card__meta-title {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__top .hero-card__meta .hero-card__meta-text {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.9;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__stats .hero-stat {
  padding: 12px 12px 10px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__stats .hero-stat .hero-stat__value {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.4px;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__stats .hero-stat .hero-stat__label {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.9;
}
@media (max-width: 480px) {
  .hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__stats {
    grid-template-columns: 1fr;
  }
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__bar {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__bar span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__bar span:nth-child(1) {
  width: 86%;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__bar span:nth-child(2) {
  width: 64%;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--primary .hero-card__bar span:nth-child(3) {
  width: 74%;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--secondary {
  position: absolute;
  right: 0;
  bottom: -16px;
  width: min(360px, 90%);
  padding: 20px;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.18), transparent 55%), rgba(255, 255, 255, 0.1);
}
.hero .hero__inner .hero__visual .hero-card.hero-card--secondary .hero-card__meta-title {
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 14px;
  margin-bottom: 10px;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--secondary .hero-card__list {
  display: grid;
  gap: 10px;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--secondary .hero-card__list li {
  position: relative;
  padding-left: 18px;
  opacity: 0.92;
  font-size: 13px;
}
.hero .hero__inner .hero__visual .hero-card.hero-card--secondary .hero-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}
@media (max-width: 992px) {
  .hero .hero__inner .hero__visual .hero-card.hero-card--secondary {
    position: relative;
    bottom: 0;
    margin-top: 14px;
  }
}
@media (max-width: 992px) {
  .hero .hero__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 96px 0 72px;
  }
}

.trust {
  padding: 72px 0;
  background: #fff;
}
.trust .trust__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 26px;
}
.trust .trust__inner .trust__head .trust__title {
  font-size: 26px;
  letter-spacing: -0.5px;
  color: #0A2B5C;
}
.trust .trust__inner .trust__head .trust__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.7;
}
.trust .trust__inner .trust__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.trust .trust__inner .trust__logos .trust__logo {
  padding: 16px 14px;
  border-radius: 16px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 13px;
  color: #334155;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust .trust__inner .trust__logos .trust__logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
@media (max-width: 992px) {
  .trust .trust__inner .trust__logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .trust .trust__inner .trust__logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .trust .trust__inner {
    grid-template-columns: 1fr;
  }
}

.services {
  padding: 96px 0;
  background: radial-gradient(circle at 10% 10%, rgba(29, 78, 216, 0.06), transparent 45%), radial-gradient(circle at 90% 70%, rgba(245, 158, 11, 0.06), transparent 45%), #F8FAFC;
}
.services .services__inner .services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.services .services__inner .services__grid .service-card {
  position: relative;
  border-radius: 22px;
  padding: 24px 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.services .services__inner .services__grid .service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.18), rgba(245, 158, 11, 0.14));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.services .services__inner .services__grid .service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.services .services__inner .services__grid .service-card .service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12)), linear-gradient(135deg, rgba(29, 78, 216, 0.22), rgba(245, 158, 11, 0.16));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.services .services__inner .services__grid .service-card .service-card__icon i {
  font-size: 22px;
  color: #0A2B5C;
  opacity: 0.95;
  transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.services .services__inner .services__grid .service-card:hover .service-card__icon i {
  transform: translateY(-2px);
  color: #1D4ED8;
  opacity: 1;
}
.services .services__inner .services__grid .service-card .service-card__title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #0A2B5C;
  position: relative;
  z-index: 2;
}
.services .services__inner .services__grid .service-card .service-card__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.7;
  font-size: 14.5px;
  position: relative;
  z-index: 2;
}
.services .services__inner .services__grid .service-card .service-card__list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.services .services__inner .services__grid .service-card .service-card__list li {
  color: #334155;
  font-size: 13px;
  padding-left: 18px;
  position: relative;
}
.services .services__inner .services__grid .service-card .service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1D4ED8;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.12);
}
.services .services__inner .services__grid .service-card .service-card__link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #1D4ED8;
  position: relative;
  z-index: 2;
}
.services .services__inner .services__grid .service-card .service-card__link::after {
  content: "→";
  transition: transform 0.22s ease;
}
.services .services__inner .services__grid .service-card .service-card__link:hover::after {
  transform: translateX(3px);
}
.services .services__inner .services__grid .service-card .service-card__link:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}
.services .services__inner .services__grid .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  border-color: rgba(29, 78, 216, 0.18);
}
.services .services__inner .services__grid .service-card:hover::before {
  opacity: 1;
}
@media (max-width: 1200px) {
  .services .services__inner .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .services .services__inner .services__grid {
    grid-template-columns: 1fr;
  }
}
.services .services__inner .services__cta {
  margin-top: 28px;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.services .services__inner .services__cta .services__cta-text h3 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.services .services__inner .services__cta .services__cta-text p {
  margin-top: 6px;
  color: #334155;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .services .services__inner .services__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.process {
  padding: 96px 0;
  background: #fff;
}
.process .process__inner .process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process .process__inner .process__grid .process-step {
  border-radius: 22px;
  padding: 24px 22px;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process .process__inner .process__grid .process-step .process-step__num {
  font-weight: 900;
  letter-spacing: -0.6px;
  font-size: 30px;
  background: linear-gradient(135deg, #1D4ED8, #F59E0B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process .process__inner .process__grid .process-step .process-step__title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.process .process__inner .process__grid .process-step .process-step__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.7;
  font-size: 14.5px;
}
.process .process__inner .process__grid .process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
@media (max-width: 1200px) {
  .process .process__inner .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .process .process__inner .process__grid {
    grid-template-columns: 1fr;
  }
}

.work {
  padding: 96px 0;
  background: radial-gradient(circle at 15% 15%, rgba(29, 78, 216, 0.06), transparent 45%), #F8FAFC;
}
.work .work__inner .work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work .work__inner .work__grid .work-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.work .work__inner .work__grid .work-card .work-card__media {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}
.work .work__inner .work__grid .work-card .work-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.work .work__inner .work__grid .work-card .work-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.18), transparent 45%), radial-gradient(circle at 80% 70%, rgba(29, 78, 216, 0.16), transparent 45%), linear-gradient(135deg, rgba(10, 43, 92, 0.25), rgba(0, 0, 0, 0.15));
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.work .work__inner .work__grid .work-card:hover .work-card__media img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.03);
}
.work .work__inner .work__grid .work-card:hover .work-card__media::after {
  opacity: 0.75;
}
.work .work__inner .work__grid .work-card .work-card__body {
  padding: 22px;
}
.work .work__inner .work__grid .work-card .work-card__body .work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work .work__inner .work__grid .work-card .work-card__body .work-card__tags span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.18);
  color: #1D4ED8;
}
.work .work__inner .work__grid .work-card .work-card__body .work-card__title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.work .work__inner .work__grid .work-card .work-card__body .work-card__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.7;
  font-size: 14.5px;
}
.work .work__inner .work__grid .work-card .work-card__body .work-card__link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #1D4ED8;
}
.work .work__inner .work__grid .work-card .work-card__body .work-card__link::after {
  content: "→";
  transition: transform 0.22s ease;
}
.work .work__inner .work__grid .work-card .work-card__body .work-card__link:hover::after {
  transform: translateX(3px);
}
.work .work__inner .work__grid .work-card .work-card__body .work-card__link:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}
.work .work__inner .work__grid .work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}
@media (max-width: 1200px) {
  .work .work__inner .work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .work .work__inner .work__grid {
    grid-template-columns: 1fr;
  }
}

.stats {
  padding: 76px 0;
  background: #fff;
}
.stats .stats__inner .stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stats .stats__inner .stats__grid .stats-card {
  border-radius: 22px;
  padding: 22px;
  background: radial-gradient(circle at 20% 20%, rgba(29, 78, 216, 0.08), transparent 55%), rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stats .stats__inner .stats__grid .stats-card .stats-card__value {
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: -0.6px;
  color: #0A2B5C;
}
.stats .stats__inner .stats__grid .stats-card .stats-card__label {
  margin-top: 8px;
  color: #334155;
  line-height: 1.6;
  font-size: 14px;
}
.stats .stats__inner .stats__grid .stats-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
@media (max-width: 1200px) {
  .stats .stats__inner .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .stats .stats__inner .stats__grid {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  padding: 96px 0;
  background: radial-gradient(circle at 85% 25%, rgba(245, 158, 11, 0.06), transparent 45%), #F8FAFC;
}
.testimonials .testimonials__inner .testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonials .testimonials__inner .testimonials__grid .review-card {
  border-radius: 22px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonials .testimonials__inner .testimonials__grid .review-card .review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.testimonials .testimonials__inner .testimonials__grid .review-card .review-card__top .review-card__stars {
  display: inline-flex;
  gap: 4px;
}
.testimonials .testimonials__inner .testimonials__grid .review-card .review-card__top .review-card__stars span {
  font-size: 14px;
  color: #F59E0B;
  text-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}
.testimonials .testimonials__inner .testimonials__grid .review-card .review-card__top .review-card__meta {
  text-align: right;
}
.testimonials .testimonials__inner .testimonials__grid .review-card .review-card__top .review-card__meta .review-card__name {
  font-weight: 900;
  color: #0A2B5C;
  letter-spacing: -0.2px;
  font-size: 14px;
}
.testimonials .testimonials__inner .testimonials__grid .review-card .review-card__top .review-card__meta .review-card__company {
  margin-top: 4px;
  color: #64748B;
  font-size: 12.5px;
}
.testimonials .testimonials__inner .testimonials__grid .review-card .review-card__text {
  margin-top: 14px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.testimonials .testimonials__inner .testimonials__grid .review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}
@media (max-width: 1200px) {
  .testimonials .testimonials__inner .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .testimonials .testimonials__inner .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.faq {
  padding: 96px 0;
  background: #fff;
}
.faq .faq__inner .faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.faq .faq__inner .faq__grid .faq-item {
  border-radius: 22px;
  overflow: hidden;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.faq .faq__inner .faq__grid .faq-item .faq-item__summary {
  cursor: pointer;
  padding: 20px 20px;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: #0A2B5C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq .faq__inner .faq__grid .faq-item .faq-item__summary::marker {
  display: none;
}
.faq .faq__inner .faq__grid .faq-item .faq-item__summary::-webkit-details-marker {
  display: none;
}
.faq .faq__inner .faq__grid .faq-item .faq-item__summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.18);
  color: #1D4ED8;
  transition: transform 0.25s ease, background 0.25s ease;
  flex: 0 0 auto;
}
.faq .faq__inner .faq__grid .faq-item .faq-item__summary:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 3px;
  border-radius: 18px;
}
.faq .faq__inner .faq__grid .faq-item .faq-item__content {
  padding: 0 20px 20px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.faq .faq__inner .faq__grid .faq-item[open] {
  background: radial-gradient(circle at 20% 20%, rgba(29, 78, 216, 0.08), transparent 55%), rgb(248, 250, 252);
}
.faq .faq__inner .faq__grid .faq-item[open] .faq-item__summary::after {
  content: "—";
  transform: rotate(180deg);
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.28);
  color: #F59E0B;
}
.faq .faq__inner .faq__grid .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
@media (max-width: 992px) {
  .faq .faq__inner .faq__grid {
    grid-template-columns: 1fr;
  }
}

.cta {
  padding: 86px 0;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.18), transparent 40%), radial-gradient(circle at 82% 70%, rgba(255, 255, 255, 0.12), transparent 45%), linear-gradient(135deg, #0A2B5C, #1D4ED8);
}
.cta .cta__inner {
  border-radius: 26px;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cta .cta__inner .cta__content .cta__title {
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.8px;
}
@media (max-width: 480px) {
  .cta .cta__inner .cta__content .cta__title {
    font-size: 28px;
  }
}
.cta .cta__inner .cta__content .cta__text {
  margin-top: 10px;
  max-width: 640px;
  opacity: 0.92;
  line-height: 1.7;
}
.cta .cta__inner .cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cta .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta .cta__inner .cta__actions {
    justify-content: flex-start;
  }
}

.site-footer {
  background: #0B1220;
  color: rgba(255, 255, 255, 0.92);
}
.site-footer .footer__inner {
  padding: 72px 0 44px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 0.75fr;
  gap: 24px;
}
.site-footer .footer__inner .footer__col .footer__title {
  font-weight: 900;
  letter-spacing: -0.2px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}
.site-footer .footer__inner .footer__col .footer__links {
  display: grid;
  gap: 10px;
}
.site-footer .footer__inner .footer__col .footer__links li a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 13.5px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer .footer__inner .footer__col .footer__links li a:hover {
  color: #F59E0B;
}
.site-footer .footer__inner .footer__col .footer__links li a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
  border-radius: 10px;
}
.site-footer .footer__inner .footer__brand .footer__logo {
  display: inline-flex;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.6px;
}
.site-footer .footer__inner .footer__brand .footer__logo span {
  color: #F59E0B;
}
.site-footer .footer__inner .footer__brand .footer__logo:hover {
  opacity: 0.9;
}
.site-footer .footer__inner .footer__brand .footer__text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 420px;
  font-size: 14px;
}
.site-footer .footer__inner .footer__brand .footer__meta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.site-footer .footer__inner .footer__brand .footer__meta .footer__meta-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer .footer__inner .footer__brand .footer__meta .footer__meta-item .footer__meta-label {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer .footer__inner .footer__brand .footer__meta .footer__meta-item .footer__meta-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}
.site-footer .footer__inner .footer__brand .footer__meta .footer__meta-item .footer__meta-link:hover {
  color: #F59E0B;
}
.site-footer .footer__inner .footer__brand .footer__meta .footer__meta-item .footer__meta-link:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
  border-radius: 10px;
}
.site-footer .footer__inner .footer__brand .footer__meta .footer__meta-item .footer__meta-text {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}
.site-footer .footer__inner .footer__social {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer .footer__inner .footer__social .footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.site-footer .footer__inner .footer__social .footer__social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: #F59E0B;
}
.site-footer .footer__inner .footer__social .footer__social-link:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
}
@media (max-width: 1200px) {
  .site-footer .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .site-footer .footer__inner {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.site-footer .footer__bottom .footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer .footer__bottom .footer__bottom-inner .footer__copy {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 700;
}
.site-footer .footer__bottom .footer__bottom-inner .footer__to-top {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.site-footer .footer__bottom .footer__bottom-inner .footer__to-top:hover {
  transform: translateY(-2px);
  color: #F59E0B;
  border-color: rgba(245, 158, 11, 0.25);
}
.site-footer .footer__bottom .footer__bottom-inner .footer__to-top:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
}

.about-page .page-hero {
  position: relative;
  padding: 96px 0 86px;
  background: radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.14), transparent 42%), radial-gradient(circle at 82% 78%, rgba(29, 78, 216, 0.1), transparent 45%), linear-gradient(135deg, rgb(10, 43, 92), rgb(29, 78, 216));
  color: #fff;
  overflow: hidden;
}
.about-page .page-hero.page-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 8px, transparent 8px, transparent 20px);
  opacity: 0.18;
  pointer-events: none;
}
.about-page .page-hero.page-hero--about::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 62%);
  filter: blur(2px);
  pointer-events: none;
}
.about-page .page-hero .page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a:hover {
  color: #F59E0B;
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
  border-radius: 999px;
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 13px;
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs span:nth-child(2) {
  opacity: 0.55;
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
  margin-top: 18px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.1px;
}
@media (max-width: 1200px) {
  .about-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .about-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .about-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 34px;
  }
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__text {
  margin-top: 16px;
  max-width: 700px;
  font-size: 16.5px;
  line-height: 1.75;
  opacity: 0.92;
}
@media (max-width: 480px) {
  .about-page .page-hero .page-hero__inner .page-hero__content .page-hero__text {
    font-size: 15.5px;
  }
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__badges {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.about-page .page-hero .page-hero__inner .page-hero__content .page-hero__badges .page-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.35px;
  color: rgba(255, 255, 255, 0.92);
}
.about-page .page-hero .page-hero__inner .page-hero__visual {
  position: relative;
  min-height: 430px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual {
  position: relative;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary {
  padding: 22px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__head .about-visual__dot {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1)), linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(29, 78, 216, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__head .about-visual__meta .about-visual__title {
  font-weight: 1000;
  font-size: 14px;
  letter-spacing: 0.4px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__head .about-visual__meta .about-visual__sub {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.9;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__lines {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__lines span:nth-child(1) {
  width: 88%;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__lines span:nth-child(2) {
  width: 62%;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__lines span:nth-child(3) {
  width: 74%;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__mini-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__mini-grid .about-mini {
  border-radius: 18px;
  padding: 12px 12px 10px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__mini-grid .about-mini .about-mini__value {
  font-weight: 1000;
  letter-spacing: -0.4px;
  font-size: 22px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__mini-grid .about-mini .about-mini__label {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.92;
  line-height: 1.35;
}
@media (max-width: 480px) {
  .about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--primary .about-visual__mini-grid {
    grid-template-columns: 1fr;
  }
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--secondary {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(360px, 92%);
  padding: 20px;
  background: radial-gradient(circle at 25% 20%, rgba(245, 158, 11, 0.2), transparent 55%), rgba(255, 255, 255, 0.1);
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--secondary .about-visual__kicker {
  font-weight: 1000;
  letter-spacing: 0.4px;
  font-size: 14px;
  margin-bottom: 10px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--secondary .about-visual__list {
  display: grid;
  gap: 10px;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--secondary .about-visual__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.93;
}
.about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--secondary .about-visual__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}
@media (max-width: 992px) {
  .about-page .page-hero .page-hero__inner .page-hero__visual .about-visual .about-visual__card.about-visual__card--secondary {
    position: relative;
    bottom: 0;
    margin-top: 14px;
  }
}
@media (max-width: 992px) {
  .about-page .page-hero .page-hero__inner {
    grid-template-columns: 1fr;
  }
  .about-page .page-hero .page-hero__inner .page-hero__visual {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .about-page .page-hero {
    padding: 88px 0 74px;
  }
}
.about-page .about-story {
  padding: 96px 0;
  background: #fff;
}
.about-page .about-story .about-story__inner .about-story__grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-page .about-story .about-story__inner .about-story__grid .about-story__card {
  border-radius: 22px;
  padding: 24px 22px;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-page .about-story .about-story__inner .about-story__grid .about-story__card h3 {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.about-page .about-story .about-story__inner .about-story__grid .about-story__card p {
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.about-page .about-story .about-story__inner .about-story__grid .about-story__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
@media (max-width: 1200px) {
  .about-page .about-story .about-story__inner .about-story__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .about-page .about-story .about-story__inner .about-story__grid {
    grid-template-columns: 1fr;
  }
}
.about-page .about-values {
  padding: 96px 0;
  background: radial-gradient(circle at 10% 10%, rgba(29, 78, 216, 0.06), transparent 45%), radial-gradient(circle at 90% 70%, rgba(245, 158, 11, 0.06), transparent 45%), #F8FAFC;
}
.about-page .about-values .about-values__inner .about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-page .about-values .about-values__inner .about-values__grid .value-card {
  position: relative;
  border-radius: 22px;
  padding: 24px 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.about-page .about-values .about-values__inner .about-values__grid .value-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.about-page .about-values .about-values__inner .about-values__grid .value-card .value-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12)), linear-gradient(135deg, rgba(29, 78, 216, 0.25), rgba(245, 158, 11, 0.18));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.about-page .about-values .about-values__inner .about-values__grid .value-card .value-card__title {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
  position: relative;
  z-index: 2;
}
.about-page .about-values .about-values__inner .about-values__grid .value-card .value-card__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.7;
  font-size: 14.5px;
  position: relative;
  z-index: 2;
}
.about-page .about-values .about-values__inner .about-values__grid .value-card .value-card__list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.about-page .about-values .about-values__inner .about-values__grid .value-card .value-card__list li {
  color: #334155;
  font-size: 13px;
  padding-left: 18px;
  position: relative;
}
.about-page .about-values .about-values__inner .about-values__grid .value-card .value-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1D4ED8;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.12);
}
.about-page .about-values .about-values__inner .about-values__grid .value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  border-color: rgba(29, 78, 216, 0.18);
}
@media (max-width: 1200px) {
  .about-page .about-values .about-values__inner .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .about-page .about-values .about-values__inner .about-values__grid {
    grid-template-columns: 1fr;
  }
}
.about-page .about-team {
  padding: 96px 0;
  background: #fff;
}
.about-page .about-team .about-team__inner .about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.about-page .about-team .about-team__inner .about-team__grid .team-card {
  border-radius: 22px;
  padding: 24px 22px;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-page .about-team .about-team__inner .about-team__grid .team-card .team-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12)), linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(29, 78, 216, 0.18));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  margin-bottom: 16px;
}
.about-page .about-team .about-team__inner .about-team__grid .team-card .team-card__title {
  font-size: 17px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.about-page .about-team .about-team__inner .about-team__grid .team-card .team-card__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.about-page .about-team .about-team__inner .about-team__grid .team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
@media (max-width: 1200px) {
  .about-page .about-team .about-team__inner .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .about-page .about-team .about-team__inner .about-team__grid {
    grid-template-columns: 1fr;
  }
}
.about-page .about-cta .cta__inner .cta__content .cta__title {
  max-width: 760px;
}
.about-page .about-cta .cta__inner .cta__content .cta__text {
  max-width: 740px;
}

.services-page .page-hero {
  position: relative;
  padding: 96px 0 86px;
  background: radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.12), transparent 42%), radial-gradient(circle at 82% 78%, rgba(29, 78, 216, 0.1), transparent 45%), linear-gradient(135deg, rgb(10, 43, 92), rgb(29, 78, 216));
  color: #fff;
  overflow: hidden;
}
.services-page .page-hero.page-hero--services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 8px, transparent 8px, transparent 20px);
  opacity: 0.16;
  pointer-events: none;
}
.services-page .page-hero.page-hero--services::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 62%);
  filter: blur(1px);
  pointer-events: none;
}
.services-page .page-hero .page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a:hover {
  color: #F59E0B;
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
  border-radius: 999px;
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 13px;
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs span:nth-child(2) {
  opacity: 0.55;
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
  margin-top: 18px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.1px;
}
@media (max-width: 1200px) {
  .services-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .services-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .services-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 34px;
  }
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__text {
  margin-top: 16px;
  max-width: 720px;
  font-size: 16.5px;
  line-height: 1.75;
  opacity: 0.92;
}
@media (max-width: 480px) {
  .services-page .page-hero .page-hero__inner .page-hero__content .page-hero__text {
    font-size: 15.5px;
  }
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__badges {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.services-page .page-hero .page-hero__inner .page-hero__content .page-hero__badges .page-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.35px;
  color: rgba(255, 255, 255, 0.92);
}
.services-page .page-hero .page-hero__inner .page-hero__visual {
  position: relative;
  min-height: 430px;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual {
  position: relative;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary {
  padding: 22px;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__top .services-visual__chip {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1)), linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(29, 78, 216, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__top .services-visual__meta .services-visual__title {
  font-weight: 1000;
  font-size: 14px;
  letter-spacing: 0.4px;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__top .services-visual__meta .services-visual__sub {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.9;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__grid .services-pill {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  opacity: 0.95;
}
@media (max-width: 480px) {
  .services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__grid {
    grid-template-columns: 1fr;
  }
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__bars {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__bars span:nth-child(1) {
  width: 86%;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__bars span:nth-child(2) {
  width: 64%;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--primary .services-visual__bars span:nth-child(3) {
  width: 74%;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--secondary {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(360px, 92%);
  padding: 20px;
  background: radial-gradient(circle at 25% 20%, rgba(245, 158, 11, 0.2), transparent 55%), rgba(255, 255, 255, 0.1);
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--secondary .services-visual__kicker {
  font-weight: 1000;
  letter-spacing: 0.4px;
  font-size: 14px;
  margin-bottom: 10px;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--secondary .services-visual__list {
  display: grid;
  gap: 10px;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--secondary .services-visual__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.93;
}
.services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--secondary .services-visual__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}
@media (max-width: 992px) {
  .services-page .page-hero .page-hero__inner .page-hero__visual .services-visual .services-visual__card.services-visual__card--secondary {
    position: relative;
    bottom: 0;
    margin-top: 14px;
  }
}
@media (max-width: 992px) {
  .services-page .page-hero .page-hero__inner {
    grid-template-columns: 1fr;
  }
  .services-page .page-hero .page-hero__inner .page-hero__visual {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .services-page .page-hero {
    padding: 88px 0 74px;
  }
}
.services-page .services-nav {
  background: rgb(248, 250, 252);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.services-page .services-nav .services-nav__inner {
  padding: 16px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.services-page .services-nav .services-nav__inner .services-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  color: #0A2B5C;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.services-page .services-nav .services-nav__inner .services-nav__link:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 78, 216, 0.18);
  background: rgba(29, 78, 216, 0.06);
  color: #1D4ED8;
}
.services-page .services-nav .services-nav__inner .services-nav__link:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
}
.services-page .services-overview {
  padding: 96px 0;
  background: #fff;
}
.services-page .services-overview .services-overview__inner .services-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-page .services-overview .services-overview__inner .services-overview__grid .overview-card {
  border-radius: 22px;
  padding: 24px 22px;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.services-page .services-overview .services-overview__inner .services-overview__grid .overview-card h3 {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.services-page .services-overview .services-overview__inner .services-overview__grid .overview-card p {
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.services-page .services-overview .services-overview__inner .services-overview__grid .overview-card ul {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.services-page .services-overview .services-overview__inner .services-overview__grid .overview-card ul li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 13px;
}
.services-page .services-overview .services-overview__inner .services-overview__grid .overview-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1D4ED8;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.12);
}
.services-page .services-overview .services-overview__inner .services-overview__grid .overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
@media (max-width: 1200px) {
  .services-page .services-overview .services-overview__inner .services-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .services-page .services-overview .services-overview__inner .services-overview__grid {
    grid-template-columns: 1fr;
  }
}
.services-page .service-block {
  padding: 96px 0;
  background: #F8FAFC;
}
.services-page .service-block.service-block--alt {
  background: #fff;
}
.services-page .service-block .service-block__inner .service-block__head {
  margin-bottom: 34px;
}
.services-page .service-block .service-block__inner .service-block__head .service-block__title {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #0A2B5C;
}
@media (max-width: 992px) {
  .services-page .service-block .service-block__inner .service-block__head .service-block__title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .services-page .service-block .service-block__inner .service-block__head .service-block__title {
    font-size: 30px;
  }
}
.services-page .service-block .service-block__inner .service-block__head .service-block__text {
  margin-top: 12px;
  max-width: 820px;
  color: #334155;
  line-height: 1.75;
  font-size: 16px;
}
.services-page .service-block .service-block__inner .service-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-page .service-block .service-block__inner .service-block__grid .service-detail {
  position: relative;
  border-radius: 22px;
  padding: 24px 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.services-page .service-block .service-block__inner .service-block__grid .service-detail::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.services-page .service-block .service-block__inner .service-block__grid .service-detail h3 {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.services-page .service-block .service-block__inner .service-block__grid .service-detail p {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.services-page .service-block .service-block__inner .service-block__grid .service-detail ul {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.services-page .service-block .service-block__inner .service-block__grid .service-detail ul li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 13px;
}
.services-page .service-block .service-block__inner .service-block__grid .service-detail ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1D4ED8;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.12);
}
.services-page .service-block .service-block__inner .service-block__grid .service-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}
@media (max-width: 1200px) {
  .services-page .service-block .service-block__inner .service-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .services-page .service-block .service-block__inner .service-block__grid {
    grid-template-columns: 1fr;
  }
}
.services-page .service-block .service-block__inner .service-block__cta {
  margin-top: 22px;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.services-page .service-block .service-block__inner .service-block__cta .service-block__cta-text h3 {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.services-page .service-block .service-block__inner .service-block__cta .service-block__cta-text p {
  margin-top: 6px;
  color: #334155;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .services-page .service-block .service-block__inner .service-block__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.services-page .services-packages {
  padding: 96px 0;
  background: radial-gradient(circle at 10% 10%, rgba(29, 78, 216, 0.06), transparent 45%), radial-gradient(circle at 90% 70%, rgba(245, 158, 11, 0.06), transparent 45%), #F8FAFC;
}
.services-page .services-packages .services-packages__inner .services-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card {
  border-radius: 22px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card.package-card--featured {
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 26px 90px rgba(245, 158, 11, 0.14);
  position: relative;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card.package-card--featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(29, 78, 216, 0.14));
  opacity: 0.9;
  pointer-events: none;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card.package-card--featured > * {
  position: relative;
  z-index: 2;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__top .package-card__title {
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__top .package-card__subtitle {
  margin-top: 6px;
  color: #64748B;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__list li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 13.5px;
  line-height: 1.55;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1D4ED8;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.12);
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__cta .package-card__link {
  font-weight: 1000;
  color: #1D4ED8;
  position: relative;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(29, 78, 216, 0.06);
  border: 1px solid rgba(29, 78, 216, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__cta .package-card__link:hover {
  transform: translateY(-1px);
  background: rgba(29, 78, 216, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: #F59E0B;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card .package-card__cta .package-card__link:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
}
.services-page .services-packages .services-packages__inner .services-packages__grid .package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
  border-color: rgba(29, 78, 216, 0.18);
}
@media (max-width: 1200px) {
  .services-page .services-packages .services-packages__inner .services-packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .services-page .services-packages .services-packages__inner .services-packages__grid {
    grid-template-columns: 1fr;
  }
}
.services-page .services-faq {
  padding: 96px 0;
  background: #fff;
}
.services-page .services-faq .services-faq__inner .services-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 992px) {
  .services-page .services-faq .services-faq__inner .services-faq__grid {
    grid-template-columns: 1fr;
  }
}
.services-page .services-cta .cta__inner .cta__content .cta__title {
  max-width: 840px;
}
.services-page .services-cta .cta__inner .cta__content .cta__text {
  max-width: 760px;
}

.portfolio-page .page-hero {
  position: relative;
  padding: 96px 0 86px;
  background: radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.12), transparent 42%), radial-gradient(circle at 82% 78%, rgba(29, 78, 216, 0.1), transparent 45%), linear-gradient(135deg, rgb(10, 43, 92), rgb(29, 78, 216));
  color: #fff;
  overflow: hidden;
}
.portfolio-page .page-hero.page-hero--portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 8px, transparent 8px, transparent 20px);
  opacity: 0.16;
  pointer-events: none;
}
.portfolio-page .page-hero.page-hero--portfolio::after {
  content: "";
  position: absolute;
  left: -140px;
  top: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.18), transparent 62%);
  filter: blur(1px);
  pointer-events: none;
}
.portfolio-page .page-hero .page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a:hover {
  color: #F59E0B;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
  border-radius: 999px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 13px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs span:nth-child(2) {
  opacity: 0.55;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
  margin-top: 18px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.1px;
}
@media (max-width: 1200px) {
  .portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 34px;
  }
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__text {
  margin-top: 16px;
  max-width: 720px;
  font-size: 16.5px;
  line-height: 1.75;
  opacity: 0.92;
}
@media (max-width: 480px) {
  .portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__text {
    font-size: 15.5px;
  }
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__badges {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__content .page-hero__badges .page-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.35px;
  color: rgba(255, 255, 255, 0.92);
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual {
  position: relative;
  min-height: 430px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual {
  position: relative;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary {
  padding: 22px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__top .portfolio-visual__chip {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1)), linear-gradient(135deg, rgba(29, 78, 216, 0.22), rgba(245, 158, 11, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__top .portfolio-visual__meta .portfolio-visual__title {
  font-weight: 1000;
  font-size: 14px;
  letter-spacing: 0.4px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__top .portfolio-visual__meta .portfolio-visual__sub {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.9;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__numbers {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__numbers .pv-stat {
  border-radius: 18px;
  padding: 12px 12px 10px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__numbers .pv-stat .pv-stat__value {
  font-weight: 1000;
  letter-spacing: -0.4px;
  font-size: 22px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__numbers .pv-stat .pv-stat__label {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.92;
  line-height: 1.35;
}
@media (max-width: 480px) {
  .portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__numbers {
    grid-template-columns: 1fr;
  }
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__bars {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__bars span:nth-child(1) {
  width: 86%;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__bars span:nth-child(2) {
  width: 64%;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--primary .portfolio-visual__bars span:nth-child(3) {
  width: 74%;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--secondary {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(360px, 92%);
  padding: 20px;
  background: radial-gradient(circle at 25% 20%, rgba(245, 158, 11, 0.2), transparent 55%), rgba(255, 255, 255, 0.1);
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--secondary .portfolio-visual__kicker {
  font-weight: 1000;
  letter-spacing: 0.4px;
  font-size: 14px;
  margin-bottom: 10px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--secondary .portfolio-visual__list {
  display: grid;
  gap: 10px;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--secondary .portfolio-visual__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.93;
}
.portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--secondary .portfolio-visual__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}
@media (max-width: 992px) {
  .portfolio-page .page-hero .page-hero__inner .page-hero__visual .portfolio-visual .portfolio-visual__card.portfolio-visual__card--secondary {
    position: relative;
    bottom: 0;
    margin-top: 14px;
  }
}
@media (max-width: 992px) {
  .portfolio-page .page-hero .page-hero__inner {
    grid-template-columns: 1fr;
  }
  .portfolio-page .page-hero .page-hero__inner .page-hero__visual {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .portfolio-page .page-hero {
    padding: 88px 0 74px;
  }
}
.portfolio-page .portfolio-filter {
  background: rgb(248, 250, 252);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.portfolio-page .portfolio-filter .portfolio-filter__inner {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__left .portfolio-filter__label {
  font-weight: 1000;
  letter-spacing: 0.3px;
  color: #0A2B5C;
  font-size: 13px;
  opacity: 0.92;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__left .portfolio-filter__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__left .portfolio-filter__chips .filter-chip {
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 1000;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  color: #0A2B5C;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__left .portfolio-filter__chips .filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 78, 216, 0.18);
  background: rgba(29, 78, 216, 0.06);
  color: #1D4ED8;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__left .portfolio-filter__chips .filter-chip:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__left .portfolio-filter__chips .filter-chip.is-active {
  background: rgba(29, 78, 216, 0.1);
  border-color: rgba(29, 78, 216, 0.22);
  color: #1D4ED8;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__right .portfolio-search {
  position: relative;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__right .portfolio-search .portfolio-search__input {
  width: min(320px, 76vw);
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 800;
  color: #0A2B5C;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__right .portfolio-search .portfolio-search__input::-moz-placeholder {
  color: rgba(51, 65, 85, 0.75);
  font-weight: 700;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__right .portfolio-search .portfolio-search__input::placeholder {
  color: rgba(51, 65, 85, 0.75);
  font-weight: 700;
}
.portfolio-page .portfolio-filter .portfolio-filter__inner .portfolio-filter__right .portfolio-search .portfolio-search__input:focus {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}
.portfolio-page .portfolio-grid {
  padding: 96px 0;
  background: #fff;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.18), transparent 45%), radial-gradient(circle at 80% 70%, rgba(29, 78, 216, 0.16), transparent 45%), linear-gradient(135deg, rgba(10, 43, 92, 0.22), rgba(0, 0, 0, 0.18));
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card:hover .case-card__media img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.03);
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card:hover .case-card__media::after {
  opacity: 0.75;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card.is-hidden {
  display: none;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body {
  padding: 22px;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__tags span {
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.3px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.18);
  color: #1D4ED8;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__meta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__meta .case-card__meta-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__meta .case-card__meta-item .case-card__meta-label {
  font-weight: 1000;
  color: #0A2B5C;
  opacity: 0.92;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__meta .case-card__meta-item .case-card__meta-text {
  font-weight: 800;
  color: #334155;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #F59E0B;
  font-weight: 1000;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__link:hover {
  transform: translateY(-1px);
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(29, 78, 216, 0.22);
  color: #1D4ED8;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card .case-card__body .case-card__link:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
}
.portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list .case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}
@media (max-width: 1200px) {
  .portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .portfolio-page .portfolio-grid .portfolio-grid__inner .portfolio-grid__list {
    grid-template-columns: 1fr;
  }
}
.portfolio-page .portfolio-cta .cta__inner .cta__content .cta__title {
  max-width: 820px;
}
.portfolio-page .portfolio-cta .cta__inner .cta__content .cta__text {
  max-width: 760px;
}

.contact-page .page-hero {
  position: relative;
  padding: 96px 0 86px;
  background: radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.12), transparent 42%), radial-gradient(circle at 82% 78%, rgba(29, 78, 216, 0.1), transparent 45%), linear-gradient(135deg, rgb(10, 43, 92), rgb(29, 78, 216));
  color: #fff;
  overflow: hidden;
}
.contact-page .page-hero.page-hero--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 8px, transparent 8px, transparent 20px);
  opacity: 0.16;
  pointer-events: none;
}
.contact-page .page-hero.page-hero--contact::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 62%);
  pointer-events: none;
}
.contact-page .page-hero .page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a:hover {
  color: #F59E0B;
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
  border-radius: 999px;
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 13px;
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__breadcrumbs span:nth-child(2) {
  opacity: 0.55;
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
  margin-top: 18px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.1px;
}
@media (max-width: 1200px) {
  .contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__title {
    font-size: 34px;
  }
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__text {
  margin-top: 16px;
  max-width: 720px;
  font-size: 16.5px;
  line-height: 1.75;
  opacity: 0.92;
}
@media (max-width: 480px) {
  .contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__text {
    font-size: 15.5px;
  }
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__badges {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-page .page-hero .page-hero__inner .page-hero__content .page-hero__badges .page-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.35px;
  color: rgba(255, 255, 255, 0.92);
}
.contact-page .page-hero .page-hero__inner .page-hero__visual {
  position: relative;
  min-height: 420px;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual {
  position: relative;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary {
  padding: 22px;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__title {
  font-weight: 1000;
  letter-spacing: 0.4px;
  font-size: 14px;
  margin-bottom: 12px;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__rows {
  display: grid;
  gap: 10px;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__rows .contact-visual__row {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__rows .contact-visual__row span {
  display: block;
  height: 100%;
  width: 70%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__rows .contact-visual__row:nth-child(1) span {
  width: 82%;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__rows .contact-visual__row:nth-child(2) span {
  width: 62%;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__rows .contact-visual__row:nth-child(3) span {
  width: 74%;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--primary .contact-visual__chips span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  opacity: 0.95;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--secondary {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(360px, 92%);
  padding: 20px;
  background: radial-gradient(circle at 25% 20%, rgba(245, 158, 11, 0.18), transparent 55%), rgba(255, 255, 255, 0.1);
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--secondary .contact-visual__kicker {
  font-weight: 1000;
  letter-spacing: 0.4px;
  font-size: 14px;
  margin-bottom: 10px;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--secondary .contact-visual__list {
  display: grid;
  gap: 10px;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--secondary .contact-visual__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  opacity: 0.93;
}
.contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--secondary .contact-visual__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}
@media (max-width: 992px) {
  .contact-page .page-hero .page-hero__inner .page-hero__visual .contact-visual .contact-visual__card.contact-visual__card--secondary {
    position: relative;
    bottom: 0;
    margin-top: 14px;
  }
}
@media (max-width: 992px) {
  .contact-page .page-hero .page-hero__inner {
    grid-template-columns: 1fr;
  }
  .contact-page .page-hero .page-hero__inner .page-hero__visual {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .contact-page .page-hero {
    padding: 88px 0 74px;
  }
}
.contact-page .contact-section {
  padding: 96px 0;
  background: radial-gradient(circle at 12% 18%, rgba(29, 78, 216, 0.06), transparent 45%), radial-gradient(circle at 88% 74%, rgba(245, 158, 11, 0.06), transparent 45%), #F8FAFC;
}
.contact-page .contact-section .contact-section__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card {
  border-radius: 22px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__title {
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__list .contact-details__item {
  border-radius: 18px;
  padding: 14px 14px;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__list .contact-details__item .contact-details__label {
  font-weight: 1000;
  letter-spacing: 0.2px;
  color: #0A2B5C;
  opacity: 0.92;
  font-size: 13px;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__list .contact-details__item .contact-details__value {
  margin-top: 6px;
  display: inline-flex;
  font-weight: 900;
  color: #1D4ED8;
  letter-spacing: 0.2px;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__list .contact-details__item .contact-details__value:hover {
  color: #F59E0B;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__list .contact-details__item .contact-details__value:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__mini {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px 14px;
  background: rgba(29, 78, 216, 0.06);
  border: 1px solid rgba(29, 78, 216, 0.14);
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__mini h3 {
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: -0.2px;
  color: #0A2B5C;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__mini ul {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__mini ul li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 13.5px;
  line-height: 1.55;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__mini ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1D4ED8;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.12);
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__note {
  margin-top: 14px;
  color: #64748B;
  font-weight: 800;
  line-height: 1.6;
  font-size: 13px;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__note a {
  color: #1D4ED8;
  font-weight: 1000;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__note a:hover {
  color: #F59E0B;
}
.contact-page .contact-section .contact-section__inner .contact-details .contact-details__card .contact-details__note a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card {
  border-radius: 22px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .contact-form__title {
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: -0.3px;
  color: #0A2B5C;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .contact-form__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form {
  margin-top: 18px;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field.form__field--full {
  grid-column: 1/-1;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field label {
  font-weight: 1000;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #0A2B5C;
  opacity: 0.92;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field input,
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field select,
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field textarea {
  width: 100%;
  border-radius: 16px;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 12px 14px;
  font-weight: 800;
  color: #0A2B5C;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field input::-moz-placeholder, .contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field select::-moz-placeholder, .contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field textarea::-moz-placeholder {
  color: rgba(51, 65, 85, 0.75);
  font-weight: 700;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field input::placeholder,
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field select::placeholder,
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field textarea::placeholder {
  color: rgba(51, 65, 85, 0.75);
  font-weight: 700;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field input:focus,
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field select:focus,
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field textarea:focus {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
  background: rgb(255, 255, 255);
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid .form__field textarea {
  resize: vertical;
  min-height: 160px;
}
@media (max-width: 680px) {
  .contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__grid {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__bottom {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-page .contact-section .contact-section__inner .contact-form .contact-form__card .form .form__bottom .form__hint {
  color: #64748B;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .contact-page .contact-section .contact-section__inner {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-cta .cta__inner .cta__content .cta__title {
  max-width: 760px;
}
.contact-page .contact-cta .cta__inner .cta__content .cta__text {
  max-width: 720px;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.form-popup.active {
  opacity: 1;
  pointer-events: auto;
}
.form-popup.active .form-popup__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.form-popup .form-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
}
.form-popup .form-popup__dialog {
  position: relative;
  z-index: 2;
  width: min(560px, 92vw);
  margin: 0 auto;
  top: 50%;
  transform: translateY(22px) scale(0.98);
  opacity: 0;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.14), transparent 45%), rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.form-popup .form-popup__dialog .form-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #0A2B5C;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.form-popup .form-popup__dialog .form-popup__close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.95);
}
.form-popup .form-popup__dialog .form-popup__close:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
}
.form-popup .form-popup__dialog .form-popup__content {
  padding: 28px 22px 24px;
}
.form-popup .form-popup__dialog .form-popup__content .form-popup__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  border: 1px solid rgba(29, 78, 216, 0.18);
  color: #1D4ED8;
  font-weight: 1000;
  letter-spacing: 0.3px;
  font-size: 12.5px;
}
.form-popup .form-popup__dialog .form-popup__content .form-popup__title {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 1000;
  letter-spacing: -0.4px;
  color: #0A2B5C;
}
.form-popup .form-popup__dialog .form-popup__content .form-popup__text {
  margin-top: 10px;
  color: #334155;
  line-height: 1.75;
  font-size: 14.5px;
}
.form-popup .form-popup__dialog .form-popup__content .form-popup__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-page .legal-hero {
  position: relative;
  padding: 96px 0 78px;
  background: radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.1), transparent 42%), radial-gradient(circle at 82% 78%, rgba(29, 78, 216, 0.1), transparent 45%), linear-gradient(135deg, rgb(10, 43, 92), rgb(29, 78, 216));
  color: #fff;
  overflow: hidden;
}
.legal-page .legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 8px, transparent 8px, transparent 20px);
  opacity: 0.14;
  pointer-events: none;
}
.legal-page .legal-hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 62%);
  pointer-events: none;
}
.legal-page .legal-hero .legal-hero__inner {
  position: relative;
  z-index: 2;
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__breadcrumbs a:hover {
  color: #F59E0B;
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__breadcrumbs a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.55);
  outline-offset: 4px;
  border-radius: 999px;
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 13px;
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__breadcrumbs span:nth-child(2) {
  opacity: 0.55;
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__title {
  margin-top: 18px;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -1.1px;
}
@media (max-width: 992px) {
  .legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__title {
    font-size: 34px;
  }
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__text {
  margin-top: 14px;
  max-width: 840px;
  font-size: 16.5px;
  line-height: 1.75;
  opacity: 0.92;
}
@media (max-width: 480px) {
  .legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__text {
    font-size: 15.5px;
  }
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__meta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.legal-page .legal-hero .legal-hero__inner .legal-hero__content .legal-hero__meta .legal-hero__meta-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  opacity: 0.95;
}
@media (max-width: 480px) {
  .legal-page .legal-hero {
    padding: 88px 0 66px;
  }
}
.legal-page .legal-content {
  padding: 96px 0;
  background: radial-gradient(circle at 12% 18%, rgba(29, 78, 216, 0.06), transparent 45%), radial-gradient(circle at 88% 74%, rgba(245, 158, 11, 0.06), transparent 45%), #F8FAFC;
}
.legal-page .legal-content .legal-content__inner {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 18px;
  align-items: start;
}
.legal-page .legal-content .legal-content__inner .legal-toc {
  position: sticky;
  top: 110px;
}
.legal-page .legal-content .legal-content__inner .legal-toc .legal-toc__card {
  border-radius: 22px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.legal-page .legal-content .legal-content__inner .legal-toc .legal-toc__card .legal-toc__title {
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.4px;
  color: #0A2B5C;
  margin-bottom: 12px;
}
.legal-page .legal-content .legal-content__inner .legal-toc .legal-toc__card .legal-toc__nav {
  display: grid;
  gap: 8px;
}
.legal-page .legal-content .legal-content__inner .legal-toc .legal-toc__card .legal-toc__nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgb(248, 250, 252);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #334155;
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.legal-page .legal-content .legal-content__inner .legal-toc .legal-toc__card .legal-toc__nav a:hover {
  transform: translateY(-1px);
  background: rgba(29, 78, 216, 0.06);
  border-color: rgba(29, 78, 216, 0.16);
  color: #1D4ED8;
}
.legal-page .legal-content .legal-content__inner .legal-toc .legal-toc__card .legal-toc__nav a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
}
@media (max-width: 992px) {
  .legal-page .legal-content .legal-content__inner .legal-toc {
    position: static;
    top: auto;
  }
}
.legal-page .legal-content .legal-content__inner .legal-article {
  border-radius: 22px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section {
  scroll-margin-top: 110px;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section + .legal-section {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section h2 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #0A2B5C;
  font-weight: 1000;
}
@media (max-width: 480px) {
  .legal-page .legal-content .legal-content__inner .legal-article .legal-section h2 {
    font-size: 20px;
  }
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section h3 {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: -0.2px;
  color: #0A2B5C;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section p {
  margin-top: 12px;
  color: #334155;
  line-height: 1.8;
  font-size: 14.5px;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section ul {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section ul li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  line-height: 1.7;
  font-size: 14px;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1D4ED8;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.12);
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section a {
  color: #1D4ED8;
  font-weight: 1000;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section a:hover {
  color: #F59E0B;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-section strong {
  color: #0A2B5C;
  font-weight: 1000;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-contact {
  margin-top: 14px;
  border-radius: 18px;
  padding: 16px 14px;
  background: rgba(29, 78, 216, 0.06);
  border: 1px solid rgba(29, 78, 216, 0.14);
  display: grid;
  gap: 10px;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-contact .legal-contact__item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-contact .legal-contact__item .legal-contact__label {
  font-weight: 1000;
  color: #0A2B5C;
  opacity: 0.92;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-contact .legal-contact__item .legal-contact__value {
  font-weight: 900;
  color: #334155;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-contact .legal-contact__item .legal-contact__value.legal-contact__value[href] {
  color: #1D4ED8;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-contact .legal-contact__item .legal-contact__value:hover {
  color: #F59E0B;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-contact .legal-contact__item .legal-contact__value:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}
.legal-page .legal-content .legal-content__inner .legal-article .legal-note {
  margin-top: 14px;
  color: #64748B;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .legal-page .legal-content .legal-content__inner {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */