:root {
  --blue: #0755b5;
  --blue-dark: #073771;
  --blue-deep: #071d3f;
  --blue-soft: #edf5ff;
  --cyan: #2f91e6;
  --ink: #081a36;
  --text: #3d4b60;
  --muted: #6d788a;
  --line: #dfe7f1;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(11, 46, 91, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

.topline {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 90px;
  border-bottom: 1px solid rgba(7, 55, 113, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 7px 24px rgba(15, 38, 69, 0.055);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  width: 210px;
  min-width: 210px;
  align-items: center;
}

.brand img {
  width: 200px;
  height: 70px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 22px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-item > a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: 0.22s ease;
}

.nav-item > a:hover,
.nav-item > a.active {
  color: var(--blue);
}

.nav-item > a:hover::after,
.nav-item > a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.chevron {
  margin-top: -3px;
  font-size: 16px;
}

.submenu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  display: grid;
  width: 330px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 36, 74, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: 0.2s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  padding: 9px 12px;
  border-radius: 8px;
  color: #273c58;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.submenu a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.submenu__all {
  margin-bottom: 5px;
  background: var(--blue-soft);
  color: var(--blue) !important;
  font-weight: 800 !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--blue) 0%, #0b66c9 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(7, 85, 181, 0.22);
}

.button--primary:hover {
  box-shadow: 0 15px 34px rgba(7, 85, 181, 0.32);
}

.button--outline {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
}

.button--outline:hover {
  background: #fff;
}

.button--header {
  min-height: 48px;
  padding-inline: 19px;
  font-size: 13px;
}

.button--white {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 12px 35px rgba(2, 18, 42, 0.15);
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 575px;
  overflow: hidden;
  background: #f4f7fb;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("/assets/hero-deck.webp");
  background-position: center center;
  background-size: cover;
}

