:root {
  --by-primary: #2563eb;
  --by-primary-dark: #1d4ed8;
  --by-primary-soft: #3b82f6;
  --by-ink: #0f172a;
  --by-muted: #64748b;
  --by-surface: #f4f6fb;
  --by-border: #e6ebf4;
  --by-navy: #04070f;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.55);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -56px;
  left: 16px;
  z-index: 2000;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.25s ease;
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}
.brand__text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  white-space: nowrap;
}

.section {
  padding: 96px 0;
}

.section__head {
  margin-bottom: 48px;
}
.section__head--tight {
  margin-bottom: 44px;
}

.section__title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
}
.section__title--on-dark {
  color: #fff;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
}
.eyebrow--on-dark {
  color: #3b82f6;
}

.btn-pill {
  border-radius: 999px;
}

.btn-primary {
  --bs-btn-bg: #2563eb;
  --bs-btn-border-color: #2563eb;
  --bs-btn-hover-bg: #1d4ed8;
  --bs-btn-hover-border-color: #1d4ed8;
  --bs-btn-active-bg: #1d4ed8;
  --bs-btn-active-border-color: #1d4ed8;
  --bs-btn-font-weight: 600;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.38);
}

.btn-outline-primary {
  --bs-btn-color: #2563eb;
  --bs-btn-border-color: rgba(37, 99, 235, 0.45);
  --bs-btn-hover-bg: #2563eb;
  --bs-btn-hover-border-color: #2563eb;
  --bs-btn-font-weight: 600;
}

.btn-outline-ghost {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, .35);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, .08);
  --bs-btn-hover-border-color: rgba(255, 255, 255, .6);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(255, 255, 255, .12);
  --bs-btn-active-border-color: rgba(255, 255, 255, .6);
  --bs-btn-font-weight: 600;
}

.btn-lg-cta {
  padding: 13px 28px;
  font-size: 15px;
}

@media (max-width: 991.98px) {
  .section {
    padding: 72px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.site-header {
  z-index: 1030;
  background: rgba(4, 7, 15, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(4, 7, 15, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.site-header .navbar {
  padding: 14px 0;
}

.nav-menu {
  gap: 6px;
}
.nav-menu .nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.78);
  padding: 8px 12px;
}
.nav-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: #3b82f6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-menu .nav-link:hover, .nav-menu .nav-link:focus-visible {
  color: #fff;
}
.nav-menu .nav-link:hover::after, .nav-menu .nav-link:focus-visible::after {
  transform: scaleX(1);
}
.nav-menu .nav-link.active {
  color: #fff;
}
.nav-menu .nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 9px 22px;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 16px 0 8px;
  }
  .header-cta {
    margin-top: 10px;
    align-self: flex-start;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 152px 0 64px;
  background: radial-gradient(1000px 620px at 68% 30%, rgba(37, 99, 235, 0.14), transparent 62%), linear-gradient(180deg, #04070f 0%, #060c1c 55%, #071021 100%);
}
.hero__media {
  position: absolute;
  top: 68px;
  right: 0;
  bottom: 0;
  width: 58%;
  margin: 0;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
}
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 22px;
}
.hero__title-accent {
  color: #3b82f6;
}
.hero__lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.85);
  max-width: 470px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 991.98px) {
  .hero {
    padding: 124px 0 0;
  }
  .hero__media {
    position: relative;
    top: auto;
    width: 100%;
    height: 320px;
    margin-top: 40px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 32%);
  }
}
.stats {
  background: #fff;
  padding: 44px 0;
  border-bottom: 1px solid #e6ebf4;
}
.stats__row {
  row-gap: 28px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.stat__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e9f0fe;
  color: #2563eb;
  font-size: 22px;
}
.stat__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.stat__number {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0f172a;
}
.stat__label {
  font-size: 13.5px;
  color: #64748b;
  margin-top: 2px;
}

