html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
}

:focus {
  outline: 2px dashed #5787B4;
  outline-offset: 3px;
}

.top-bar {
  background: #5787B4;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06), inset 0 2px 4px rgba(255, 255, 255, 0.9), inset 0 -2px 4px rgba(87, 135, 180, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.logo-ring img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: 'Cormorant', serif;
  font-size: 37px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.top-bar-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.contact-phone {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.1s ease-out;
}

.contact-phone:hover {
  color: #E3E9EB;
}

.contact-messengers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.messenger-link {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  padding: 4px 8px;
  transition: background 0.08s ease-out, color 0.08s ease-out;
}

.messenger-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.nav-bar {
  background: #fff;
  border-bottom: 2px solid #E3E9EB;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
}

.nav-bar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
}

.nav-link {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2d3a4a;
  text-decoration: none;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.1s ease-out, border-color 0.1s ease-out;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-link:hover {
  color: #5787B4;
  border-bottom-color: #5787B4;
}

.nav-link[data-current] {
  color: #5787B4;
  border-bottom-color: #5787B4;
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
  }

  .top-bar-contact {
    align-items: flex-start;
  }

  .brand-name {
    font-size: 27px;
  }

  .logo-ring {
    width: 64px;
    height: 64px;
  }

  .logo-ring img {
    width: 48px;
    height: 48px;
  }

  .nav-bar-inner {
    padding: 0 8px;
    flex-wrap: wrap;
  }

  .nav-link {
    padding: 12px 8px;
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .brand-name {
    font-size: 20px;
  }

  .nav-link {
    font-size: 13px;
    padding: 8px 4px;
  }
}

.site-footer {
  background: #2d3a4a;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg,
      rgba(87, 135, 180, 0.04) 0px,
      rgba(87, 135, 180, 0.04) 1px,
      transparent 1px,
      transparent 12px);
  pointer-events: none;
}

.footer-utility {
  border-bottom: 1px solid rgba(165, 173, 200, 0.2);
  padding: 8px 32px;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-policy-link {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  color: rgba(165, 173, 200, 0.8);
  text-decoration: none;
  transition: color 0.1s ease-out;
}

.footer-policy-link:hover {
  color: #A5ADC8;
}

.footer-body {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 32px 32px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 auto;
}

.footer-logo-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06), 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  border: 2px solid rgba(165, 173, 200, 0.3);
}

.footer-logo-ring img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.footer-brand-name {
  font-family: 'Cormorant', serif;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.footer-desc {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  color: rgba(165, 173, 200, 0.85);
  line-height: 1.75;
  max-width: 280px;
}

.footer-contact-link {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #A5ADC8;
  text-decoration: none;
  border-bottom: 1px solid rgba(165, 173, 200, 0.4);
  padding-bottom: 4px;
  transition: color 0.1s ease-out, border-color 0.1s ease-out;
  display: inline-block;
}

.footer-contact-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.footer-address {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  color: rgba(165, 173, 200, 0.65);
  line-height: 1.75;
  flex: 1 1 auto;
  padding-top: 8px;
}

.footer-copy {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  color: rgba(165, 173, 200, 0.5);
  padding: 16px 32px;
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1px solid rgba(165, 173, 200, 0.1);
}

@media (max-width: 768px) {
  .footer-utility {
    gap: 16px;
    padding: 8px 16px;
  }

  .footer-body {
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px;
  }

  .footer-copy {
    padding: 16px;
  }
}

.consent-strip {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4000;
  background: #fff;
  border-bottom: 2px solid #E3E9EB;
  box-shadow: 1px 12px 52px 1px rgba(87, 135, 180, 0.10);
  padding: 16px 32px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  transform: translateX(100%);
  transition: transform 0.42s ease-out;
}

.consent-strip[data-visible] {
  transform: translateX(0);
}

.consent-text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consent-headline {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 700;
  color: #2d3a4a;
  line-height: 1.1;
}

.consent-body {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  color: #3d4d5c;
  line-height: 1.75;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.consent-btn {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 32px;
  border-radius: 2px;
  cursor: pointer;
  border: 2px solid #5787B4;
  background: transparent;
  color: #5787B4;
  transition: background 0.1s ease-out, color 0.1s ease-out;
  min-height: 44px;
}

.consent-btn:hover,
.consent-btn:focus {
  background: #5787B4;
  color: #fff;
}

.consent-btn.decline {
  border-color: #A5ADC8;
  color: #A5ADC8;
}

.consent-btn.decline:hover,
.consent-btn.decline:focus {
  background: #A5ADC8;
  color: #fff;
}

.mini-consent {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 3999;
  background: #5787B4;
  color: #fff;
  border-radius: 24px;
  padding: 8px 16px;
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  border: none;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  min-height: 44px;
  transition: background 0.1s ease-out;
}

.mini-consent:hover,
.mini-consent:focus {
  background: #2d3a4a;
}

.doc-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #2c3a4a;
}

.doc-wrapper h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  margin-top: 0;
  color: #1a2b3c;
}