.hero__veil {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 25%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.32) 54%, rgba(255, 255, 255, 0) 69%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 575px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.hero h1 {
  max-width: 760px;
  margin: 13px 0 17px;
  color: var(--ink);
  font-size: clamp(42px, 3.65vw, 56px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero__title-main {
  display: block;
  white-space: nowrap;
}

.hero__title-sub {
  display: block;
  margin-top: 8px;
  color: #0c4b91;
  font-size: 0.72em;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.hero__lead {
  max-width: 580px;
  margin: 0 0 25px;
  color: #2e3b4d;
  font-size: 17px;
  line-height: 1.6;
}

.hero__trust {
  display: flex;
  max-width: 680px;
  margin: 0 0 23px;
}

.hero__trust > div {
  display: flex;
  min-width: 175px;
  align-items: center;
  gap: 12px;
  padding: 1px 24px;
  border-right: 1px solid #cdd8e6;
  color: var(--blue-dark);
}

.hero__trust > div:first-child {
  padding-left: 0;
}

.hero__trust > div:last-child {
  border-right: 0;
}

.hero__trust span {
  display: flex;
  color: #3c4a5e;
  font-size: 12px;
  line-height: 1.35;
  flex-direction: column;
}

.hero__trust strong {
  color: var(--ink);
  font-size: 13px;
}

.hero__buttons {
  display: flex;
  gap: 18px;
}

.section {
  padding: 96px 0;
}

.section--services {
  padding-top: 76px;
}

.section--soft {
  background: var(--soft);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 8px 0 11px;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(13, 51, 96, 0.065);
  flex-direction: column;
  transition: 0.25s ease;
}

.service-card:hover {
  border-color: rgba(7, 85, 181, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.58 / 1;
  background: #dfe8f2;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.045);
}

.service-card__number {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 32px;
  height: 25px;
  place-items: center;
  border-radius: 4px;
  background: rgba(7, 29, 63, 0.74);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.service-card__body {
  position: relative;
  display: flex;
  height: auto;
  min-height: 0;
  align-items: center;
  padding: 33px 24px 15px;
  text-align: center;
  flex-direction: column;
}

.service-card__icon {
  position: absolute;
  top: -23px;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  place-items: center;
  transform: translateX(-50%);
}

.service-card h3 {
  margin: 3px 0 10px;
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.service-card p {
  margin: 0 0 9px;
  color: #657185;
  font-size: 13px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.text-link--large {
  flex-shrink: 0;
  margin-top: 0;
  font-size: 15px;
}

.jobs-strip {
  padding: 54px 0;
  background: linear-gradient(135deg, #f0f6ff 0%, #f7f9fd 100%);
  border-block: 1px solid #e5edf7;
}

.jobs-strip__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.jobs-strip__heading h2 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.jobs-strip__heading p {
  max-width: 560px;
  margin: 0;
  color: #657185;
  font-size: 14px;
}

.jobs-strip__items {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(6, 1fr) auto;
}

.jobs-strip__items > div {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 13px;
  border-right: 1px solid #cdd8e6;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  flex-direction: column;
}

.jobs-strip__items .button {
  align-self: center;
  margin-left: 28px;
}

.benefits {
  padding: 38px 0;
  background: #fff;
}

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

.benefits__grid > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 32px;
  border-right: 1px solid var(--line);
  color: var(--blue);
}

.benefits__grid > div:first-child {
  padding-left: 0;
}

.benefits__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefits__grid span {
  display: flex;
  color: #647185;
  font-size: 12px;
  line-height: 1.5;
  flex-direction: column;
}

.benefits__grid strong {
  margin-bottom: 3px;
  color: var(--blue-dark);
  font-size: 14px;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
  grid-template-columns: 1.04fr 0.96fr;
}

.split--reverse {
  grid-template-columns: 0.96fr 1.04fr;
}

.split__image {
  position: relative;
}

.split__image::before {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 56%;
  height: 60%;
  border-radius: 4px;
  background: var(--blue-soft);
  content: "";
}

.split__image img {
  width: 100%;
  min-height: 510px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  display: flex;
  min-width: 150px;
  padding: 20px 24px;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 36px rgba(7, 85, 181, 0.24);
  flex-direction: column;
}

.experience-badge strong {
  font-size: 22px;
  line-height: 1;
}

.experience-badge span {
  margin-top: 7px;
  font-size: 12px;
}

.split__content > p {
  color: #5d697b;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 27px 0 31px;
}

.check-list > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.check-list > div > svg {
  flex: 0 0 auto;
  margin-top: 3px;
  padding: 2px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.check-list span {
  display: flex;
  color: #697587;
  font-size: 14px;
  flex-direction: column;
}

.check-list strong {
  color: var(--ink);
  font-size: 15px;
}

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

.steps > div {
  position: relative;
  overflow: hidden;
  padding: 38px 32px 35px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 52, 95, 0.06);
}

.steps > div > span {
  position: absolute;
  top: 0;
  right: 13px;
  color: #ecf1f8;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.steps svg {
  position: relative;
  color: var(--blue);
}

.steps h3 {
  position: relative;
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.steps p {
  position: relative;
  margin: 0;
  color: #6c7788;
  font-size: 14px;
}

.sectors__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sector-grid > div {
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.2s ease;
}

.sector-grid > div:hover {
  background: var(--blue-soft);
}

.sector-grid > div > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sector-grid h3 {
  margin: 35px 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.sector-grid p {
  margin: 0;
  color: #6b7687;
  font-size: 13px;
}

.cta-section {
  padding: 74px 0;
  background: linear-gradient(120deg, #062d67 0%, var(--blue) 58%, #1475d8 100%);
  color: #fff;
}

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.eyebrow--light {
  color: #a8d3ff;
}

.cta-section h2 {
  max-width: 720px;
  margin: 7px 0 10px;
  color: #fff;
  font-size: clamp(31px, 3vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.cta-section p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-section__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.cta-section__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.cta-section__phone span {
  display: flex;
  font-weight: 800;
  flex-direction: column;
  white-space: nowrap;
}

.cta-section__phone small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
}

.page-hero::after {
  position: absolute;
  top: -150px;
  right: -80px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(7, 85, 181, 0.045);
  border-radius: 50%;
  content: "";
}

.page-hero--image {
  min-height: 470px;
  background-position: center;
  background-size: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.77) 53%, rgba(255, 255, 255, 0.16) 77%);
}

.page-hero:not(.page-hero--image) .page-hero__overlay {
  display: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  justify-content: center;
  padding-top: 55px;
  padding-bottom: 55px;
  flex-direction: column;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #768296;
  font-size: 12px;
  font-weight: 650;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.page-hero h1 {
  max-width: 760px;
  margin: 7px 0 14px;
  color: var(--ink);
  font-size: clamp(40px, 4.5vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.page-hero__content > p {
  max-width: 650px;
  margin: 0;
  color: #4d5a6d;
  font-size: 17px;
}

.service-detail {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.service-detail__main h2 {
  margin: 9px 0 23px;
  color: var(--ink);
  font-size: clamp(31px, 3.2vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.service-detail__main h3 {
  margin: 38px 0 17px;
  color: var(--ink);
  font-size: 23px;
}

.service-detail__main p {
  color: #5d697b;
  font-size: 16px;
}

.feature-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-list > div {
  display: flex;
  min-height: 65px;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.feature-list svg {
  flex-shrink: 0;
  color: var(--blue);
}

.feature-list--large {
  margin-top: 30px;
  grid-template-columns: 1fr;
}

.service-detail__aside {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.quote-card,
.ideal-card,
.career-card {
  padding: 32px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.quote-card > svg {
  color: var(--blue);
}

.quote-card h3,
.ideal-card h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 22px;
}

.quote-card p {
  margin: 0 0 24px;
  color: #667386;
  font-size: 14px;
}

.quote-card .button {
  width: 100%;
}

.ideal-card {
  border: 1px solid var(--line);
  background: #fff;
}

.ideal-card h3 {
  margin-top: 0;
}

.ideal-card > span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: #586579;
  font-size: 13px;
}

.ideal-card svg {
  color: var(--blue);
}

.related-grid {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.values-grid > div {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.values-grid svg {
  color: var(--blue);
}

.values-grid h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 19px;
}

.values-grid p {
  margin: 0;
  color: #6a7687;
  font-size: 13px;
}

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

.reference-grid article {
  display: grid;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 54, 100, 0.06);
  grid-template-columns: 0.9fr 1.1fr;
}

.reference-grid article > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-grid article > div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  flex-direction: column;
}

.reference-grid h2 {
  margin: 7px 0 9px;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.reference-grid p {
  margin: 0 0 20px;
  color: #697587;
  font-size: 13px;
}

.career-layout {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 1fr 420px;
}

.career-card {
  padding: 38px;
  background: var(--blue-deep);
  color: #fff;
}

.career-card .eyebrow {
  color: #8ec6ff;
}

.career-card h2 {
  margin: 7px 0 22px;
  color: #fff;
  font-size: 28px;
}

.career-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 650;
}

.career-card > div svg {
  color: #85c3ff;
}

.career-card .button {
  width: 100%;
  margin: 25px 0 11px;
}

.career-card small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.contact-form-card h2,
.contact-sidebar h2 {
  margin: 7px 0 25px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5deea;
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 85, 181, 0.09);
}

.contact-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #687588;
  font-size: 11px;
  font-weight: 500;
}

.contact-form .checkbox input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex-shrink: 0;
}

.contact-form .checkbox a {
  color: var(--blue);
  text-decoration: underline;
}

.contact-form .button {
  width: fit-content;
  min-width: 185px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.newcomer-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 0 0 25px;
  padding: 18px;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
}

.newcomer-note svg {
  flex-shrink: 0;
  color: var(--blue);
}

.newcomer-note p {
  margin: 0;
  color: #566477;
  font-size: 13px;
}

.contact-sidebar {
  padding: 38px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.contact-sidebar > p {
  margin: -12px 0 24px;
  color: #647184;
  font-size: 14px;
}

.contact-sidebar > a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid #d5e1ef;
}

.contact-sidebar__icon {
  display: grid;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  place-items: center;
  flex-shrink: 0;
}

.contact-sidebar > a > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-sidebar small {
  color: #758296;
  font-size: 11px;
}

.contact-sidebar strong {
  color: var(--ink);
  font-size: 14px;
}

.office-hours {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
}

.office-hours span {
  display: flex;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  flex-direction: column;
}

.office-hours strong {
  color: #fff;
  font-size: 13px;
}

.legal {
  background: #f7f9fc;
}

.legal__content {
  max-width: 930px;
  padding: 60px 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 45px rgba(12, 49, 91, 0.07);
}

.legal__content h2 {
  margin: 35px 0 10px;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content p {
  color: #5d697b;
  font-size: 14px;
}

.legal__content a {
  color: var(--blue);
  text-decoration: underline;
}

.legal__date {
  color: var(--blue) !important;
  font-weight: 700;
}

.legal__notice {
  margin-top: 40px;
  padding: 20px;
  border-left: 3px solid #d99b1d;
  background: #fff8e7;
  color: #68562d;
  font-size: 13px;
}

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

.footer {
  padding-top: 70px;
  background: #061a37;
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  gap: 55px;
  padding-bottom: 55px;
  grid-template-columns: 1.45fr 1fr 0.8fr 0.8fr;
}

.footer__brand img {
  width: 190px;
  height: 77px;
  margin: -10px 0 18px;
  padding: 8px;
  border-radius: 5px;
  background: #fff;
  object-fit: contain;
}

.footer__brand p {
  max-width: 330px;
  margin: 0 0 22px;
  font-size: 13px;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #9dcbff;
  font-size: 12px;
  font-weight: 700;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
}

.footer__grid > div:not(.footer__brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer__grid > div:not(.footer__brand) a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 12px;
  transition: color 0.18s ease;
}

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 11px;
}

.footer__legal {
  display: flex;
  gap: 22px;
}

.cookie {
  position: fixed;
  z-index: 220;
  bottom: 22px;
  left: 22px;
  display: grid;
  width: min(560px, calc(100% - 44px));
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 65px rgba(5, 30, 66, 0.2);
  grid-template-columns: auto 1fr auto;
  backdrop-filter: blur(12px);
}

.cookie__icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  place-items: center;
}

.cookie strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.cookie p {
  margin: 1px 0 0;
  color: #6b7788;
  font-size: 11px;
  line-height: 1.45;
}

.cookie a {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
}

.cookie button {
  padding: 10px 14px;
  border: 0;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1300px) {
  .container {
    width: min(1180px, calc(100% - 48px));
  }

  .brand {
    width: 175px;
    min-width: 175px;
  }

  .brand img {
    width: 170px;
  }

  .main-nav {
    gap: 16px;
  }

  .nav-item > a {
    font-size: 13px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-phone span {
    display: none;
  }

  .jobs-strip__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .jobs-strip__items > div {
    border: 1px solid #d5e1ef;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.45);
  }

  .jobs-strip__items .button {
    margin-left: 0;
  }

  .benefits__grid > div {
    padding: 8px 18px;
  }
}

@media (max-width: 1050px) {
  .site-header {
    height: 78px;
  }

  .brand img {
    height: 60px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .button,
  .header-phone {
    display: none;
  }

  .main-nav {
    position: fixed;
    z-index: 120;
    top: 78px;
    right: 0;
    bottom: 0;
    display: block;
    overflow-y: auto;
    width: min(390px, 90vw);
    padding: 20px 22px 120px;
    background: #fff;
    box-shadow: -20px 20px 50px rgba(7, 30, 64, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-item {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .nav-item > a {
    min-height: 55px;
    justify-content: space-between;
    font-size: 15px;
  }

  .nav-item > a::after {
    display: none;
  }

  .submenu {
    position: static;
    display: grid;
    width: 100%;
    padding: 0 0 15px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu a {
    padding: 8px 11px;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 105;
    inset: 78px 0 0;
    border: 0;
    background: rgba(4, 18, 39, 0.48);
    backdrop-filter: blur(2px);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits__grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .benefits__grid > div {
    padding: 8px 0;
    border-right: 0;
  }

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

  .split,
  .split--reverse,
  .service-detail,
  .career-layout,
  .contact-layout {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .split__image {
    order: -1;
  }

  .service-detail__aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-section__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 760px) {
  .container {
    width: calc(100% - 36px);
  }

  .brand {
    width: 155px;
    min-width: 155px;
  }

  .brand img {
    width: 155px;
    height: 56px;
  }

  .hero {
    min-height: 770px;
  }

  .hero__image {
    height: 385px;
    background-position: 68% center;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0.92) 47%, #fff 58%, #fff 100%);
  }

  .hero__content {
    min-height: 770px;
    justify-content: flex-start;
    padding-top: 335px;
    padding-bottom: 38px;
  }

  .hero h1 {
    margin-top: 8px;
    font-size: 38px;
    line-height: 1.07;
  }

  .hero__title-sub {
    font-size: 0.67em;
  }

  .hero__lead {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .hero__trust {
    width: 100%;
    margin-bottom: 21px;
  }

  .hero__trust > div {
    min-width: 0;
    gap: 5px;
    padding: 0 8px;
    flex: 1;
    flex-direction: column;
    text-align: center;
  }

  .hero__trust > div:first-child {
    padding-left: 0;
  }

  .hero__trust > div:last-child {
    padding-right: 0;
  }

  .hero__trust svg {
    width: 24px;
  }

  .hero__trust span {
    font-size: 10px;
  }

  .hero__trust strong {
    font-size: 11px;
  }

  .hero__buttons {
    width: 100%;
    gap: 10px;
  }

  .hero__buttons .button {
    min-width: 0;
    padding-inline: 13px;
    font-size: 12px;
    flex: 1;
  }

  .section {
    padding: 70px 0;
  }

  .section--services {
    padding-top: 63px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 33px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .jobs-strip__heading,
  .sectors__head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .jobs-strip__items .button {
    grid-column: 1 / -1;
  }

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

  .split__image img {
    min-height: 330px;
  }

  .experience-badge {
    right: 12px;
    bottom: 12px;
  }

  .page-hero,
  .page-hero--image {
    min-height: 430px;
  }

  .page-hero--image {
    background-position: 64% center;
  }

  .page-hero__overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 70%, rgba(255, 255, 255, 0.62) 100%);
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .page-hero h1 {
    font-size: 39px;
  }

  .page-hero__content > p {
    font-size: 15px;
  }

  .service-detail__aside,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .reference-grid article {
    grid-template-columns: 1fr;
  }

  .reference-grid article > img {
    height: 230px;
  }

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

  .cta-section {
    padding: 60px 0;
  }

  .cta-section__actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-section__actions .button {
    width: 100%;
  }

  .legal__content {
    padding: 38px 26px;
  }

  .footer {
    padding-bottom: 78px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
    flex-direction: column;
  }

  .mobile-bar {
    position: fixed;
    z-index: 180;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: grid;
    overflow: hidden;
    height: 61px;
    border: 1px solid rgba(7, 55, 113, 0.15);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 40px rgba(5, 28, 62, 0.2);
    grid-template-columns: repeat(3, 1fr);
    backdrop-filter: blur(13px);
  }

  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-right: 1px solid var(--line);
    color: var(--blue-dark);
    font-size: 10px;
    font-weight: 750;
    flex-direction: column;
  }

  .mobile-bar__primary {
    border-right: 0 !important;
    background: var(--blue);
    color: #fff !important;
  }

  .cookie {
    right: 10px;
    bottom: 79px;
    left: 10px;
    width: auto;
    gap: 10px;
    padding: 13px;
    grid-template-columns: auto 1fr;
  }

  .cookie__icon {
    width: 38px;
    height: 38px;
  }

  .cookie button {
    width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .container {
    width: calc(100% - 28px);
  }

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

  .service-card__body {
    min-height: 0;
  }

  .benefits__grid,
  .values-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .benefits__grid {
    gap: 10px;
  }

  .benefits__grid > div {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 790px;
  }

  .hero__content {
    min-height: 790px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero__title-main {
    white-space: normal;
  }

  .hero__buttons {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .contact-sidebar,
  .quote-card,
  .ideal-card,
  .career-card {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