@media (min-width: 992px) {
  .stats__row > [class*=col-]:not(:first-child) {
    border-left: 1px solid #e6ebf4;
  }
}
.services {
  background: #f4f6fb;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 14px;
  padding: 26px 22px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card__icon {
  font-size: 30px;
  line-height: 1;
  color: #2563eb;
  margin-bottom: 18px;
}
.service-card__title {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 18px;
}
.service-card__link {
  margin-top: auto;
  align-self: flex-end;
  display: inline-flex;
  color: #2563eb;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.service-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.16);
}
.service-card:hover .service-card__link, .service-card:focus-within .service-card__link {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .service-card:focus-within {
    transform: none;
  }
}
.sectors {
  background: #fff;
}

.sectors__grid {
  margin-bottom: 56px;
}

.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sector__icon {
  font-size: 30px;
  line-height: 1;
  color: #2563eb;
  transition: transform 0.25s ease;
}
.sector__label {
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  max-width: 160px;
}
.sector:hover .sector__icon {
  transform: translateY(-4px);
}

.ref-strip {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ref-strip__nav {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #e6ebf4;
  background: #fff;
  color: #64748b;
  font-size: 16px;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ref-strip__nav:hover {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}
.ref-strip__panel {
  flex: 1;
  min-width: 0;
  background: #060d1f;
  border-radius: 14px;
  padding: 18px 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.ref-strip__panel .swiper-wrapper.is-marquee {
  width: max-content;
  flex-wrap: nowrap;
}

#refSwiper.ref-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#refSwiper.ref-scroller::-webkit-scrollbar {
  display: none;
}
#refSwiper.ref-scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.ref-logo {
  width: 264px;
  margin-right: 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: auto;
}
.ref-logo__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 94px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.ref-logo__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.ref-logo__icon {
  font-size: 42px;
  line-height: 1;
  color: #2563eb;
}
.ref-logo__name {
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  max-width: 190px;
}
.ref-logo--link {
  text-decoration: none;
  cursor: pointer;
}
.ref-logo--link .ref-logo__chip {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ref-logo--link .ref-logo__name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3b82f6;
  font-weight: 600;
}
.ref-logo--link .ref-logo__go {
  font-size: 12px;
  transition: transform 0.25s ease;
}
.ref-logo--link:hover .ref-logo__chip, .ref-logo--link:focus-visible .ref-logo__chip {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}
.ref-logo--link:hover .ref-logo__name, .ref-logo--link:focus-visible .ref-logo__name {
  color: #fff;
}
.ref-logo--link:hover .ref-logo__go, .ref-logo--link:focus-visible .ref-logo__go {
  transform: translateX(3px);
}

@media (max-width: 575.98px) {
  .ref-strip {
    gap: 10px;
  }
  .ref-strip__panel {
    padding: 16px;
  }
  .ref-strip__nav {
    width: 36px;
    height: 36px;
  }
}
.process {
  background: radial-gradient(900px 420px at 50% 0%, rgba(37, 99, 235, 0.14), transparent 70%), #0a1836;
}

.process__track {
  position: relative;
  margin: 0;
}
.process__track::before {
  content: "";
  position: absolute;
  top: calc(3rem + 24px);
  left: 10%;
  right: 10%;
  border-top: 2px dashed rgba(96, 140, 255, 0.35);
}

.process-step {
  position: relative;
  text-align: center;
}
.process-step__badge {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4);
}
.process-step__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.process-step__text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.6);
  max-width: 210px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .process__track::before {
    display: none;
  }
}
.why {
  background: #f4f6fb;
}

.why__grid {
  text-align: center;
}

.why-item {
  padding-left: 18px;
  padding-right: 18px;
}
.why-item__icon {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  color: #2563eb;
  margin-bottom: 14px;
}
.why-item__title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.why-item__text {
  font-size: 12.5px;
  line-height: 1.6;
  color: #64748b;
  max-width: 210px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .why__grid > .why-item:not(:first-child) {
    border-left: 1px solid #e2e8f0;
  }
}
.blog {
  background: #fff;
}

.blog__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 44px;
}

.blog__eyebrow {
  margin-bottom: 0;
}