.doc-wrapper h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-top: 64px;
  margin-bottom: 16px;
  color: #1e2e40;
}

.doc-wrapper h3 {
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #243444;
}

.doc-wrapper h4 {
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: -0.005em;
  margin-top: 32px;
  margin-bottom: 8px;
  color: #2c3a4a;
}

.doc-wrapper h5 {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #2c3a4a;
}

.doc-wrapper h6 {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #3a4a5c;
  text-transform: uppercase;
}

.doc-wrapper p {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 16px;
  color: #2c3a4a;
}

.doc-wrapper ul,
.doc-wrapper ol {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  color: #2c3a4a;
}

.doc-wrapper ul {
  list-style: none;
  padding-left: 16px;
}

.doc-wrapper ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.doc-wrapper ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #5787B4;
}

.doc-wrapper ol {
  list-style: decimal;
}

.doc-wrapper ol li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.doc-wrapper ol li::marker {
  color: #5787B4;
  font-weight: 700;
}

.doc-wrapper ul ul,
.doc-wrapper ol ol,
.doc-wrapper ul ol,
.doc-wrapper ol ul {
  margin-top: 8px;
  margin-bottom: 4px;
}

.doc-wrapper strong,
.doc-wrapper b {
  font-weight: 700;
  color: #1e2e40;
}

.doc-wrapper a {
  color: #5787B4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.1s ease-out, text-decoration-color 0.08s linear;
}

.doc-wrapper a:hover {
  color: #3a6494;
  text-decoration-color: #A5ADC8;
}

.doc-wrapper a:visited {
  color: #7a6aaa;
}

.doc-wrapper hr {
  border: none;
  border-top: 1px solid #E3E9EB;
  margin-top: 64px;
  margin-bottom: 64px;
  box-shadow: 0 1px 3px 0 rgba(87, 135, 180, 0.06);
}

.doc-wrapper div {
  font-size: 16px;
  line-height: 1.75;
}

.doc-wrapper div.notice {
  background: #E3E9EB;
  border-radius: 2px;
  padding: 16px 32px;
  margin-bottom: 32px;
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.doc-wrapper div.highlight {
  background: #f4f7fb;
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
}

@media (max-width: 1024px) {
  .doc-wrapper {
    padding: 64px 32px;
  }

  .doc-wrapper h1 {
    font-size: 37px;
  }

  .doc-wrapper h2 {
    font-size: 27px;
  }

  .doc-wrapper h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .doc-wrapper {
    padding: 32px 16px;
  }

  .doc-wrapper h1 {
    font-size: 27px;
  }

  .doc-wrapper h2 {
    font-size: 20px;
    margin-top: 32px;
  }

  .doc-wrapper h3 {
    font-size: 16px;
  }

  .doc-wrapper h4,
  .doc-wrapper h5,
  .doc-wrapper h6 {
    font-size: 14px;
  }

  .doc-wrapper hr {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .doc-wrapper div.highlight {
    padding: 16px;
    border-radius: 2px;
  }
}

@media (max-width: 320px) {
  .doc-wrapper {
    padding: 16px 8px;
  }

  .doc-wrapper ul,
  .doc-wrapper ol {
    padding-left: 16px;
  }
}

.lead {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
}

.lead .pitch {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  padding: 64px 64px 64px 64px;
  position: relative;
  background: #fff;
  align-items: center;
}

.lead .pitch-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 2px;
}

.lead .pitch-blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.18;
}

.lead .pitch-blobs span:nth-child(1) {
  width: 320px;
  height: 320px;
  background: #5787B4;
  top: -80px;
  left: -60px;
}

.lead .pitch-blobs span:nth-child(2) {
  width: 220px;
  height: 220px;
  background: #A5ADC8;
  bottom: -40px;
  right: 120px;
}

.lead .pitch-text {
  position: relative;
  z-index: 1;
}

.lead .pitch-eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #5787B4;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.lead .pitch-heading {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b2a3a;
  margin: 0 0 32px 0;
  text-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.lead .pitch-heading em {
  font-style: normal;
  color: #5787B4;
  position: relative;
}

.lead .pitch-para {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4a58;
  margin: 0 0 16px 0;
  max-width: 560px;
}

.lead .pitch-image-col {
  position: relative;
  z-index: 1;
}

.lead .pitch-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  position: relative;
}

.lead .pitch-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) brightness(0.95);
  transition: filter 0.12s ease-out;
}

.lead .pitch-img-wrap:hover img {
  filter: saturate(0.8) brightness(1);
}

.lead .pitch-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 13px;
  color: #1b2a3a;
  font-weight: 600;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead .pitch-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5787B4;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(87, 135, 180, 0.18);
}

