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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #111111;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font: inherit;
}

address {
  font-style: normal;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  max-width: 70ch;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #5F6B7A;
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #123D9A;
  margin-bottom: 0.75rem;
}

.text-muted {
  color: #5F6B7A;
}

.text-brand {
  color: #123D9A;
}

.text-white {
  color: #FFFFFF;
}

.text-center {
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-intro {
  margin-bottom: 3rem;
}

.section {
  padding-block: 5rem;
}
@media (max-width: 767px) {
  .section {
    padding-block: 3rem;
  }
}

.section--bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 251, 0.96)), repeating-linear-gradient(135deg, rgba(18, 61, 154, 0.035) 0 1px, transparent 1px 18px);
}

.section--dark {
  background: #0F172A;
  color: #FFFFFF;
}
.section--dark .lead {
  color: rgba(255, 255, 255, 0.7);
}
.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.section--brand {
  background: #123D9A;
  color: #FFFFFF;
}
.section--brand .lead {
  color: rgba(255, 255, 255, 0.85);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inline-center {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1023px) {
  .split--reverse .split__visual {
    order: -1;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E5EAF3;
  box-shadow: 0 1px 0 #E5EAF3;
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(18, 61, 154, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111111;
}
.logo-placeholder--white {
  color: #FFFFFF;
}
.logo-placeholder__dot {
  width: 10px;
  height: 10px;
  background: #123D9A;
  border-radius: 9999px;
  flex-shrink: 0;
}

.main-nav {
  margin-left: auto;
  margin-right: auto;
}
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav li a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6B7A;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav li a:hover {
  color: #123D9A;
  background: rgba(18, 61, 154, 0.06);
}
.main-nav li.active a {
  color: #123D9A;
  font-weight: 600;
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  border-radius: 4px;
  margin-left: auto;
  transition: background 0.15s ease;
}
.burger span {
  display: block;
  height: 2px;
  background: #111111;
  border-radius: 9999px;
  transition: transform 0.25s ease, opacity 0.15s ease, width 0.25s ease;
  transform-origin: center;
}
.burger span:nth-child(1) {
  width: 22px;
}
.burger span:nth-child(2) {
  width: 16px;
}
.burger span:nth-child(3) {
  width: 22px;
}
.burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}
.burger:hover {
  background: #F5F7FB;
}

@media (max-width: 1023px) {
  .site-header .header-cta {
    display: none;
  }
  .site-header .burger {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5EAF3;
    box-shadow: 0 8px 24px rgba(18, 61, 154, 0.1);
    padding: 1rem 0 1.5rem;
    margin-left: 0;
  }
  .main-nav.is-open {
    display: block;
  }
  .main-nav__list {
    flex-direction: column;
    gap: 0;
    padding-inline: 1.5rem;
  }
  .main-nav li a {
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
  }
  .main-nav::after {
    content: none;
  }
}
.site-footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}
.site-footer__watermark {
  position: absolute;
  right: max(2rem, 8vw);
  bottom: 4rem;
  width: min(220px, 42vw);
  opacity: 0.045;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 32ch;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-nav__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}
.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-contact .footer-nav__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.footer-contact address p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}
.footer-contact a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.25rem;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom__inner span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom__inner nav {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom__inner nav a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.15s ease;
}
.footer-bottom__inner nav a:hover {
  color: #FFFFFF;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--arrow::after {
  content: "→";
  font-size: 1em;
  transition: transform 0.15s ease;
}
.btn--arrow:hover::after {
  transform: translateX(3px);
}

.btn--primary {
  background: #123D9A;
  color: #FFFFFF;
  border-color: #123D9A;
}
.btn--primary:hover {
  background: #0D2E75;
  border-color: #0D2E75;
  box-shadow: 0 4px 16px rgba(18, 61, 154, 0.3);
}

.btn--secondary {
  background: transparent;
  color: #123D9A;
  border-color: #123D9A;
}
.btn--secondary:hover {
  background: #123D9A;
  color: #FFFFFF;
}

.btn--light {
  background: #FFFFFF;
  color: #123D9A;
  border-color: #FFFFFF;
}
.btn--light:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.15);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 16px;
}