.blog__all {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13.5px;
  padding: 9px 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease;
}
.blog-card__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #071021;
  margin-bottom: 18px;
}
.blog-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 10px;
}
.blog-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 14px;
}
.blog-card__link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}
.blog-card__link i {
  transition: transform 0.25s ease;
}
.blog-card__link:hover, .blog-card__link:focus-visible {
  color: #1d4ed8;
}
.blog-card__link:hover i, .blog-card__link:focus-visible i {
  transform: translateX(4px);
}
.blog-card:hover {
  transform: translateY(-6px);
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .blog__head {
    flex-direction: column;
    gap: 18px;
  }
  .blog__all {
    position: static;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .blog-card:hover {
    transform: none;
  }
  .blog-card:hover .blog-card__media img {
    transform: none;
  }
}
.site-footer {
  background: #04070f;
  color: rgba(203, 213, 225, 0.75);
  padding-top: 72px;
}
.site-footer__grid {
  padding-bottom: 56px;
}
.site-footer__brand {
  margin-bottom: 20px;
}
.site-footer__about {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(148, 163, 184, 0.85);
  max-width: 280px;
}
.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.site-footer__heading {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.site-footer__links li + li {
  margin-top: 10px;
}
.site-footer__links a {
  font-size: 13.5px;
  color: rgba(148, 163, 184, 0.9);
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer__links a:hover, .site-footer__links a:focus-visible {
  color: #fff;
}
.site-footer__contact li {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.6;
}
.site-footer__contact li + li {
  margin-top: 14px;
}
.site-footer__contact i {
  color: #3b82f6;
  font-size: 15px;
  margin-top: 2px;
}
.site-footer__contact a {
  color: rgba(148, 163, 184, 0.9);
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer__contact a:hover, .site-footer__contact a:focus-visible {
  color: #fff;
}
.site-footer__newsletter-text {
  font-size: 13.5px;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 14px;
}
.site-footer__newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.site-footer__newsletter .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  font-size: 13.5px;
  padding: 10px 14px;
}
.site-footer__newsletter .form-control::placeholder {
  color: rgba(148, 163, 184, 0.7);
}
.site-footer__newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.18);
  color: #fff;
}
.site-footer__newsletter .btn {
  padding: 8px 20px;
  font-size: 13px;
  box-shadow: none;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(148, 163, 184, 0.7);
}
.site-footer__legal {
  display: flex;
  gap: 28px;
}
.site-footer__legal a {
  font-size: 12.5px;
  color: rgba(148, 163, 184, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer__legal a:hover, .site-footer__legal a:focus-visible {
  color: #fff;
}

.social-link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.social-link:hover, .social-link:focus-visible {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

.page-hero {
  position: relative;
  padding: 132px 0 56px;
  background: radial-gradient(900px 500px at 78% 20%, rgba(37, 99, 235, 0.18), transparent 62%), linear-gradient(180deg, #04070f 0%, #060c1c 60%, #071021 100%);
}
.page-hero__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.page-hero__brand img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.page-hero__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 140, 255, 0.3);
  color: #3b82f6;
  font-size: 30px;
}
.page-hero__title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.page-hero__lead {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.85);
}
.page-hero__lead strong {
  color: #fff;
  font-weight: 700;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(148, 163, 184, 0.8);
  margin-bottom: 26px;
}
.breadcrumb-nav a {
  color: rgba(203, 213, 225, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}
.breadcrumb-nav a:hover, .breadcrumb-nav a:focus-visible {
  color: #fff;
}
.breadcrumb-nav i {
  font-size: 11px;
  opacity: 0.6;
}
.breadcrumb-nav [aria-current=page] {
  color: #3b82f6;
  font-weight: 600;
}

.prose {
  max-width: 780px;
}
.prose p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 18px;
}
.prose strong {
  color: #0f172a;
  font-weight: 600;
}
.prose a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease;
}
.prose a:hover, .prose a:focus-visible {
  color: #1d4ed8;
}
.prose ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}
.prose li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #64748b;
  margin-bottom: 10px;
}
.prose li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
}
.prose h2 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 40px 0 14px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 28px 0 10px;
}
.prose__intro {
  font-size: 16.5px;
  line-height: 1.75;
  color: #0f172a;
  font-weight: 500;
  padding: 18px 22px;
  border-left: 3px solid #2563eb;
  background: #eef3fd;
  border-radius: 0 10px 10px 0;
  margin-bottom: 34px;
}

.about-figure {
  margin: 0;
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.about-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.about-figure__caption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: #64748b;
}
.about-figure__caption i {
  color: #2563eb;
  font-size: 14px;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .about-figure {
    position: sticky;
    top: 104px;
  }
}
.mv {
  background: #f4f6fb;
}

.mv-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 14px;
  padding: 30px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mv-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e9f0fe;
  color: #2563eb;
  font-size: 20px;
  margin-bottom: 18px;
}
.mv-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 12px;
}
.mv-card__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #64748b;
  margin: 0;
}
.mv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .mv-card:hover {
    transform: none;
  }
}
.contact {
  background: #f4f6fb;
}

.contact-card {
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 14px;
  padding: 34px 32px;
}
.contact-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 26px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 7px;
}
.form-field label span {
  color: #2563eb;
}
.form-field .validation-message {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: #dc2626;
}