.lead .value-strip {
  padding: 64px 64px;
  background: linear-gradient(323deg, #E3E9EB 12%, #fff 72%);
  position: relative;
  border-left: 4px solid #5787B4;
}

.lead .value-strip-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
}

.lead .value-strip-label {
  font-size: 13px;
  letter-spacing: 0.07em;
  color: #5787B4;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.lead .value-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2a3a;
  margin: 0 0 32px 0;
  text-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.lead .value-img-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 1px 12px 52px 1px rgba(87, 135, 180, 0.10);
  position: relative;
}

.lead .value-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.14s ease-out;
  animation: bgzoom 12s ease-in-out infinite alternate;
}

@keyframes bgzoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.lead .value-img-wrap:hover img {
  animation-play-state: paused;
}

.lead .value-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 58, 0);
  transition: background 0.12s ease-out;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.lead .value-img-wrap:hover .value-img-overlay {
  background: rgba(27, 42, 58, 0.72);
}

.lead .value-img-caption {
  font-size: 14px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.1s ease-out;
  line-height: 1.75;
}

.lead .value-img-wrap:hover .value-img-caption {
  opacity: 1;
}

.lead .value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead .value-list li {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4a58;
  padding: 16px 16px 16px 20px;
  border-left: 3px solid #A5ADC8;
  background: rgba(87, 135, 180, 0.04);
  border-radius: 2px;
  transition: border-color 0.1s ease-out;
}

.lead .value-list li:hover {
  border-color: #5787B4;
}

.lead .value-list li strong {
  display: block;
  font-size: 14px;
  color: #1b2a3a;
  margin-bottom: 4px;
}

.lead .approach {
  padding: 64px 64px;
  background: #fff;
  position: relative;
}

.lead .approach-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.lead .approach-geo svg {
  width: 100%;
  height: 100%;
}

.lead .approach-center {
  text-align: center;
  margin-bottom: 64px;
}

.lead .approach-label {
  font-size: 13px;
  letter-spacing: 0.07em;
  color: #5787B4;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.lead .approach-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2a3a;
  margin: 0 auto 16px auto;
  max-width: 640px;
  text-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.lead .approach-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4a58;
  max-width: 560px;
  margin: 0 auto;
}

.lead .dual-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.lead .path-card {
  border-radius: 24px;
  padding: 32px;
  position: relative;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.12s ease-out;
}

.lead .path-card:hover {
  box-shadow: 1px 12px 52px 1px rgba(87, 135, 180, 0.10);
}

.lead .path-card.path-a {
  background: linear-gradient(323deg, #E3E9EB 8%, #fff 65%);
}

.lead .path-card.path-b {
  background: linear-gradient(323deg, rgba(87, 135, 180, 0.08) 8%, #fff 65%);
}

.lead .path-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #5787B4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.lead .path-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.lead .path-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #A5ADC8;
  border: 2px solid #fff;
}

.lead .path-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5787B4;
  font-weight: 600;
}

.lead .path-title {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1b2a3a;
  margin: 0;
  text-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.lead .path-body {
  font-size: 14px;
  line-height: 1.75;
  color: #3a4a58;
  margin: 0;
}

.lead .path-img-wrap {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
}

.lead .path-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.65);
  transition: filter 0.1s ease-out;
}

.lead .path-img-wrap:hover img {
  filter: saturate(0.9);
}

.lead .path-img-wrap .path-img-dark {
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 58, 0);
  transition: background 0.12s ease-out;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.lead .path-img-wrap:hover .path-img-dark {
  background: rgba(27, 42, 58, 0.65);
}

.lead .path-img-dark span {
  font-size: 13px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.1s ease-out;
  line-height: 1.75;
}

.lead .path-img-wrap:hover .path-img-dark span {
  opacity: 1;
}

.lead .proof {
  padding: 64px 64px;
  background: linear-gradient(323deg, rgba(165, 173, 200, 0.12) 8%, #fff 60%);
  position: relative;
}

.lead .proof-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.lead .proof-divider-line {
  height: 1px;
  flex: 1;
  background: #E3E9EB;
}

.lead .proof-divider svg {
  flex-shrink: 0;
}

.lead .proof-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.lead .proof-person {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lead .proof-portrait-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lead .proof-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
}

.lead .proof-portrait img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lead .proof-name {
  font-size: 16px;
  color: #1b2a3a;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.lead .proof-role {
  font-size: 13px;
  color: #5787B4;
  margin: 0;
}

.lead .proof-quote {
  font-size: 20px;
  line-height: 1.75;
  color: #1b2a3a;
  margin: 0;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  position: relative;
}

.lead .proof-quote::before {
  content: '';
  display: block;
  width: 4px;
  height: 40px;
  background: #5787B4;
  border-radius: 2px;
  margin-bottom: 16px;
}

.lead .proof-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead .proof-metric {
  padding: 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow 0.1s ease-out;
}

.lead .proof-metric:hover {
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
}

.lead .proof-metric-value {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #5787B4;
  font-weight: 700;
}

.lead .proof-metric-label {
  font-size: 13px;
  line-height: 1.75;
  color: #3a4a58;
}

.lead .proof-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(87, 135, 180, 0.06);
  border-radius: 24px;
}