.card {
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(18, 61, 154, 0.14);
  transform: translateY(-2px);
}
.card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 52px;
  height: 52px;
  background: url("../img/logo.svg") center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(18, 61, 154, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(18, 61, 154, 0.08);
}
.card__icon svg {
  color: #123D9A;
}
.card__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #123D9A;
  margin-bottom: 0.5rem;
}
.card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.card__body {
  font-size: 0.875rem;
  color: #5F6B7A;
  line-height: 1.75;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #123D9A;
  transition: gap 0.15s ease;
}
.card__link::after {
  content: "→";
}
.card__link:hover {
  gap: 0.75rem;
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.stat-card__value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #123D9A;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.stat-card__label {
  font-size: 0.875rem;
  color: #5F6B7A;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.benefit-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.benefit-card:hover {
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
}
.benefit-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  background: url("../img/logo.svg") center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.benefit-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(18, 61, 154, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #123D9A;
}
.benefit-card__content {
  flex: 1;
}
.benefit-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.benefit-card__text {
  font-size: 0.875rem;
  color: #5F6B7A;
  line-height: 1.6;
}

.brand-image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  background: #0F172A;
  box-shadow: 0 8px 32px rgba(18, 61, 154, 0.14);
}
.brand-image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.brand-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(15, 23, 42, 0.78) 100%);
  pointer-events: none;
}
.brand-image-panel figcaption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}
.brand-image-panel figcaption img {
  width: 34px;
  height: 34px;
  min-height: 0;
  object-fit: contain;
  flex-shrink: 0;
}

.mini-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.mini-metric-grid div {
  padding: 1.25rem;
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 8px;
}
.mini-metric-grid strong {
  display: block;
  color: #123D9A;
  font-size: 1.875rem;
  line-height: 1;
}
.mini-metric-grid span {
  display: block;
  margin-top: 0.5rem;
  color: #5F6B7A;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .mini-metric-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  position: relative;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
}
.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #123D9A;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.step-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step-card__text {
  font-size: 0.875rem;
  color: #5F6B7A;
  line-height: 1.75;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5F6B7A;
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  background: rgba(18, 61, 154, 0.1);
  border-radius: 9999px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9L7.5 12.5L14 6' stroke='%23123D9A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.8);
}
.check-list--light li::before {
  background-color: rgba(255, 255, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9L7.5 12.5L14 6' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111111;
}

.required-mark {
  color: #123D9A;
  margin-left: 2px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=file],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #111111;
  background: #FFFFFF;
  border: 1.5px solid #E5EAF3;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=file]:focus,
select:focus,
textarea:focus {
  border-color: #123D9A;
  box-shadow: 0 0 0 3px rgba(18, 61, 154, 0.12);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=file]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #5F6B7A;
}

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%235F6B7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

input[type=file] {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}
input[type=file]::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: #F5F7FB;
  border: 1px solid #E5EAF3;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
input[type=file]::file-selector-button:hover {
  background: #E5EAF3;
}

.form-hint {
  font-size: 0.75rem;
  color: #5F6B7A;
  margin-top: 0.25rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.form-check input[type=checkbox],
.form-check input[type=radio] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border: 1.5px solid #E5EAF3;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}
.form-check input[type=checkbox]:checked,
.form-check input[type=radio]:checked {
  background: #123D9A;
  border-color: #123D9A;
}
.form-check input[type=checkbox]:checked::after,
.form-check input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.form-check input[type=checkbox]:focus-visible,
.form-check input[type=radio]:focus-visible {
  outline: 2px solid #123D9A;
  outline-offset: 2px;
}
.form-check__label {
  font-size: 0.875rem;
  color: #5F6B7A;
  line-height: 1.5;
}
.form-check__label a {
  color: #123D9A;
  text-decoration: underline;
}
.form-check__label a:hover {
  text-decoration: none;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.alert--success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}
.alert--error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

.job-card {
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.job-card::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 5rem;
  width: 48px;
  height: 48px;
  background: url("../img/logo.svg") center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.job-card:hover {
  box-shadow: 0 8px 32px rgba(18, 61, 154, 0.14);
  transform: translateY(-2px);
  border-color: rgba(18, 61, 154, 0.25);
}
.job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.job-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #123D9A;
  background: rgba(18, 61, 154, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.job-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.job-card__teaser {
  font-size: 0.875rem;
  color: #5F6B7A;
  line-height: 1.65;
}
.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.job-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #5F6B7A;
}
.job-card__meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.06;
}
.job-card__salary {
  font-weight: 600;
  color: #111111;
}
.job-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #E5EAF3;
  flex-wrap: wrap;
}
.job-card__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #5F6B7A;
  background: #F5F7FB;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #E5EAF3;
}