.form-control-line {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e6ebf4;
  border-radius: 10px;
  background: #fff;
  font-size: 14.5px;
  font-family: inherit;
  color: #0f172a;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control-line::placeholder {
  color: #9aa6b8;
}
.form-control-line:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 0.22rem rgba(37, 99, 235, 0.14);
}
.form-control-line.invalid {
  border-color: #dc2626;
}

textarea.form-control-line {
  resize: vertical;
  min-height: 130px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 400 !important;
  color: #64748b;
  cursor: pointer;
}
.contact-consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #2563eb;
}
.contact-consent a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.6;
}
.contact-alert i {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-alert strong {
  display: block;
  margin-bottom: 2px;
}
.contact-alert a {
  color: inherit;
  font-weight: 600;
}
.contact-alert--success {
  background: #eaf7ef;
  border: 1px solid #b7e4c7;
  color: #1b7a43;
}
.contact-alert--error {
  background: #fdecec;
  border: 1px solid #f5c2c2;
  color: #b42318;
}

.contact-info {
  margin: 0 0 24px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e6ebf4;
}
.contact-info__item:first-child {
  padding-top: 0;
}
.contact-info__item:last-child {
  border-bottom: 0;
}
.contact-info__item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.contact-info__item p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}
.contact-info__item a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-info__item a:hover, .contact-info__item a:focus-visible {
  color: #2563eb;
}
.contact-info__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e9f0fe;
  color: #2563eb;
  font-size: 18px;
}

.contact-figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6ebf4;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.contact-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 575.98px) {
  .contact-card {
    padding: 26px 20px;
  }
}
.reflist {
  background: #f4f6fb;
}

.reflist__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.reflist__search {
  position: relative;
  flex: 1;
  max-width: 420px;
}
.reflist__search i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 15px;
  pointer-events: none;
}

.reflist__input {
  width: 100%;
  height: 46px;
  padding: 0 18px 0 42px;
  border: 1px solid #e6ebf4;
  border-radius: 999px;
  background: #fff;
  font-size: 14.5px;
  color: #0f172a;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.reflist__input::placeholder {
  color: #64748b;
}
.reflist__input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.14);
}

.reflist__count {
  font-size: 13.5px;
  color: #64748b;
}
.reflist__count strong {
  color: #0f172a;
  font-weight: 700;
}

.reflist__empty {
  text-align: center;
  font-size: 15px;
  color: #64748b;
  padding: 40px 0;
}

.reflist__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reflist-group__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e6ebf4;
}
.reflist-group__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 0;
}
.reflist-group__badge {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e9f0fe;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
}
.reflist-group__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 12px;
  margin: 0;
}

.reflist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 10px;
  padding: 12px 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.reflist-item__icon {
  color: #2563eb;
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}
.reflist-item__name {
  font-size: 13.5px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.4;
}
.reflist-item:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .reflist-item:hover {
    transform: none;
  }
}
.projects {
  background: #f4f6fb;
}

.projects__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.projects__filter {
  padding: 8px 18px;
  border: 1px solid #e6ebf4;
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.projects__filter:hover {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.45);
}
.projects__filter.is-active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.project-detail {
  background: #fff;
}
.project-detail__media {
  margin: 0 0 44px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6ebf4;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.project-detail__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
}

.project-aside {
  background: #f4f6fb;
  border: 1px solid #e6ebf4;
  border-radius: 14px;
  padding: 28px 26px;
}
.project-aside__title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}
.project-aside__subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin: 24px 0 12px;
}
.project-aside__meta {
  margin: 0;
}
.project-aside__meta dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.project-aside__meta dd {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
.project-aside__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.project-aside__tags li {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9f0fe;
  color: #2563eb;
  font-size: 12.5px;
  font-weight: 600;
}
.project-aside__cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e6ebf4;
}
.project-aside__cta p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 14px;
}

.project-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid #e6ebf4;
}
.project-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 46%;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.25s ease;
}
.project-nav__link small {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 3px;
}
.project-nav__link i {
  font-size: 16px;
  color: #2563eb;
  flex-shrink: 0;
}
.project-nav__link--next {
  text-align: right;
  margin-left: auto;
}
.project-nav__link:hover, .project-nav__link:focus-visible {
  color: #2563eb;
}

@media (max-width: 575.98px) {
  .project-nav {
    flex-direction: column;
  }
  .project-nav__link {
    max-width: 100%;
  }
  .project-nav__link--next {
    text-align: left;
    margin-left: 0;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