.lead .proof-stars {
  display: flex;
  gap: 4px;
}

.lead .proof-star {
  width: 16px;
  height: 16px;
}

.lead .proof-rating-text {
  font-size: 14px;
  color: #1b2a3a;
  font-weight: 600;
}

.lead .proof-rating-count {
  font-size: 13px;
  color: #3a4a58;
}

@keyframes slidein-left {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slidein-right {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slidein-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead .pitch-text {
  animation: slidein-left 0.14s ease-out both;
}

.lead .pitch-image-col {
  animation: slidein-right 0.13s ease-out 0.05s both;
}

.lead .value-strip-inner {
  animation: slidein-up 0.13s ease-out both;
}

@media (max-width: 1024px) {
  .lead .pitch {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }

  .lead .pitch-heading {
    font-size: 37px;
  }

  .lead .value-strip {
    padding: 32px;
  }

  .lead .value-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lead .approach {
    padding: 32px;
  }

  .lead .dual-paths {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lead .proof {
    padding: 32px;
  }

  .lead .proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .lead .pitch {
    padding: 16px;
    gap: 16px;
  }

  .lead .pitch-heading {
    font-size: 27px;
  }

  .lead .value-strip {
    padding: 16px;
    border-left-width: 3px;
  }

  .lead .approach {
    padding: 16px;
  }

  .lead .approach-heading {
    font-size: 27px;
  }

  .lead .proof {
    padding: 16px;
  }

  .lead .proof-quote {
    font-size: 16px;
    padding: 16px;
  }

  .lead .proof-metric-value {
    font-size: 27px;
  }
}

@media (max-width: 320px) {
  .lead .pitch-heading {
    font-size: 20px;
  }

  .lead .approach-heading {
    font-size: 20px;
  }

  .lead .value-heading {
    font-size: 20px;
  }
}

.about-us {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
}

.about-us .slide-up {
  opacity: 0;
  transform: translateY(32px);
  animation: slideUp 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.about-us .slide-up:nth-child(2) {
  animation-delay: 0.09s;
}

.about-us .slide-up:nth-child(3) {
  animation-delay: 0.18s;
}

.about-us .slide-up:nth-child(4) {
  animation-delay: 0.27s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us .panel-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.about-us .panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.12s ease-out;
}

::selection {
  background: #2a4a6e;
  color: #fff;
  font-weight: 700;
}

.about-us p::first-line {
  margin-left: -16px;
  padding-left: 16px;
}

.about-us .left-notch {
  border-left: 3px solid #5787B4;
  padding-left: 16px;
}

.about-us .accent-bg {
  background: linear-gradient(323deg, #5787B4 0%, #E3E9EB 62%, #fff 100%);
}

.about-us .text-accent-wash {
  background: linear-gradient(323deg, rgba(87, 135, 180, 0.10) 0%, rgba(227, 233, 235, 0.18) 100%);
  border-radius: 2px;
  padding: 8px 16px;
}

@media (max-width: 768px) {
  .about-us .panel-image {
    height: 240px !important;
  }

  .about-us section {
    padding: 32px 16px !important;
  }

  .about-us section>div:first-child {
    margin: 0 16px !important;
  }

  .about-us h1 {
    font-size: 37px !important;
  }

  .about-us h2 {
    font-size: 27px !important;
  }

  .about-us [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .about-us [style*="grid-column: 1 / 2"] {
    grid-column: auto !important;
  }

  .about-us [style*="grid-column: 2 / 4"] {
    grid-column: auto !important;
  }

  .about-us [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .about-us [style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .about-us [style*="width: 340px"] {
    width: 100% !important;
  }

  .about-us [style*="height: 420px"] {
    height: 280px !important;
  }

  .about-us [style*="height: 220px"] {
    height: 160px !important;
  }

  .about-us [style*="height: 180px"] {
    height: 140px !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .about-us [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }

  .about-us [style*="grid-column: 1 / 2"] {
    grid-column: auto !important;
  }

  .about-us [style*="grid-column: 2 / 4"] {
    grid-column: auto !important;
  }

  .about-us [style*="width: 340px"] {
    width: 260px !important;
  }
}

.statistics {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
  position: relative;
}

.statistics .radial-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
}

.statistics .radial-bg circle {
  fill: none;
  stroke: rgba(87, 135, 180, 0.04);
  animation: ring-expand 4s ease-out infinite;
}

.statistics .radial-bg circle:nth-child(2) {
  animation-delay: 1.3s;
}

.statistics .radial-bg circle:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes ring-expand {
  0% {
    r: 40;
    opacity: 0.5;
  }

  100% {
    r: 280;
    opacity: 0;
  }
}

.statistics .divider-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  position: relative;
}

.statistics .divider-mono::before,
.statistics .divider-mono::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #A5ADC8;
  opacity: 0.35;
}

.statistics .divider-mono span {
  font-size: 27px;
  color: #A5ADC8;
  opacity: 0.5;
  padding: 0 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.statistics ::selection {
  background: #2a3f55;
  color: #fff;
  font-weight: 700;
}

.statistics .reading-arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.18;
  pointer-events: none;
}

.statistics *:focus-visible {
  outline: 2px solid #5787B4;
  outline-offset: 2px;
  border-radius: 2px;
}

.statistics .split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  position: relative;
  z-index: 1;
}

.statistics .split-colored {
  background: linear-gradient(323deg, #5787B4 18%, #A5ADC8 100%);
  padding: 64px 32px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.statistics .split-colored .faded-letter {
  position: absolute;
  top: -16px;
  left: -8px;
  font-size: 220px;
  font-weight: 900;
  color: #fff;
  opacity: 0.06;
  line-height: 1.1;
  pointer-events: none;
  letter-spacing: -0.06em;
  user-select: none;
}

.statistics .split-colored .label-above {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.75;
}

.statistics .split-colored h1 {
  font-size: 52px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 16px 0;
  text-shadow: 1px 5px 18px rgba(87, 135, 180, 0.3);
}

.statistics .split-colored .desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
  margin: 0;
}

.statistics .split-neutral {
  background: #fff;
  padding: 64px 64px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.statistics .img-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.statistics .img-frame::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #A5ADC8;
  border-radius: 2px;
  opacity: 0.4;
  pointer-events: none;
}

.statistics .img-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  display: block;
  filter: saturate(0.7) brightness(1.04);
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  transition: filter 0.12s ease-out;
}

.statistics .img-frame img:hover {
  filter: saturate(0.9) brightness(1.06);
}

.statistics .feature-strip {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.statistics .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.statistics .feature-item .fi-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statistics .feature-item .fi-label {
  font-size: 13px;
  color: #5787B4;
  line-height: 1.75;
  font-weight: 600;
}

.statistics .data-block {
  background: #E3E9EB;
  padding: 64px 64px 64px 64px;
  position: relative;
  z-index: 1;
}

.statistics .data-block h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2d3e;
  margin: 0 0 8px 0;
  text-shadow: 1px 3px 2px rgba(87, 135, 180, 0.1);
}

.statistics .data-block .sub-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #3d4f5c;
  max-width: 560px;
  margin: 0 0 32px 0;
}

.statistics .metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.statistics .metric-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 16px;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.1s ease-out, transform 0.1s ease-out;
  cursor: default;
}

.statistics .metric-card:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.statistics .metric-card:hover {
  box-shadow: 1px 12px 52px 1px rgba(87, 135, 180, 0.10);
}

.statistics .metric-card .mc-number {
  font-size: 37px;
  font-weight: 800;
  line-height: 1.1;
  color: #5787B4;
  letter-spacing: -0.03em;
}

.statistics .metric-card .mc-label {
  font-size: 14px;
  line-height: 1.75;
  color: #3d4f5c;
}

.statistics .metric-card .mc-icon {
  margin-bottom: 4px;
}

.statistics .frosted-panel {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  border: 1px solid rgba(165, 173, 200, 0.3);
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 0 rgba(165, 173, 200, 0.2), 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.statistics .frosted-panel .testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: #1b2d3e;
  margin: 0 0 16px 0;
  font-style: italic;
}

.statistics .frosted-panel .person-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.statistics .frosted-panel .portrait-wrap {
  width: 64px;
  height: 82px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.statistics .frosted-panel .portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.statistics .frosted-panel .person-name {
  font-size: 14px;
  font-weight: 700;
  color: #1b2d3e;
  line-height: 1.1;
}

.statistics .frosted-panel .person-role {
  font-size: 13px;
  color: #5787B4;
  line-height: 1.75;
}

.statistics .stats-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.statistics .stat-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: none;
  position: relative;
}

.statistics .stat-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: linear-gradient(323deg, #5787B4 18%, #A5ADC8 100%);
  border-radius: 2px;
}

.statistics .stat-row .sr-number {
  font-size: 27px;
  font-weight: 800;
  color: #5787B4;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.statistics .stat-row .sr-label {
  font-size: 13px;
  color: #3d4f5c;
  line-height: 1.75;
}

.statistics .list-items {
  margin: 32px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.statistics .list-items li {
  padding: 8px 16px;
  border-left: none;
  position: relative;
  font-size: 14px;
  line-height: 1.75;
  color: #3d4f5c;
  background: rgba(87, 135, 180, 0.06);
  border-radius: 2px;
  padding-left: 16px;
}

.statistics .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #5787B4;
  border-radius: 2px 0 0 2px;
  opacity: 0.5;
}

.statistics .accent-wash {
  background: rgba(87, 135, 180, 0.08);
  border-radius: 2px;
  padding: 4px 8px;
  display: inline;
}

.statistics .second-img-block {
  margin-top: 32px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.statistics .second-img-block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75);
  transition: filter 0.09s linear;
}

.statistics .second-img-block img:hover {
  filter: saturate(0.95);
}

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

  .statistics .split-colored {
    padding: 64px 32px 32px 32px;
  }

  .statistics .split-neutral {
    padding: 32px 32px 64px 32px;
    align-items: center;
  }

  .statistics .img-frame {
    max-width: 100%;
  }

  .statistics .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statistics .frosted-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .statistics .data-block {
    padding: 64px 32px;
  }
}

@media (max-width: 768px) {
  .statistics .split-colored h1 {
    font-size: 37px;
  }

  .statistics .metrics-grid {
    grid-template-columns: 1fr;
  }

  .statistics .data-block {
    padding: 32px 16px;
  }

  .statistics .feature-strip {
    gap: 16px;
  }

  .statistics .frosted-panel {
    padding: 16px;
  }
}

@media (max-width: 320px) {
  .statistics .split-colored h1 {
    font-size: 27px;
  }

  .statistics .metric-card .mc-number {
    font-size: 27px;
  }
}

.contact-us {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
}

.contact-us .drop-item {
  opacity: 0;
  transform: translateY(-24px);
  animation: dropIn 0.12s ease-out forwards;
}

.contact-us .drop-item:nth-child(1) {
  animation-delay: 0.04s;
}

.contact-us .drop-item:nth-child(2) {
  animation-delay: 0.09s;
}

.contact-us .drop-item:nth-child(3) {
  animation-delay: 0.14s;
}

.contact-us .drop-item:nth-child(4) {
  animation-delay: 0.19s;
}

.contact-us .drop-item:nth-child(5) {
  animation-delay: 0.24s;
}

@keyframes dropIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-us .page-band {
  padding: 64px 64px 0;
  position: relative;
  background: #fff;
}

.contact-us .page-band-inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.contact-us .band-left {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 8px;
}

.contact-us .band-center {
  flex: 1 1 0;
}

.contact-us .band-right {
  flex: 0 0 160px;
}

.contact-us .arrow-deco {
  width: 32px;
  height: 48px;
  display: block;
  margin-top: 16px;
}

.contact-us .quote-mark {
  font-size: 52px;
  line-height: 1.1;
  color: #E3E9EB;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 8px;
  text-shadow: 1px 3px 2px rgba(87, 135, 180, 0.06);
  user-select: none;
}

.contact-us .page-label {
  font-size: 13px;
  line-height: 1.75;
  color: #5787B4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.contact-us .label-shape {
  width: 10px;
  height: 10px;
  background: #5787B4;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.contact-us .page-heading {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b2a3a;
  margin: 0 0 16px;
  text-shadow: 1px 5px 18px rgba(87, 135, 180, 0.08);
}

.contact-us .page-heading span {
  display: block;
  font-size: 37px;
  color: #5787B4;
}

.contact-us .page-heading strong {
  display: block;
  font-size: 27px;
  color: #A5ADC8;
  font-weight: 400;
}

.contact-us .page-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4a5a;
  max-width: 520px;
  margin: 0;
}