.jobs-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
}
@media (max-width: 767px) {
  .jobs-filter {
    flex-direction: column;
    align-items: stretch;
  }
}
.jobs-filter label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.jobs-filter input[type=text],
.jobs-filter select {
  flex: 1;
  min-width: 160px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border: 1.5px solid #E5EAF3;
  border-radius: 8px;
  background: #F5F7FB;
  outline: none;
  transition: border-color 0.15s ease;
}
.jobs-filter input[type=text]:focus,
.jobs-filter select:focus {
  border-color: #123D9A;
}
.jobs-filter input[type=text] {
  flex: 2;
  min-width: 220px;
}

.jobs-count {
  font-size: 0.875rem;
  color: #5F6B7A;
  margin-bottom: 1.5rem;
}
.jobs-count strong {
  color: #111111;
  font-weight: 600;
}

.jobs-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #5F6B7A;
}
.jobs-empty p {
  font-size: 1.125rem;
}
.jobs-empty a {
  color: #123D9A;
  text-decoration: underline;
}

.hero {
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.9) 45%, rgba(13, 46, 117, 0.76) 100%), url("../img/hero-munich.png") center/cover no-repeat;
  color: #FFFFFF;
  padding-top: 2rem;
  padding-bottom: 8rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 340px;
  width: 220px;
  height: 220px;
  background: url("../img/logo-white.svg") center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .hero::after {
    right: 20px;
    top: 10px;
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-block: 3rem;
  }
}

.hero__brand-mark {
  width: min(190px, 55vw);
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}
.hero__label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #123D9A;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: normal;
  color: #123D9A;
}

.hero__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__visual {
  display: grid;
  gap: 1.25rem;
}

.hero-photo {
  position: relative;
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.24);
}
.hero-photo > img:first-child {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.65));
  pointer-events: none;
}
.hero-photo__logo {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: auto;
  z-index: 1;
}

.hero-trust {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.18);
}
.hero-trust__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}
.hero-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-trust__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.25rem;
  transition: background 0.25s ease;
}
.hero-trust__item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hero-trust__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.hero-trust__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
  line-height: 1.4;
}
.hero-trust__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-block: 1.5rem;
}
.hero-trust__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.hero-trust__footer::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 9999px;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}

.visual-proof {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FB 100%);
}

.visual-proof__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .visual-proof__inner {
    grid-template-columns: 1fr;
  }
}

.visual-proof__logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

.visual-proof__gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .visual-proof__gallery {
    grid-template-columns: 1fr;
  }
}

.visual-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 16px;
  background: #0F172A;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
}
.visual-tile--large {
  grid-row: span 2;
}
@media (max-width: 767px) {
  .visual-tile--large {
    grid-row: auto;
  }
}
.visual-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.75));
}
.visual-tile figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
}

.trust-section {
  background: #F5F7FB;
  border-bottom: 1px solid #E5EAF3;
}
.trust-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .trust-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.trust-section__title {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.trust-section__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .trust-section__stats {
    grid-template-columns: 1fr;
  }
}
.trust-section__stat {
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 8px;
}
.trust-section__stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #123D9A;
  letter-spacing: -0.04em;
}
.trust-section__stat-label {
  font-size: 0.875rem;
  color: #5F6B7A;
  margin-top: 0.25rem;
}

.process-preview__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-preview__steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, #E5EAF3, #E5EAF3);
  background-image: repeating-linear-gradient(90deg, #E5EAF3 0, #E5EAF3 6px, transparent 6px, transparent 12px);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1023px) {
  .process-preview__steps {
    grid-template-columns: 1fr;
  }
  .process-preview__steps::before {
    display: none;
  }
}
.process-preview__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}
.process-preview__number {
  width: 36px;
  height: 36px;
  background: #123D9A;
  color: #FFFFFF;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.process-preview__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.process-preview__text {
  font-size: 0.875rem;
  color: #5F6B7A;
  line-height: 1.7;
}

.jobs-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .jobs-teaser__grid {
    grid-template-columns: 1fr;
  }
}

