@font-face {
  font-family: "Saira";
  src: url("../assets/fonts/Saira-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira";
  src: url("../assets/fonts/Saira-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira";
  src: url("../assets/fonts/Saira-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira";
  src: url("../assets/fonts/Saira-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira";
  src: url("../assets/fonts/Saira-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira";
  src: url("../assets/fonts/Saira-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --eng-bg: #050d1c;
  --eng-blue: #123b70;
  --eng-blue-deep: #113563;
  --eng-sky: #8ebde8;
  --eng-paper: #eef4fb;
  --eng-text: #eef4fb;
  --eng-muted: #bdcad8;
  --eng-dark-text: #0b1730;
  --eng-line: rgba(142, 189, 232, 0.22);
  --eng-valid: #bfe6d2;
  --eng-valid-bg: rgba(191, 230, 210, 0.14);
  --eng-invalid: #f0a7a7;
  --eng-invalid-bg: rgba(240, 167, 167, 0.16);
  --eng-font: "Saira", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--eng-bg) !important;
  color: var(--eng-muted);
  font-family: var(--eng-font);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.eng-page *,
.eng-header *,
.eng-footer *,
.eng-cookies *,
.eng-form-modal *,
.eng-whatsapp-float * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.eng-page img,
.eng-header img,
.eng-footer img {
  display: block;
  max-width: 100%;
  height: auto;
}

.eng-page a,
.eng-header a,
.eng-footer a,
.eng-cookies a,
.eng-form-modal a {
  text-decoration: none;
}

.eng-page section[id] {
  scroll-margin-top: 110px;
}

.eng-reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 34px), 0);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.eng-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .eng-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eng-shell {
  width: min(calc(100% - 240px), 1140px);
  margin-inline: auto;
}

.eng-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding-top: 54px;
  color: var(--eng-text);
  pointer-events: none;
  transition: padding 220ms ease;
}

.eng-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 999px;
  pointer-events: auto;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.eng-header.is-scrolled {
  padding-top: 16px;
}

.eng-header.is-scrolled .eng-header__inner,
body.menu-open .eng-header__inner {
  padding: 10px 18px 10px 22px;
  border-color: rgba(142, 189, 232, 0.24);
  background: rgba(5, 13, 28, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.eng-header__logo {
  display: inline-flex;
  width: 182px;
  height: 48px;
  align-items: center;
  flex: 0 0 auto;
  transition: width 220ms ease, height 220ms ease;
}

.eng-header.is-scrolled .eng-header__logo,
body.menu-open .eng-header__logo {
  width: 150px;
  height: 38px;
}

.eng-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.eng-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.eng-header__nav a,
.eng-header__dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--eng-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.eng-header__nav a:hover,
.eng-header__dropdown:hover > a {
  color: var(--eng-sky);
}

.eng-header__dropdown {
  position: relative;
}

.eng-header__dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.eng-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  width: 233px;
  padding: 14px 18px;
  background: var(--eng-bg);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.eng-header__dropdown:hover .eng-header__dropdown-menu,
.eng-header__dropdown:focus-within .eng-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eng-header__dropdown-menu a {
  min-height: auto;
  padding: 10px 0 9px;
  border-bottom: 1px solid rgba(238, 244, 251, 0.86);
  color: var(--eng-text);
  font-size: 14px;
  line-height: 1.04;
  text-transform: none;
}

.eng-header__dropdown-menu a:last-child {
  border-bottom: 0;
}

.eng-header__cta {
  min-width: 154px;
  justify-content: center;
  padding-inline: 29px;
  background: var(--eng-sky);
  color: var(--eng-bg) !important;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.eng-header__cta:hover {
  background: var(--eng-text);
  color: var(--eng-blue) !important;
  box-shadow: 0 12px 28px rgba(142, 189, 232, 0.2);
  transform: translateY(-2px);
}

.eng-header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(238, 244, 251, 0.42);
  background: transparent;
  color: var(--eng-text);
}

.eng-header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.eng-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 2px solid transparent;
  color: var(--eng-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.eng-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.eng-btn--solid:hover {
  background: var(--eng-sky);
  color: var(--eng-blue) !important;
}

.eng-btn--outline:hover {
  border-color: var(--eng-sky);
  background: rgba(142, 189, 232, 0.14);
  color: var(--eng-sky);
}

.eng-btn--sky:hover {
  background: var(--eng-text);
  color: var(--eng-blue);
}

.eng-btn--solid {
  background: var(--eng-blue);
}

.eng-btn--outline {
  border-color: var(--eng-text);
  background: transparent;
}

.eng-btn--sky {
  min-height: 38px;
  background: var(--eng-sky);
  color: var(--eng-paper);
}

.eng-btn--solid::after {
  content: "+";
  margin-left: 10px;
  color: var(--eng-sky);
}

.eng-section {
  padding: 118px 0;
  background: var(--eng-bg);
}

.eng-copy p {
  margin: 0 0 25px;
  color: var(--eng-muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.42;
}

.eng-copy--compact p {
  margin-bottom: 18px;
  font-size: 15px;
}

.eng-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 92px;
  align-items: center;
}

.eng-split__copy h2,
.eng-section-head h2,
.eng-home-clients h2,
.eng-contact-cta h2 {
  margin: 0;
  color: var(--eng-text);
  font-size: 55px;
  font-weight: 500;
  line-height: 1.03;
}

.eng-split__copy h2 {
  margin-bottom: 55px;
}

.eng-section-head--center {
  width: min(100%, 880px);
  margin: 0 auto 72px;
  text-align: center;
}

.eng-section-head h2 {
  margin-bottom: 32px;
}

.eng-section-head p {
  margin: 0;
  color: var(--eng-muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.52;
}

.eng-cut-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 84%, 86% 100%, 0 100%, 0 12%);
}

.eng-cut-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eng-cut-image--shadow {
  overflow: visible;
}

.eng-cut-image--shadow img {
  clip-path: polygon(12% 0, 100% 0, 100% 84%, 86% 100%, 0 100%, 0 12%);
}

.eng-cut-image--shadow::after {
  content: "";
  position: absolute;
  right: -66px;
  bottom: -56px;
  z-index: -1;
  width: 86%;
  height: 88%;
  background: var(--eng-sky);
  clip-path: polygon(12% 0, 100% 0, 100% 84%, 86% 100%, 0 100%, 0 12%);
}

.eng-home-hero {
  position: relative;
  min-height: 796px;
  padding-top: 184px;
  overflow: hidden;
  background: var(--eng-bg) var(--hero-bg) center / cover no-repeat;
  border-bottom: 5px solid var(--eng-sky);
}

.eng-home-hero__inner {
  position: relative;
  min-height: 600px;
}

.eng-home-hero__copy {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
}

.eng-home-hero h1 {
  margin: 0 0 28px;
  color: var(--eng-text);
  font-size: 62px;
  font-weight: 300;
  line-height: 1.02;
}

.eng-home-hero h1 span {
  color: var(--eng-sky);
  font-weight: 700;
}

.eng-home-hero p {
  width: min(100%, 505px);
  margin: 0;
  color: #c4cedb;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.36;
}

.eng-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
}

.eng-home-hero__wire {
  position: absolute;
  right: -145px;
  bottom: 8px;
  width: min(58vw, 710px);
  opacity: 0.98;
}

.eng-home-about {
  padding: 153px 0 146px;
}

.eng-home-strengths {
  padding: 72px 0 90px;
}

.eng-blue-grid {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(142, 189, 232, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 189, 232, 0.12) 1px, transparent 1px),
    var(--eng-blue);
  background-size: 170px 170px;
}

.eng-blue-grid::before,
.eng-blue-grid::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  background: var(--eng-bg);
}

.eng-blue-grid::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.eng-blue-grid::after {
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.eng-blue-grid > .eng-shell {
  position: relative;
  z-index: 1;
}

.eng-feature-list {
  display: grid;
  gap: 31px;
  width: min(100%, 430px);
}

.eng-feature-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
}

.eng-feature-list img {
  width: 21px;
  margin-top: 3px;
}

.eng-feature-list h3 {
  margin: 0 0 7px;
  color: var(--eng-text);
  font-size: 18px;
  font-weight: 700;
}

.eng-feature-list p {
  width: min(100%, 310px);
  margin: 0;
  color: #cad5e2;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.44;
}

.eng-home-services {
  padding: 124px 0 126px;
}

.eng-service-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.eng-service-card {
  display: flex;
  min-height: 268px;
  grid-column: span 2;
  flex-direction: column;
  padding: 36px 38px 31px;
  background: var(--eng-paper);
  color: var(--eng-blue-deep);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.eng-service-card.is-featured,
.eng-service-card:nth-child(4) {
  grid-column: span 3;
}

.eng-service-card.is-featured {
  border: 1px solid var(--eng-sky);
  background: var(--eng-blue);
  color: var(--eng-text);
}

.eng-service-card:hover {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.eng-service-card__icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 31px;
  background: currentColor;
  color: var(--eng-blue-deep);
  -webkit-mask: var(--service-icon) center / contain no-repeat;
  mask: var(--service-icon) center / contain no-repeat;
}

.eng-service-card.is-featured .eng-service-card__icon {
  color: var(--eng-text);
}

.eng-service-card h3 {
  margin: 0 0 16px;
  color: currentColor;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.eng-service-card.is-featured h3 {
  color: var(--eng-sky);
}

.eng-service-card p {
  margin: 0 0 26px;
  color: currentColor;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  opacity: 0.88;
}

.eng-service-card a {
  position: relative;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  margin-top: auto;
  padding: 9px 14px 9px 0;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.eng-service-card a::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -14px;
  pointer-events: none;
  background:
    linear-gradient(currentColor, currentColor) left top / 0 1px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 1px 0 no-repeat,
    linear-gradient(currentColor, currentColor) right bottom / 0 1px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 1px 0 no-repeat;
  opacity: 0.62;
  transition: background-size 2s cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.eng-service-card a::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  color: var(--eng-sky);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  transform-origin: center;
  transition: color 220ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.eng-service-card a:hover::before,
.eng-service-card a:focus-visible::before {
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  opacity: 0.95;
}

.eng-service-card a:hover::after,
.eng-service-card a:focus-visible::after {
  transform: translateX(8px) scale(1.35);
}

.eng-service-card a:focus-visible {
  outline: 0;
}

.eng-home-clients {
  padding: 64px 0 145px;
}

.eng-home-clients__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 45px;
}

.eng-home-clients h2 {
  max-width: 485px;
}

.eng-home-clients p {
  max-width: 570px;
  justify-self: end;
  margin: 0;
  color: var(--eng-text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.38;
  text-align: right;
}

.eng-client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.eng-client-logos img {
  max-width: 140px;
  max-height: 58px;
  object-fit: contain;
}

.eng-contact-cta {
  padding: 118px 0 92px;
  background: var(--eng-bg);
}

.eng-contact-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 432px;
  width: min(calc(100% - 412px), 1028px);
  min-height: 416px;
  align-items: center;
  padding: 104px 52px 96px;
  background: var(--eng-paper);
}

.eng-contact-cta__copy h2 {
  max-width: 420px;
  margin-bottom: 24px;
  color: var(--eng-blue);
  font-size: 48px;
  font-weight: 400;
  line-height: 0.96;
}

.eng-contact-cta__copy p {
  max-width: 370px;
  margin: 0;
  color: var(--eng-blue);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.36;
}

.eng-contact-cta__form {
  position: absolute;
  top: -62px;
  right: 51px;
  width: 432px;
  padding: 40px 28px 30px;
  border: 1px solid var(--eng-sky);
  border-radius: 4px;
  background: var(--eng-blue);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.eng-contact-cta__form .wpcf7 {
  margin: 0;
}

.eng-contact-cta__form .engemon-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 24px;
}

.eng-contact-cta__form .span-2,
.eng-contact-cta__form .form-group:first-child,
.eng-contact-cta__form .form-group:nth-child(4),
.eng-contact-cta__form .form-group:nth-child(5),
.eng-contact-cta__form .submit-wrapper {
  grid-column: 1 / -1;
}

.eng-contact-cta__form label {
  display: grid;
  gap: 10px;
  color: var(--eng-text);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}

.eng-contact-cta__form input,
.eng-contact-cta__form textarea {
  width: 100%;
  height: 41px;
  min-height: 41px;
  padding: 8px 10px;
  border: 1px solid rgba(142, 189, 232, 0.8);
  border-radius: 0;
  background: transparent;
  color: var(--eng-text);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.eng-contact-cta__form textarea {
  height: 108px;
  min-height: 108px;
  max-height: 168px;
  resize: vertical;
}

.eng-contact-cta__form input:focus,
.eng-contact-cta__form textarea:focus {
  border-color: var(--eng-text);
  box-shadow: 0 0 0 2px rgba(142, 189, 232, 0.18);
}

.eng-contact-cta__form input[type="submit"],
.eng-contact-cta__form .wpcf7-submit {
  height: 49px;
  min-height: 49px;
  border: 0;
  background: var(--eng-sky);
  color: var(--eng-text);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.eng-contact-cta__form input[type="submit"]:hover,
.eng-contact-cta__form .wpcf7-submit:hover {
  background: var(--eng-text);
  color: var(--eng-blue);
  transform: translateY(-2px);
}

.eng-contact-cta__form input[type="submit"]:disabled,
.eng-contact-cta__form .wpcf7-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  filter: grayscale(0.25);
}

.eng-contact-cta__form .form-group {
  position: relative;
}

.eng-contact-cta__form .form-group.is-valid input,
.eng-contact-cta__form .form-group.is-valid textarea {
  border-color: var(--eng-valid);
  background: var(--eng-valid-bg);
  box-shadow: inset 0 0 0 1px rgba(191, 230, 210, 0.18);
}

.eng-contact-cta__form .form-group.is-invalid input,
.eng-contact-cta__form .form-group.is-invalid textarea,
.eng-contact-cta__form input.wpcf7-not-valid,
.eng-contact-cta__form textarea.wpcf7-not-valid {
  border-color: var(--eng-invalid);
  background: var(--eng-invalid-bg);
  box-shadow: inset 0 0 0 1px rgba(240, 167, 167, 0.18);
}

.eng-field-message {
  display: none;
  margin-top: 5px;
  color: var(--eng-invalid);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.form-group.is-invalid .eng-field-message {
  display: block;
}

.eng-contact-cta__form .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: -28px;
  margin: 0;
}

.eng-contact-cta__form .wpcf7-not-valid-tip,
.eng-contact-cta__form .wpcf7-response-output {
  color: var(--eng-text);
  font-size: 12px;
}

.eng-contact-cta__form .wpcf7-not-valid-tip {
  display: none;
}

.eng-contact-cta__form .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-color: rgba(142, 189, 232, 0.8);
}

.eng-contact-cta__form form.invalid .wpcf7-response-output,
.eng-contact-cta__form form.failed .wpcf7-response-output,
.eng-contact-cta__form form.spam .wpcf7-response-output {
  border-color: var(--eng-invalid);
  background: var(--eng-invalid-bg);
}

.eng-contact-cta__form form.sent .wpcf7-response-output {
  border-color: var(--eng-valid);
  background: var(--eng-valid-bg);
}

.eng-page-hero {
  padding: 169px 0 92px;
  background: var(--eng-bg);
}

.eng-inner-hero {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  justify-content: center;
  align-items: flex-start;
  padding: 62px 84px;
  overflow: hidden;
  background: var(--eng-blue) var(--inner-hero-bg) center / cover no-repeat;
  clip-path: polygon(7% 0, 100% 0, 100% 78%, 92% 100%, 0 100%, 0 16%);
}

.eng-inner-hero--large {
  min-height: 390px;
}

.eng-inner-hero h1 {
  width: min(100%, 720px);
  margin: 0;
  color: var(--eng-text);
  font-size: 55px;
  font-weight: 300;
  line-height: 1.08;
  text-transform: none;
}

.eng-inner-hero--large h1 {
  font-size: 62px;
  text-transform: uppercase;
}

.eng-inner-hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--eng-muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.35;
}

.eng-about-history {
  padding-top: 80px;
  padding-bottom: 100px;
}

.eng-about-history__image img {
  width: 100%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.eng-pillars {
  padding-top: 48px;
  padding-bottom: 85px;
}

.eng-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 930px);
  margin: 0 auto;
}

.eng-light-card {
  min-height: 270px;
  padding: 30px 28px;
  background: var(--eng-paper);
  color: var(--eng-blue-deep);
}

.eng-pillar-card__head {
  margin-bottom: 17px;
}

.eng-pillar-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  background: #11305e;
  color: var(--eng-sky);
}

.eng-pillar-card__icon::before,
.eng-pillar-topic__icon {
  content: "";
  display: block;
  background: currentColor;
}

.eng-pillar-card__icon::before {
  -webkit-mask: var(--pillar-icon) center / contain no-repeat;
  mask: var(--pillar-icon) center / contain no-repeat;
}

.eng-pillar-card__icon::before {
  width: 24px;
  height: 24px;
}

.eng-pillar-card.has-topics .eng-pillar-card__icon {
  width: 32px;
  height: 32px;
  justify-content: flex-start;
  margin-bottom: 0;
  background: transparent;
  color: var(--eng-blue-deep);
}

.eng-pillar-card.has-topics .eng-pillar-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.eng-light-card h3 {
  margin: 0;
  color: currentColor;
  font-size: 18px;
  font-weight: 700;
}

.eng-light-card p {
  margin: 0;
  color: currentColor;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.42;
}

.eng-pillar-topic-list {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

.eng-pillar-topic {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.eng-pillar-topic__icon {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  color: var(--eng-blue-deep);
  -webkit-mask: var(--topic-icon) center / contain no-repeat;
  mask: var(--topic-icon) center / contain no-repeat;
}

.eng-pillar-topic h4 {
  margin: 0 0 5px;
  color: var(--eng-dark-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.eng-pillar-topic p {
  margin: 0;
  color: var(--eng-dark-text);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.42;
}

.eng-specializations-frame {
  display: grid;
  grid-column: 1 / -1;
  min-height: 240px;
  background: var(--eng-paper);
}

.eng-specializations-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 52px;
  align-content: center;
  align-items: center;
  min-height: 100%;
  padding: 38px 56px;
  background: transparent;
}

.eng-specializations-card h3 {
  justify-self: center;
  margin: 0;
  color: var(--eng-blue-deep);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.eng-specializations-card ul {
  display: grid;
  width: min(100%, 720px);
  gap: 18px;
  justify-self: center;
  margin: 0;
  padding: 0;
  color: var(--eng-dark-text);
  list-style: none;
}

.eng-specializations-card li {
  position: relative;
  padding-left: 24px;
  color: var(--eng-dark-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.eng-specializations-card li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--eng-blue-deep);
}

.eng-quality {
  padding-top: 0;
  padding-bottom: 78px;
}

.eng-quality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eng-quality h2,
.eng-transparency h2 {
  margin: 0 0 30px;
  color: var(--eng-text);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.eng-quality p {
  margin: 0;
  color: var(--eng-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.48;
}

.eng-cert-grid {
  display: flex;
  gap: 24px;
}

.eng-cert-card {
  display: block;
  width: 170px;
}

.eng-transparency {
  padding-top: 8px;
  padding-bottom: 115px;
}

.eng-transparency .eng-split {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.eng-transparency__image img {
  width: 100%;
}

.eng-transparency__downloads {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.eng-transparency-download {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 56px;
  background: var(--eng-sky);
  color: var(--eng-text) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.eng-transparency-download span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eng-transparency-download:hover {
  background: var(--eng-text);
  color: var(--eng-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.eng-transparency-download[aria-disabled="true"] {
  cursor: default;
}

.eng-transparency-download i {
  position: absolute;
  top: 50%;
  right: 28px;
  display: block;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%);
}

.eng-transparency-download i::before,
.eng-transparency-download i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.eng-transparency-download i::before {
  top: 1px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.eng-transparency-download i::after {
  top: 6px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.eng-ethics {
  padding: 78px 0;
}

.eng-ethics .eng-split {
  grid-template-columns: 1fr 0.9fr;
}

.eng-ethics__image img {
  width: 100%;
}

.eng-ethics h2 {
  margin-bottom: 22px;
}

.eng-ethics p,
.eng-ethics a,
.eng-ethics strong {
  display: block;
  max-width: 400px;
  color: var(--eng-text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
}

.eng-ethics a {
  margin: 12px 0 22px;
  color: var(--eng-sky);
  font-weight: 700;
}

.eng-ethics strong {
  font-weight: 700;
}

.eng-services-list {
  padding-top: 64px;
}

.eng-service-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 92px;
  align-items: center;
  margin-bottom: 128px;
}

.eng-service-row.is-reverse {
  grid-template-columns: 1fr 0.9fr;
}

.eng-service-row.is-reverse .eng-service-row__copy {
  order: 2;
}

.eng-service-row.is-reverse .eng-service-row__image {
  order: 1;
}

.eng-service-row h2 {
  margin: 0 0 35px;
  color: var(--eng-text);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
}

.eng-service-row__kicker {
  margin-bottom: 26px !important;
  color: var(--eng-muted) !important;
  font-weight: 700 !important;
}

.eng-service-row p,
.eng-service-intro__text p,
.eng-service-how p {
  margin: 0 0 26px;
  color: var(--eng-muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.eng-check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.eng-check-list li {
  position: relative;
  min-height: 24px;
  padding-left: 35px;
  color: var(--eng-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
}

.eng-check-list li::before {
  content: "";
  position: absolute;
  top: 0.12em;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--eng-sky);
  border-radius: 50%;
}

.eng-check-list li::after {
  content: "";
  position: absolute;
  top: calc(0.12em + 6px);
  left: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--eng-sky);
  border-bottom: 2px solid var(--eng-sky);
  transform: rotate(-45deg);
}

.eng-service-detail .eng-page-hero {
  padding-bottom: 110px;
}

.eng-service-intro {
  padding-top: 20px;
  padding-bottom: 80px;
}

.eng-service-intro .eng-split {
  align-items: center;
}

.eng-service-how {
  padding-top: 72px;
  padding-bottom: 72px;
}

.eng-service-how .eng-split {
  grid-template-columns: minmax(0, 515px) minmax(0, 525px);
  gap: 90px;
  align-items: start;
}

.eng-service-how h2 {
  margin-bottom: 28px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.08;
}

.eng-service-how p {
  font-size: 20px;
  line-height: 1.36;
}

.eng-service-how strong {
  display: block;
  margin: 0 0 22px;
  color: var(--eng-text);
  font-size: 18px;
  font-weight: 700;
}

.eng-service-how .eng-check-list {
  gap: 14px;
  margin-top: 0;
}

.eng-service-how .eng-check-list li {
  min-height: 24px;
  padding-left: 40px;
  font-size: 20px;
  line-height: 1.18;
}

.eng-service-how .eng-check-list li::before {
  width: 22px;
  height: 22px;
}

.eng-service-how .eng-check-list li::after {
  top: calc(0.12em + 7px);
  left: 7px;
}

.eng-service-how .eng-check-list + p {
  margin-top: 18px;
}

.eng-service-how__image {
  width: 525px;
  max-width: 100%;
  justify-self: end;
}

.eng-service-how__image img {
  width: 100%;
}

.eng-service-focus {
  padding: 52px 0 112px;
  background: var(--eng-bg);
}

.eng-service-focus__panel {
  width: min(calc(100% - 360px), 960px);
  padding: 70px 92px 66px;
  background: var(--eng-sky);
  color: var(--eng-dark-text);
  text-align: center;
}

.eng-service-focus h2 {
  margin: 0 0 28px;
  color: var(--eng-dark-text);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.08;
}

.eng-service-focus .eng-copy p {
  max-width: 705px;
  margin: 0 auto 24px;
  color: var(--eng-dark-text);
  font-size: 18px;
  line-height: 1.42;
}

.eng-service-diffs {
  padding-top: 0;
  padding-bottom: 38px;
}

.eng-service-diffs__head {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.eng-service-diffs__head h2 {
  margin: 0;
  color: var(--eng-text);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.08;
}

.eng-service-diffs__head p {
  margin: 0;
  max-width: 500px;
  justify-self: end;
  color: var(--eng-text);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.36;
  text-align: right;
}

.eng-service-diffs__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.eng-service-diffs__grid.is-compact {
  width: 850px;
  max-width: 100%;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 270px));
  justify-content: center;
}

.eng-diff-card {
  min-height: 134px;
  padding: 64px 24px 22px;
  background: var(--eng-paper);
  color: #707982;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  position: relative;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.eng-diff-card:hover {
  background: #f7fbff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.eng-diff-card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 24px;
  width: 22px;
  height: 12px;
  border-left: 4px solid var(--eng-sky);
  border-bottom: 4px solid var(--eng-sky);
  transform: rotate(-45deg);
}

.eng-service-diffs__cta {
  display: flex;
  min-height: 134px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
  color: var(--eng-text);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 180ms ease, transform 180ms ease;
}

.eng-service-diffs__cta span {
  color: var(--eng-sky);
  font-weight: 700;
}

.eng-service-diffs__cta:hover {
  color: var(--eng-sky);
  transform: translateX(4px);
}

.eng-policy-content {
  padding: 0 0 250px;
  background: var(--eng-bg);
}

.eng-policy-content .eng-shell {
  width: min(calc(100% - 430px), 1015px);
}

.eng-policy-content__intro {
  margin: 0 0 70px;
  color: var(--eng-muted);
  font-size: 27px;
  font-weight: 300;
  line-height: 1.45;
}

.eng-policy-content h2 {
  margin: 0 0 42px;
  color: var(--eng-text);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
}

.eng-policy-content ul {
  display: grid;
  gap: 48px;
  margin: 0;
  padding-left: 28px;
}

.eng-policy-content li {
  color: var(--eng-muted);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.45;
}

.eng-policy-content li::marker {
  color: var(--eng-text);
}

.eng-privacy-page {
  background: var(--eng-bg);
}

.eng-privacy-content {
  padding: 156px 0 120px;
}

.eng-privacy-content__inner {
  width: min(calc(100% - 260px), 790px);
  margin-right: auto;
  margin-left: max(118px, calc((100vw - 1140px) / 2));
}

.eng-privacy-content p,
.eng-privacy-content li {
  margin: 0 0 13px;
  color: var(--eng-muted);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.42;
}

.eng-privacy-content h2 {
  margin: 28px 0 10px;
  color: var(--eng-text);
  font-size: 13px;
  font-weight: 700;
}

.eng-privacy-content ol,
.eng-privacy-content ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.eng-footer {
  padding: 66px 0 33px;
  background: var(--eng-blue);
  color: rgba(238, 244, 251, 0.78);
}

.eng-footer .eng-shell {
  width: min(calc(100% - 390px), 1050px);
}

.eng-footer__grid {
  display: grid;
  grid-template-columns: 300px 190px minmax(300px, 1fr);
  justify-content: space-between;
  gap: 82px;
  align-items: start;
}

.eng-footer__brand img {
  width: 161px;
  margin-bottom: 28px;
}

.eng-footer__brand p {
  max-width: 270px;
  margin: 0;
  color: rgba(238, 244, 251, 0.78);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.eng-footer h2 {
  margin: 0 0 13px;
  color: var(--eng-text);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.eng-footer__links,
.eng-footer__contact {
  display: grid;
  gap: 9px;
}

.eng-footer a,
.eng-footer p {
  color: rgba(238, 244, 251, 0.8);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.eng-footer a:hover {
  color: var(--eng-sky);
}

.eng-footer__icon {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  max-width: 330px;
}

.eng-footer__icon-mark {
  display: inline-flex;
  width: 18px;
  min-height: 18px;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.eng-footer__icon-mark img {
  width: auto;
  max-width: 18px;
  max-height: 23px;
}

.eng-footer__icon--mail {
  text-decoration: none;
}

.eng-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(238, 244, 251, 0.44);
}

.eng-footer__bottom p {
  margin: 0;
  font-size: 11px;
}

.eng-footer__bottom p:last-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eng-footer__bottom img {
  width: auto;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.eng-cookies {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  padding: 22px 0;
  background: var(--eng-bg);
  border-top: 1px solid rgba(142, 189, 232, 0.36);
  transform: translateY(100%);
  transition: transform 320ms ease;
}

.eng-cookies.is-visible {
  transform: translateY(0);
}

.eng-cookies__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.eng-cookies p {
  margin: 0;
  color: var(--eng-text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

.eng-cookies a {
  color: var(--eng-sky);
  font-weight: 700;
  text-decoration: none;
}

.eng-cookies button {
  width: 244px;
  min-height: 56px;
  border: 1px solid var(--eng-sky);
  background: var(--eng-blue);
  color: var(--eng-text);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.eng-whatsapp-float {
  box-sizing: border-box;
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 88;
  display: inline-flex;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #1f9d63;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  line-height: 0;
  overflow: hidden;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.eng-whatsapp-float:hover {
  background: #20b86d;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.eng-whatsapp-float svg {
  display: block;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  fill: #ffffff;
}

.eng-whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.eng-form-modal[hidden] {
  display: none;
}

.eng-form-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.eng-form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 28, 0.74);
  backdrop-filter: blur(7px);
}

.eng-form-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 38px 34px 32px;
  border: 1px solid rgba(142, 189, 232, 0.72);
  background: var(--eng-blue);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  color: var(--eng-text);
}

.eng-form-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(238, 244, 251, 0.42);
  background: transparent;
  cursor: pointer;
}

.eng-form-modal__close::before,
.eng-form-modal__close::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 13px;
  height: 1px;
  background: var(--eng-text);
}

.eng-form-modal__close::before {
  transform: rotate(45deg);
}

.eng-form-modal__close::after {
  transform: rotate(-45deg);
}

.eng-form-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--eng-sky);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.eng-form-modal h2 {
  margin: 0 0 12px;
  color: var(--eng-text);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
}

.eng-form-modal p {
  margin: 0;
  color: rgba(238, 244, 251, 0.82);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.eng-form-modal__button {
  width: 100%;
  min-height: 44px;
  margin-top: 28px;
  border: 0;
  background: var(--eng-sky);
  color: var(--eng-text);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .eng-shell,
  .eng-policy-content .eng-shell,
  .eng-privacy-content__inner {
    width: min(calc(100% - 48px), 900px);
    margin-inline: auto;
  }

  .eng-header {
    padding-top: 28px;
  }

  .eng-header__toggle {
    display: block;
  }

  .eng-header__nav {
    position: fixed;
    inset: 0 0 auto;
    display: none;
    max-height: 100vh;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 104px 24px 34px;
    background: rgba(5, 13, 28, 0.98);
  }

  body.menu-open .eng-header__nav {
    display: flex;
  }

  .eng-header__nav a,
  .eng-header__dropdown > a {
    min-height: 48px;
    font-size: 16px;
  }

  .eng-header__dropdown-menu {
    position: static;
    width: 100%;
    padding: 6px 0 16px 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .eng-header__cta {
    justify-content: center;
    margin-top: 18px;
  }

  .eng-split,
  .eng-home-clients__head,
  .eng-quality__grid,
  .eng-service-row,
  .eng-service-row.is-reverse,
  .eng-service-diffs__head,
  .eng-footer__grid {
    grid-template-columns: 1fr;
  }

  .eng-footer .eng-shell,
  .eng-contact-cta__panel {
    width: min(calc(100% - 48px), 900px);
  }

  .eng-service-row.is-reverse .eng-service-row__copy,
  .eng-service-row.is-reverse .eng-service-row__image {
    order: initial;
  }

  .eng-service-how .eng-split {
    grid-template-columns: 1fr;
  }

  .eng-service-how__image {
    width: 100%;
    justify-self: stretch;
  }

  .eng-contact-cta__panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 58px 42px 46px;
  }

  .eng-contact-cta__form {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 34px;
  }

  .eng-pillar-grid,
  .eng-service-card-grid,
  .eng-service-diffs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eng-service-card,
  .eng-service-card.is-featured,
  .eng-service-card:nth-child(4) {
    grid-column: span 1;
  }

  .eng-service-diffs__grid.is-compact {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eng-specializations-card {
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 34px;
    padding-inline: 38px;
  }

  .eng-service-diffs__head p {
    justify-self: start;
    text-align: left;
  }

  .eng-service-focus__panel {
    width: min(calc(100% - 48px), 900px);
  }
}

@media (max-width: 720px) {
  .eng-shell,
  .eng-policy-content .eng-shell,
  .eng-privacy-content__inner,
  .eng-footer .eng-shell,
  .eng-contact-cta__panel {
    width: min(calc(100% - 28px), 620px);
    margin-inline: auto;
  }

  .eng-header__logo,
  .eng-header__logo img {
    width: 142px;
  }

  .eng-header.is-scrolled .eng-header__logo,
  body.menu-open .eng-header__logo,
  .eng-header.is-scrolled .eng-header__logo img,
  body.menu-open .eng-header__logo img {
    width: 128px;
  }

  .eng-home-hero {
    min-height: 720px;
    padding-top: 132px;
  }

  .eng-home-hero h1,
  .eng-inner-hero h1,
  .eng-inner-hero--large h1 {
    font-size: 42px;
  }

  .eng-home-hero__wire {
    right: -210px;
    width: 710px;
    opacity: 0.35;
  }

  .eng-home-hero__actions,
  .eng-footer__bottom,
  .eng-cookies__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .eng-btn,
  .eng-cookies button {
    width: 100%;
  }

  .eng-whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .eng-reveal {
    --reveal-x: 0 !important;
  }

  .eng-section,
  .eng-home-about,
  .eng-home-services,
  .eng-home-clients,
  .eng-services-list {
    padding: 76px 0;
  }

  .eng-split {
    gap: 42px;
  }

  .eng-split__copy h2,
  .eng-section-head h2,
  .eng-home-clients h2,
  .eng-contact-cta h2,
  .eng-service-row h2,
  .eng-service-focus h2,
  .eng-service-diffs__head h2,
  .eng-policy-content h2 {
    font-size: 34px;
  }

  .eng-copy p,
  .eng-section-head p,
  .eng-home-clients p,
  .eng-contact-cta__copy p,
  .eng-service-row p,
  .eng-service-intro__text p,
  .eng-service-how p,
  .eng-policy-content li,
  .eng-policy-content__intro {
    font-size: 16px;
  }

  .eng-inner-hero {
    min-height: 300px;
    padding: 40px 28px;
    clip-path: polygon(10% 0, 100% 0, 100% 84%, 90% 100%, 0 100%, 0 12%);
  }

  .eng-pillar-grid,
  .eng-service-card-grid,
  .eng-service-diffs__grid,
  .eng-service-diffs__grid.is-compact,
  .eng-contact-cta__form .engemon-form-grid {
    grid-template-columns: 1fr;
  }

  .eng-specializations-card {
    grid-template-columns: 1fr;
    row-gap: 22px;
    min-height: auto;
    padding: 30px 24px;
  }

  .eng-specializations-frame {
    min-height: auto;
  }

  .eng-specializations-card ul {
    width: min(100%, 540px);
    max-width: none;
    margin-top: 0;
  }

  .eng-transparency-download {
    min-height: 46px;
    padding: 10px 44px 10px 18px;
    font-size: 13px;
  }

  .eng-transparency-download i {
    right: 18px;
  }

  .eng-contact-cta {
    padding: 76px 0 70px;
  }

  .eng-contact-cta__panel {
    padding: 42px 24px 34px;
  }

  .eng-contact-cta__copy h2 {
    font-size: 40px;
  }

  .eng-contact-cta__copy p,
  .eng-service-diffs__head p,
  .eng-service-diffs__cta {
    font-size: 16px;
  }

  .eng-contact-cta__form {
    padding: 28px 22px 24px;
  }

  .eng-contact-cta__form label {
    font-size: 13px;
  }

  .eng-diff-card,
  .eng-service-diffs__cta {
    min-height: 120px;
  }

  .eng-diff-card {
    font-size: 15px;
  }

  .eng-home-clients p,
  .eng-service-diffs__head p {
    justify-self: start;
    text-align: left;
  }

  .eng-client-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .eng-service-focus__panel {
    padding: 46px 24px;
  }

  .eng-cookies p {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .eng-transparency-download {
    padding: 10px 34px 10px 10px;
    font-size: 11px;
  }

  .eng-transparency-download i {
    right: 10px;
    width: 14px;
    height: 14px;
  }
}