.contact-us .svgdivider-up {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: 32px;
}

.contact-us .form-band {
  background: linear-gradient(323deg, #E3E9EB 18%, #fff 80%);
  padding: 64px;
  position: relative;
}

.contact-us .form-band-inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.contact-us .form-sidebar-left {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.contact-us .form-sidebar-right {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.contact-us .form-center {
  flex: 1 1 0;
}

.contact-us .sidebar-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: none;
  padding-left: 0;
}

.contact-us .sidebar-stat-num {
  font-size: 37px;
  line-height: 1.1;
  color: #5787B4;
  font-weight: 700;
  text-shadow: 1px 3px 2px rgba(87, 135, 180, 0.06);
}

.contact-us .sidebar-stat-label {
  font-size: 13px;
  line-height: 1.75;
  color: #5a6a7a;
}

.contact-us .pyramid-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.contact-us .pyramid-layer {
  border-radius: 2px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us .pyramid-layer:nth-child(1) {
  width: 40px;
  background: #5787B4;
}

.contact-us .pyramid-layer:nth-child(2) {
  width: 72px;
  background: #7aa3c8;
}

.contact-us .pyramid-layer:nth-child(3) {
  width: 104px;
  background: #A5ADC8;
}

.contact-us .pyramid-layer:nth-child(4) {
  width: 136px;
  background: #c4cad8;
}

.contact-us .pyramid-label {
  font-size: 13px;
  line-height: 1.75;
  color: #5a6a7a;
  text-align: center;
  margin-top: 8px;
}

.contact-us .form-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
}

.contact-us .form-heading {
  font-size: 27px;
  line-height: 1.1;
  color: #1b2a3a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  text-shadow: 1px 3px 2px rgba(87, 135, 180, 0.06);
}

.contact-us .form-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #5a6a7a;
  margin: 0 0 32px;
}

.contact-us .field-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-us .field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
}