.home-cta {
  text-align: center;
  padding-block: 5rem;
  background: linear-gradient(120deg, rgba(13, 46, 117, 0.92), rgba(18, 61, 154, 0.92)), url("../img/site/office-consulting-wide.jpg") center/cover no-repeat;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.home-cta::after {
  content: "";
  position: absolute;
  right: max(0.5rem, 1vw);
  bottom: 2rem;
  width: min(280px, 58vw);
  height: 80px;
  background: url("../img/logo-white.svg") center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.home-cta__logo {
  width: min(190px, 58vw);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.home-cta__title {
  font-size: clamp(1.875rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  position: relative;
}
.home-cta__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-inline: auto;
  position: relative;
}
.home-cta .btn {
  position: relative;
}

.proof-banner {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  padding-bottom: 4rem;
}
.proof-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(18, 61, 154, 0.12);
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 24px 70px rgba(4, 13, 34, 0.12);
}
.proof-banner__item {
  display: grid;
  justify-items: center;
  gap: 1rem;
  min-height: 12rem;
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid #E5EAF3;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.proof-banner__item:last-child {
  border-right: 0;
}
.proof-banner__item:hover {
  background-color: rgba(18, 61, 154, 0.035);
  transform: translateY(-0.2rem);
}
.proof-banner__item:hover .proof-banner__icon {
  background: #123D9A;
  color: #FFFFFF;
  box-shadow: 0 16px 34px rgba(18, 61, 154, 0.24);
}
.proof-banner__item p {
  max-width: 13rem;
  margin: 0;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.42;
}
.proof-banner__icon {
  display: inline-grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid rgba(18, 61, 154, 0.16);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(18, 61, 154, 0.12), rgba(18, 61, 154, 0.03)), #FFFFFF;
  color: #123D9A;
  transition: all 0.3s ease;
}
.proof-banner__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 991.98px) {
  .proof-banner {
    margin-top: -2rem;
  }
  .proof-banner__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-banner__item {
    min-height: 11rem;
  }
  .proof-banner__item:nth-child(2) {
    border-right: 0;
  }
  .proof-banner__item:nth-child(-n+2) {
    border-bottom: 1px solid #E5EAF3;
  }
}
@media (max-width: 575.98px) {
  .proof-banner {
    margin-top: 0;
    padding: 2rem 0;
    background: #FFFFFF;
  }
  .proof-banner__grid {
    grid-template-columns: 1fr;
    box-shadow: 0 16px 46px rgba(4, 13, 34, 0.1);
  }
  .proof-banner__item {
    min-height: 0;
    padding: 1.35rem 1rem;
    border-right: 0;
    border-bottom: 1px solid #E5EAF3;
  }
  .proof-banner__item:last-child {
    border-bottom: 0;
  }
  .proof-banner__icon {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.page-hero {
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.88) 52%, rgba(13, 46, 117, 0.76) 100%), url("../img/site/business-meeting-wide.jpg") center/cover no-repeat;
  color: #FFFFFF;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: max(2rem, 10vw);
  bottom: -4rem;
  width: min(300px, 48vw);
  height: 260px;
  background: url("../img/logo-white.svg") center/contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}
.page-hero__eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #1E51C4;
}
.page-hero__logo {
  width: min(190px, 52vw);
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.92;
}
.page-hero__title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 20ch;
}
.page-hero__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 58ch;
  margin-bottom: 2rem;
}

.page-candidates .page-hero {
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.86) 52%, rgba(13, 46, 117, 0.72) 100%), url("../img/site/candidate-interview-wide.jpg") center/cover no-repeat;
}

.page-jobs .page-hero {
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.88) 52%, rgba(13, 46, 117, 0.72) 100%), url("../img/site/team-workshop-wide.jpg") center/cover no-repeat;
}

.page-about .page-hero {
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.86) 52%, rgba(13, 46, 117, 0.72) 100%), url("../img/site/office-consulting-wide.jpg") center/cover no-repeat;
}

.page-contact .page-hero {
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.88) 52%, rgba(13, 46, 117, 0.74) 100%), url("../img/site/hero-munich-wide.jpg") center/cover no-repeat;
}

.company-image-section {
  background: #FFFFFF;
}