.contact-us .field-group.full {
  flex: 0 0 100%;
}

.contact-us .field-label {
  font-size: 13px;
  line-height: 1.75;
  color: #3a4a5a;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-us .field-input {
  border: 1.5px solid #E3E9EB;
  border-radius: 2px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.75;
  color: #1b2a3a;
  background: #fff;
  outline: none;
  transition: border-color 0.09s ease-out, box-shadow 0.09s ease-out;
  width: 100%;
  box-sizing: border-box;
}

.contact-us .field-input::placeholder {
  font-style: italic;
  opacity: 0.55;
  color: #5a6a7a;
}

.contact-us .field-input:focus {
  border-color: #5787B4;
  box-shadow: 1px 3px 2px 1px rgba(87, 135, 180, 0.06);
}

.contact-us .services-label {
  font-size: 14px;
  line-height: 1.75;
  color: #3a4a5a;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-us .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-us .check-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid #E3E9EB;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.1s ease-out, background 0.1s ease-out;
}

.contact-us .check-item:hover {
  border-color: #A5ADC8;
  background: #f4f7fa;
}

.contact-us .check-item input[type="checkbox"] {
  accent-color: #5787B4;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-us .check-text {
  font-size: 13px;
  line-height: 1.75;
  color: #3a4a5a;
}

.contact-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: linear-gradient(323deg, #E3E9EB 0%, #fff 80%);
  border-radius: 2px;
}

.contact-us .privacy-row input[type="checkbox"] {
  accent-color: #5787B4;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-us .privacy-text {
  font-size: 13px;
  line-height: 1.75;
  color: #5a6a7a;
}

.contact-us .privacy-text a {
  color: #5787B4;
  text-decoration: underline;
  transition: color 0.09s ease-out;
}

.contact-us .privacy-text a:hover {
  color: #A5ADC8;
}

.contact-us .submit-btn {
  background: #5787B4;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.1s ease-out, box-shadow 0.1s ease-out;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
}

.contact-us .submit-btn:hover {
  background: #3a6a9a;
  box-shadow: 1px 12px 52px 1px rgba(87, 135, 180, 0.10);
}

.contact-us .submit-btn:focus {
  outline: 2px solid #5787B4;
  outline-offset: 3px;
}

.contact-us .submit-btn:active {
  background: #2d5580;
}

.contact-us .info-band {
  background: #fff;
  padding: 0 64px 64px;
  position: relative;
}

.contact-us .info-band-top {
  background: #5787B4;
  padding: 32px 64px;
  margin: 0 -64px 64px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: stretch;
}

.contact-us .info-split-left {
  flex: 1 1 0;
  background: #5787B4;
}

.contact-us .info-split-right {
  flex: 1 1 0;
  background: #3a6a9a;
  border-radius: 2px;
  padding: 32px;
}

.contact-us .info-heading {
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  text-shadow: 1px 3px 2px rgba(87, 135, 180, 0.06);
}

.contact-us .info-text {
  font-size: 14px;
  line-height: 1.75;
  color: #E3E9EB;
  margin: 0 0 32px;
}

.contact-us .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-us .contact-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-us .contact-list li:last-child {
  border-bottom: none;
}

.contact-us .contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-us .contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-us .contact-type {
  font-size: 13px;
  line-height: 1.1;
  color: #A5ADC8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-us .contact-value {
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
}

.contact-us .contact-value a {
  color: #fff;
  text-decoration: none;
  transition: color 0.09s ease-out;
}

.contact-us .contact-value a:hover {
  color: #E3E9EB;
}

.contact-us .messaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.contact-us .msg-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.1s ease-out;
}

.contact-us .msg-card:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-us .msg-card a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-us .msg-name {
  font-size: 13px;
  line-height: 1.1;
  color: #E3E9EB;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-us .msg-action {
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
}