.company-image-section__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .company-image-section__inner {
    grid-template-columns: 1fr;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1023px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.process-detailed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
}
@media (max-width: 767px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.process-step__number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.process-step__badge {
  width: 48px;
  height: 48px;
  background: #123D9A;
  color: #FFFFFF;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step__line {
  width: 2px;
  flex: 1;
  background: #E5EAF3;
  border-radius: 9999px;
  min-height: 40px;
}
.process-step__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.process-step__text {
  font-size: 0.875rem;
  color: #5F6B7A;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.process-step:last-child .process-step__line {
  display: none;
}

.guarantee-box {
  background: #0F172A;
  color: #FFFFFF;
  border-radius: 24px;
  padding: 3rem;
}
@media (max-width: 767px) {
  .guarantee-box {
    padding: 2rem;
  }
}
.guarantee-box__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .guarantee-box__inner {
    grid-template-columns: 1fr;
  }
}
.guarantee-box__title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.guarantee-box__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.guarantee-box__statement {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}

.candidates-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .candidates-intro {
    grid-template-columns: 1fr;
  }
}

.candidates-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.candidates-pillars .brand-image-panel {
  grid-column: 1/-1;
  min-height: 260px;
}
@media (max-width: 767px) {
  .candidates-pillars {
    grid-template-columns: 1fr;
  }
}

.jobs-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .jobs-page__grid {
    grid-template-columns: 1fr;
  }
}

.jobs-visual-summary {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
  overflow: hidden;
  position: relative;
}
.jobs-visual-summary::after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 1.5rem;
  width: 80px;
  height: 80px;
  background: url("../img/logo.svg") center/contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}
.jobs-visual-summary h2 {
  font-size: 1.875rem;
  letter-spacing: -0.03em;
  margin-block: 0.75rem;
}
.jobs-visual-summary p {
  color: #5F6B7A;
  line-height: 1.75;
  max-width: 52ch;
}
.jobs-visual-summary figure {
  border-radius: 16px;
  overflow: hidden;
  min-height: 250px;
}
.jobs-visual-summary figure img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.jobs-visual-summary__logo {
  width: 160px;
  height: auto;
  margin-bottom: 1.25rem;
}
@media (max-width: 1023px) {
  .jobs-visual-summary {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .jobs-visual-summary {
    padding: 1.25rem;
  }
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-accent-block {
  background: #123D9A;
  color: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem;
  position: sticky;
  top: 100px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .about-accent-block {
    position: static;
  }
}
.about-accent-block::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -1rem;
  width: 180px;
  height: 180px;
  background: url("../img/logo-white.svg") center/contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.about-accent-block__image {
  margin: -2.5rem -2.5rem 2rem;
  height: 220px;
  overflow: hidden;
}
.about-accent-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .about-accent-block__image {
    margin: -2rem -2rem 1.5rem;
  }
}
.about-accent-block__logo {
  width: 160px;
  height: auto;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.about-accent-block__quote {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.about-accent-block__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}
.about-accent-block__stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.about-accent-block__stat strong {
  font-size: 1.875rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
}

.about-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-text-blocks h2 {
  margin-bottom: 1rem;
}
.about-text-blocks p {
  font-size: 1.125rem;
  color: #5F6B7A;
  line-height: 1.8;
  max-width: 58ch;
}
.about-text-blocks p + p {
  margin-top: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info {
  position: relative;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info__item-icon {
  width: 40px;
  height: 40px;
  background: rgba(18, 61, 154, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #123D9A;
}
.contact-info__item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5F6B7A;
  margin-bottom: 0.25rem;
}
.contact-info__item-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111111;
}
.contact-info__item a {
  transition: color 0.15s ease;
}
.contact-info__item a:hover {
  color: #123D9A;
}

.contact-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 240px;
  margin-bottom: 2rem;
  background: #0F172A;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
}
.contact-image-card > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.contact-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.78));
}
.contact-image-card figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
}
.contact-image-card figcaption img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-form-box {
  background: #FFFFFF;
  border: 1px solid #E5EAF3;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(18, 61, 154, 0.08);
}
@media (max-width: 767px) {
  .contact-form-box {
    padding: 1.5rem;
  }
}

.text-center {
  text-align: center;
}

.mt-auto {
  margin-top: auto;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 4rem;
}
.legal-content h1 {
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p,
.legal-content li {
  font-size: 1rem;
  color: #5F6B7A;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content a {
  color: #123D9A;
  text-decoration: underline;
}
.legal-content address p {
  font-style: normal;
}
@media (max-width: 991.98px) {
  .legal-content h1 {
    font-size: 1.875rem;
  }
}

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