.contact-us .info-lower {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.contact-us .address-block {
  flex: 1 1 0;
}

.contact-us .address-heading {
  font-size: 16px;
  line-height: 1.1;
  color: #1b2a3a;
  margin: 0 0 16px;
  font-weight: 600;
}

.contact-us .address-text {
  font-size: 14px;
  line-height: 1.75;
  color: #3a4a5a;
  margin: 0;
}

.contact-us .hours-block {
  flex: 1 1 0;
}

.contact-us .hours-heading {
  font-size: 16px;
  line-height: 1.1;
  color: #1b2a3a;
  margin: 0 0 16px;
  font-weight: 600;
}

.contact-us .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-us .hours-list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.75;
  color: #3a4a5a;
  padding: 4px 0;
  border-bottom: 1px solid #E3E9EB;
}

.contact-us .hours-list li:last-child {
  border-bottom: none;
}

.contact-us .accent-block {
  flex: 0 0 200px;
  background: linear-gradient(323deg, #E3E9EB 0%, #f4f7fa 80%);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
}

.contact-us .accent-num {
  font-size: 37px;
  line-height: 1.1;
  color: #5787B4;
  font-weight: 700;
}

.contact-us .accent-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #5a6a7a;
}

@media (max-width: 1024px) {
  .contact-us .page-band {
    padding: 32px 32px 0;
  }

  .contact-us .page-band-inner {
    gap: 32px;
  }

  .contact-us .band-left,
  .contact-us .band-right {
    flex: 0 0 80px;
  }

  .contact-us .form-band {
    padding: 32px;
  }

  .contact-us .form-band-inner {
    gap: 32px;
  }

  .contact-us .form-sidebar-left,
  .contact-us .form-sidebar-right {
    flex: 0 0 100px;
  }

  .contact-us .info-band {
    padding: 0 32px 32px;
  }

  .contact-us .info-band-top {
    padding: 32px;
    margin: 0 -32px 32px;
    gap: 32px;
  }

  .contact-us .info-lower {
    gap: 32px;
  }

  .contact-us .messaging-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-us .accent-block {
    flex: 0 0 160px;
  }
}

@media (max-width: 768px) {
  .contact-us .page-band {
    padding: 32px 16px 0;
  }

  .contact-us .page-band-inner {
    flex-direction: column;
    gap: 16px;
  }

  .contact-us .band-left,
  .contact-us .band-right {
    flex: none;
    align-items: flex-start;
  }

  .contact-us .page-heading {
    font-size: 37px;
  }

  .contact-us .page-heading span {
    font-size: 27px;
  }

  .contact-us .page-heading strong {
    font-size: 20px;
  }

  .contact-us .form-band {
    padding: 32px 16px;
  }

  .contact-us .form-band-inner {
    flex-direction: column;
    gap: 16px;
  }

  .contact-us .form-sidebar-left,
  .contact-us .form-sidebar-right {
    flex: none;
    flex-direction: row;
    gap: 32px;
  }

  .contact-us .field-row {
    flex-direction: column;
    gap: 16px;
  }

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

  .contact-us .info-band {
    padding: 0 16px 32px;
  }

  .contact-us .info-band-top {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    margin: 0 -16px 32px;
  }

  .contact-us .info-lower {
    flex-direction: column;
    gap: 32px;
  }

  .contact-us .messaging-grid {
    grid-template-columns: 1fr;
  }

  .contact-us .accent-block {
    flex: none;
  }
}

@media (max-width: 320px) {
  .contact-us .page-heading {
    font-size: 27px;
  }

  .contact-us .form-card {
    padding: 16px;
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
  background: #fff;
}

.success-page .card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 1px 12px 52px 1px rgba(87, 135, 180, 0.10);
  padding: 64px 32px;
  text-align: center;
}

.success-page .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  border-radius: 24px;
  background: #E3E9EB;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.success-page .icon-wrap svg {
  display: block;
}

.success-page .heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2a38;
  margin: 0 0 16px;
  text-shadow: 1px 2px 0px rgba(87, 135, 180, 0.08);
}

.success-page .sub {
  font-size: 16px;
  line-height: 1.75;
  color: #3d4f5e;
  margin: 0 0 32px;
}

.success-page .divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(323deg, #5787B4 30%, #A5ADC8 100%);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.success-page .note {
  font-size: 13px;
  line-height: 1.75;
  color: #5787B4;
  background: #E3E9EB;
  border-radius: 2px;
  padding: 8px 16px;
  margin: 0 0 32px;
}

.success-page .back-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
  background: #5787B4;
  border-radius: 2px;
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 1px 5px 18px 1px rgba(87, 135, 180, 0.08);
  transition: background 0.12s ease-out, box-shadow 0.09s linear;
}

.success-page .back-link:hover {
  background: #A5ADC8;
  box-shadow: 1px 12px 52px 1px rgba(87, 135, 180, 0.10);
}

.success-page .back-link:focus {
  outline: 2px solid #5787B4;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .success-page .card {
    padding: 32px 16px;
  }

  .success-page .heading {
    font-size: 27px;
  }
}