@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #17212b;
  --muted: #66717b;
  --blue: #176de5;
  --blue2: #0d59c1;
  --line: #dfe4e8;
  --pale: #f3f6f8;
  --white: #fff;
  --navy: #111b25;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, Arial, sans-serif;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.05;
}
p {
  color: var(--muted);
  line-height: 1.7;
}
.header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: #fff;
  transition: 0.3s;
}
.header:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.header-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(15, 30, 45, 0.07);
  backdrop-filter: blur(15px);
}
.header-solid:after {
  border-color: #e5e8eb;
}
.nav-wrap {
  height: 84px;
  max-width: 1440px;
  margin: auto;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  gap: 4vw;
}
.mark {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 12px;
  min-width: 204px;
}
.mark-dark,
.header-solid .mark {
  color: var(--ink);
}
.mark > span:last-child {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.14em;
}
.mark b {
  font-family: Manrope;
  font-size: 17px;
  line-height: 1;
}
.mark small {
  font-size: 8px;
  margin-top: 5px;
  letter-spacing: 0.19em;
}
.mark-symbol {
  width: 27px;
  height: 28px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  transform: skew(-17deg);
}
.mark-symbol i {
  display: block;
  background: var(--blue);
  width: 8px;
}
.mark-symbol i:nth-child(1) {
  height: 12px;
}
.mark-symbol i:nth-child(2) {
  height: 20px;
}
.mark-symbol i:nth-child(3) {
  height: 28px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 14px;
  display: flex;
  gap: 4px;
  align-items: center;
  white-space: nowrap;
}
.desktop-nav a:hover {
  color: #7fb5ff;
}
.header-solid .desktop-nav a:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  border: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
  padding: 17px 23px;
  font-weight: 600;
  transition: 0.25s;
}
.button:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(23, 109, 229, 0.22);
}
.button-small {
  padding: 13px 17px;
  font-size: 13px;
}
.button-light {
  background: #fff;
  color: var(--navy);
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  color: inherit;
}
.mobile-nav {
  background: #fff;
  color: var(--ink);
  padding: 10px 6vw 25px;
  display: flex;
  flex-direction: column;
}
.mobile-nav a {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
}
.hero {
  height: max(760px, 100svh);
  min-height: 720px;
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #17212b;
}
.hero > img {
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 15, 24, 0.88) 0%,
      rgba(8, 17, 27, 0.63) 42%,
      rgba(8, 17, 27, 0.12) 73%
    ),
    linear-gradient(0deg, rgba(6, 14, 23, 0.62), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: auto;
  height: 100%;
  padding: 170px 6vw 125px;
  display: flex;
  align-items: center;
}
.hero-content > div {
  max-width: 890px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 25px;
}
.eyebrow > span {
  width: 30px;
  height: 2px;
  background: var(--blue);
}
.hero h1 {
  font-size: clamp(4rem, 7.2vw, 7.7rem);
  font-weight: 500;
  line-height: 0.96;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  color: #9bc5f9;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 38px;
}
.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.text-link:hover svg,
.inline-link:hover svg {
  transform: translateX(4px);
}
.text-link svg,
.inline-link svg {
  transition: 0.2s;
}
.hero-foot {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1440px;
  margin: auto;
  padding: 27px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.hero-foot i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35d187;
  margin-right: 9px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  margin: auto;
  border-left: 1px solid var(--line);
}
.stats > div {
  padding: 40px 3vw;
  border-right: 1px solid var(--line);
}
.stats strong {
  font-family: Manrope;
  font-weight: 500;
  font-size: 2.5rem;
  display: block;
}
.stats span {
  color: var(--muted);
  font-size: 13px;
}
.section {
  padding: 120px max(6vw, calc((100vw - 1280px) / 2));
}
.intro,
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  align-items: start;
}
.intro .lead,
.split .lead {
  font-size: 1.3rem;
}
.intro .inline-link,
.split .inline-link {
  margin-top: 20px;
  color: var(--blue);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 62px;
}
.section-head h2 {
  margin-bottom: 0;
}
.section-head > p {
  max-width: 420px;
}
.services {
  background: var(--pale);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfd5da;
  border-left: 1px solid #cfd5da;
}
.service-card {
  padding: 38px;
  min-height: 390px;
  background: #fff;
  border-right: 1px solid #cfd5da;
  border-bottom: 1px solid #cfd5da;
  position: relative;
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20, 35, 50, 0.1);
  z-index: 2;
}
.service-card > .card-num {
  color: #98a1aa;
  font-size: 12px;
}
.service-card > svg {
  display: block;
  margin: 48px 0 28px;
  color: var(--blue);
  width: 31px;
  height: 31px;
}
.service-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
}
.service-card p {
  font-size: 14px;
}
.service-card > div span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--line);
  padding: 6px 8px;
  margin-right: 5px;
}
.service-card > a {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: var(--blue);
}
.image-break {
  position: relative;
  height: 680px;
}
.image-break > img {
  object-fit: cover;
}
.image-break-card {
  position: absolute;
  left: 7vw;
  bottom: 0;
  width: min(480px, 85vw);
  background: rgba(15, 27, 38, 0.94);
  color: #fff;
  padding: 50px;
}
.image-break-card svg {
  color: #78aff6;
}
.image-break-card p {
  color: #fff;
  font: 500 2rem/1.25 Manrope;
  margin: 25px 0;
}
.image-break-card span {
  font-size: 10px;
  letter-spacing: 0.15em;
}
.industry-list {
  border-top: 1px solid var(--line);
}
.industry-list > a {
  min-height: 115px;
  display: grid;
  grid-template-columns: 55px 60px 1fr 35px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: 0.25s;
}
.industry-list > a:hover {
  background: var(--pale);
  padding: 0 25px;
}
.industry-list > a > span {
  color: #9aa2aa;
  font-size: 11px;
}
.industry-list > a > svg {
  color: var(--blue);
}
.industry-list h3 {
  font-size: 1.65rem;
  margin: 0;
}
.industry-list p {
  margin: 5px 0 0;
}
.industry-list > a > svg:last-child {
  color: var(--ink);
}
.projects {
  background: var(--navy);
  color: #fff;
}
.projects .inline-link {
  color: #8bbcfb;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.project-image {
  height: 290px;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.project-image img {
  object-fit: cover;
  transition: 0.5s;
}
.project-card:hover img {
  transform: scale(1.04);
}
.project-card > span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #87baf8;
}
.project-card h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}
.project-card p {
  color: #aeb7c0;
  font-size: 14px;
}
.project-card strong {
  display: block;
  font-size: 12px;
  border-top: 1px solid #39434c;
  padding-top: 15px;
}
.why {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 9vw;
}
.why > div:first-child > p {
  font-size: 1.1rem;
  max-width: 520px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.check-grid div {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: center;
}
.check-grid svg {
  color: var(--blue);
  width: 19px;
}
.cta {
  background: var(--blue);
  color: #fff;
  padding: 90px max(6vw, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  align-items: flex-end;
}
.cta h2 {
  margin: 0;
}
.cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}
.footer {
  background: #101820;
  color: #fff;
  padding: 80px max(6vw, calc((100vw - 1280px) / 2)) 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 5vw;
  padding-bottom: 65px;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-top p {
  max-width: 300px;
  color: #9ca7b0;
}
.footer h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #81909c;
  margin-bottom: 12px;
}
.footer a,
.footer span {
  font-size: 14px;
  color: #c4cbd0;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #35404a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
}
.inner-hero {
  padding: 190px max(6vw, calc((100vw - 1280px) / 2)) 100px;
  background: #f2f5f7;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 9vw;
  align-items: flex-end;
}
.inner-hero h1 {
  font-size: clamp(3.8rem, 6.5vw, 7rem);
  line-height: 0.98;
  font-weight: 500;
  margin: 0;
}
.inner-hero > p {
  font-size: 1.2rem;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0;
}
.values article {
  border-top: 2px solid var(--ink);
  padding: 30px 25px;
}
.values span,
.process article > span,
.pillars span {
  font-size: 11px;
  color: #9aa2aa;
}
.values h3,
.pillars h3 {
  font-size: 1.5rem;
  margin: 40px 0 15px;
}
.process {
  background: var(--navy);
  color: #fff;
}
.process > div:last-child {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
}
.process article {
  border-top: 1px solid #52606b;
  padding: 28px 25px;
}
.process article h3 {
  margin-top: 45px;
}
.process article p {
  color: #9ba7af;
  font-size: 13px;
}
.detail-list article {
  border-top: 1px solid var(--line);
}
.detail-list article:last-child {
  border-bottom: 1px solid var(--line);
}
.detail-list button {
  width: 100%;
  border: 0;
  background: #fff;
  display: grid;
  grid-template-columns: 55px 60px 1fr 30px;
  text-align: left;
  align-items: center;
  padding: 30px 0;
}
.detail-list button > span {
  color: #9da4aa;
  font-size: 11px;
}
.detail-list button > svg {
  color: var(--blue);
}
.detail-list button > svg:last-child {
  color: var(--ink);
}
.detail-list h3 {
  margin: 0;
  font-size: 2rem;
}
.detail-list article > div {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding: 0 7vw 45px 115px;
}
.detail-list ul {
  list-style: none;
  padding: 0;
}
.detail-list li {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}
.detail-list li svg {
  width: 16px;
  color: var(--blue);
}
.industry-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.industry-card {
  background: #fff;
  padding: 55px;
}
.industry-card > div {
  display: flex;
  justify-content: space-between;
  color: #929ba3;
}
.industry-card > div svg {
  color: var(--blue);
}
.industry-card h2 {
  font-size: 2.4rem;
  margin: 55px 0 15px;
}
.industry-card h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 30px;
}
.industry-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}
.industry-card a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--blue);
  font-weight: 600;
  margin-top: 35px;
}
.portfolio .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 45px;
}
.filters button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 11px 18px;
}
.filters button.active {
  background: var(--ink);
  color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px 30px;
}
.portfolio .project-image {
  height: 420px;
}
.portfolio .project-card h3 {
  font-size: 1.8rem;
}
.portfolio .project-card strong {
  border-color: var(--line);
}
.scope {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.scope span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.scope p {
  font-size: 13px;
  margin: 5px 0;
}
.safety-statement {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  background: var(--blue);
  color: #fff;
}
.safety-statement > svg {
  width: 160px;
  height: 160px;
  opacity: 0.65;
}
.safety-statement .lead {
  color: #d6e7ff;
  font-size: 1.25rem;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillars article {
  padding: 20px 30px;
  border-left: 1px solid var(--line);
}
.quality {
  padding: 110px max(6vw, calc((100vw - 1280px) / 2));
  background: var(--pale);
}
.quality > p {
  font-size: 1.2rem;
  max-width: 750px;
}
.quality > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
}
.quality > div span {
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.quality svg {
  color: var(--blue);
  width: 17px;
}
.career-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.benefits svg {
  color: var(--blue);
}
.openings {
  background: var(--pale);
}
.openings > article {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 28px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.openings h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.openings article span {
  display: inline-flex;
  gap: 6px;
  margin-right: 20px;
  color: var(--muted);
  font-size: 13px;
}
.openings article svg {
  width: 15px;
}
.openings article > a {
  display: flex;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
}
.talent-form {
  background: var(--navy);
  color: #fff;
  margin-top: 45px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.talent-form p {
  margin: 0;
}
.file-button {
  margin-left: auto;
  background: #fff;
  color: var(--ink);
  padding: 14px 18px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.file-button input {
  display: none;
}
.success {
  color: #70e2aa;
  display: flex;
  gap: 8px;
  align-items: center;
}
.contact-page {
  padding: 160px max(6vw, calc((100vw - 1280px) / 2)) 90px;
  background: var(--pale);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.contact-copy {
  padding-top: 60px;
}
.contact-copy h1 {
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  line-height: 0.96;
  font-weight: 500;
}
.contact-copy > p {
  font-size: 1.2rem;
}
.contact-details {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details a,
.contact-details span {
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-details svg {
  color: var(--blue);
  width: 19px;
}
.contact-form {
  background: #fff;
  padding: 48px;
  box-shadow: 0 25px 70px rgba(22, 34, 45, 0.09);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #cfd5da;
  padding: 13px;
  background: #fff;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #a6c9f8;
  border-color: var(--blue);
}
.upload {
  border: 1px dashed #aeb8c1;
  padding: 18px;
  display: grid !important;
  grid-template-columns: 25px 1fr;
  align-items: center;
}
.upload input {
  grid-column: 2;
  padding: 0;
  border: 0;
}
.upload small {
  font-weight: 400;
  color: var(--muted);
}
.contact-form > small {
  display: block;
  color: var(--muted);
  margin-top: 15px;
}
.form-success {
  text-align: center;
  padding: 90px 0;
}
.form-success > svg {
  background: #e5f8ee;
  color: #14a15d;
  border-radius: 50%;
  padding: 15px;
  width: 70px;
  height: 70px;
}
.form-success button {
  background: none;
  border: 0;
  color: var(--blue);
  font-weight: 600;
}
.upload small {
  grid-column: 2;
}
.upload input {
  font-size: 12px;
}

/* Modern motion and shape refinement */
:root {
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
.route-transition {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(247, 249, 251, 0.94);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 0.32s ease;
}
.route-transition-out {
  opacity: 0;
  pointer-events: none;
}
.route-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(23, 109, 229, 0.55);
  animation: route-progress 0.7s var(--ease-out) forwards;
}
.route-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.loader-mark {
  height: 36px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  transform: skew(-17deg);
}
.loader-mark i {
  display: block;
  width: 9px;
  border-radius: 3px 3px 1px 1px;
  background: var(--blue);
  animation: loader-bars 0.8s ease-in-out infinite alternate;
}
.loader-mark i:nth-child(1) {
  height: 15px;
  animation-delay: -0.3s;
}
.loader-mark i:nth-child(2) {
  height: 25px;
  animation-delay: -0.15s;
}
.loader-mark i:nth-child(3) {
  height: 36px;
}
@keyframes route-progress {
  0% {
    width: 0;
  }
  45% {
    width: 68%;
  }
  100% {
    width: 92%;
  }
}
@keyframes loader-bars {
  from {
    opacity: 0.35;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.button,
.filters button,
.file-button,
.form-success button {
  border-radius: var(--radius-sm);
}
.button {
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s ease;
}
.header-solid .nav-wrap {
  transition: height 0.3s var(--ease-out);
}
.mobile-nav {
  margin: 0 12px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 18px 40px rgba(16, 30, 45, 0.12);
}
.stats {
  position: relative;
  z-index: 4;
  width: calc(100% - 12vw);
  max-width: 1280px;
  margin: -32px auto 0;
  background: #fff;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(20, 35, 50, 0.12);
}
.stats > div:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.stats > div:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.service-grid {
  gap: 16px;
  border: 0;
  background: transparent;
}
.service-card {
  border: 1px solid #d8dee3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(20, 35, 50, 0.035);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s ease;
}
.service-card:hover {
  border-color: #c2d4ea;
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(20, 35, 50, 0.1);
}
.service-card > div span {
  border-radius: 999px;
}
.image-break-card {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.industry-list > a {
  border-radius: var(--radius-sm);
  padding-left: 14px;
  padding-right: 14px;
}
.industry-list > a:hover {
  padding-left: 25px;
  padding-right: 25px;
}
.project-image {
  border-radius: var(--radius-md);
}
.project-card {
  border-radius: var(--radius-md);
}
.check-grid div {
  border-radius: var(--radius-sm);
  padding-left: 10px;
}
.values {
  gap: 16px;
}
.values article,
.pillars article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}
.process > div:last-child {
  gap: 12px;
}
.process article {
  border: 1px solid #52606b;
  border-radius: var(--radius-md);
}
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-list article,
.detail-list article:last-child {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(20, 35, 50, 0.035);
}
.detail-list button {
  padding-left: 25px;
  padding-right: 25px;
}
.industry-cards {
  gap: 18px;
  background: transparent;
}
.industry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(20, 35, 50, 0.045);
}
.filters button {
  transition: 0.25s var(--ease-out);
}
.filters button:hover {
  transform: translateY(-2px);
  border-color: #aebac4;
}
.scope {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.quality {
  margin: 0 3vw;
  border-radius: var(--radius-lg);
}
.benefits > div {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.openings > article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: 0 5px 18px rgba(20, 35, 50, 0.035);
}
.talent-form {
  border-radius: var(--radius-lg);
}
.contact-form {
  border-radius: var(--radius-lg);
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.upload {
  border-radius: var(--radius-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(23, 109, 229, 0.09);
}
.form-success > svg {
  border-radius: 50%;
}
.experience-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  background: var(--pale);
}
.experience-band h2 {
  margin-bottom: 0;
}
.experience-band > div:last-child > p {
  font-size: 1.1rem;
  max-width: 690px;
}
.company-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 22px;
}
.company-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font: 600 13px Manrope;
  box-shadow: 0 4px 12px rgba(20, 35, 50, 0.035);
}
.experience-band small,
.company-experience small {
  display: block;
  color: #808a93;
  line-height: 1.6;
  max-width: 760px;
}
.leadership {
  background: var(--pale);
}
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.leader-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(20, 35, 50, 0.045);
}
.leader-grid article > span {
  color: #9aa2aa;
  font-size: 11px;
}
.leader-grid article > div {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 48px 0 25px;
}
.leader-grid strong {
  font: 500 4rem/1 Manrope;
  color: var(--blue);
  letter-spacing: -0.06em;
}
.leader-grid small {
  color: var(--muted);
  padding-bottom: 8px;
}
.leader-grid h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.leader-grid p {
  margin-bottom: 0;
}
.company-experience {
  margin-top: 28px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.company-experience > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9faab3;
}
.company-experience > div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.company-experience b {
  font: 500 1rem Manrope;
  border: 1px solid #46525d;
  border-radius: 999px;
  padding: 10px 15px;
}
.company-experience small {
  color: #8e9aa4;
}
.portfolio-note {
  margin: 65px max(6vw, calc((100vw - 1280px) / 2)) 0;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ecf4ff;
  border: 1px solid #c8ddf8;
  border-radius: var(--radius-md);
}
.portfolio-note > svg {
  color: var(--blue);
  flex: 0 0 auto;
}
.portfolio-note strong {
  font-family: Manrope;
}
.portfolio-note p {
  margin: 5px 0 0;
  font-size: 14px;
}
.portfolio-grid-detailed {
  gap: 38px 24px;
}
.experience-project {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 35, 50, 0.05);
}
.experience-project .project-image {
  height: 330px;
}
.experience-project .project-card {
  padding: 0 10px;
}
.experience-project .project-card > span {
  color: var(--blue);
}
.project-detail {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  padding: 10px;
}
.project-detail > div:first-child {
  grid-column: 1/-1;
  padding: 18px 0;
}
.project-detail > div:not(:first-child) {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.project-detail span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.project-detail p {
  margin: 8px 0 0;
  font-size: 14px;
}
.project-detail ul {
  list-style: none;
  padding: 0;
  margin: 13px 0 0;
}
.project-detail li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0;
}
.project-detail li svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .nav-cta {
    margin-left: auto;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-top > div:last-child {
    grid-column: 2;
  }
  .inner-hero {
    grid-template-columns: 1fr;
  }
  .project-grid {
    gap: 20px;
  }
  .process > div:last-child {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .nav-wrap {
    height: 70px;
    padding: 0 5vw;
  }
  .mark {
    min-width: 0;
  }
  .mark b {
    font-size: 14px;
  }
  .mark small {
    font-size: 6px;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    min-height: 680px;
  }
  .hero-content {
    padding: 130px 6vw 110px;
  }
  .hero h1 {
    font-size: 3.4rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-foot span:first-child {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stats > div {
    padding: 25px 20px;
  }
  .stats strong {
    font-size: 1.8rem;
  }
  .section {
    padding: 80px 6vw;
  }
  .intro,
  .split,
  .why,
  .cta,
  .contact-page,
  .career-intro,
  .experience-band {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: flex-start;
    gap: 25px;
    flex-direction: column;
  }
  .service-grid,
  .project-grid,
  .industry-cards,
  .portfolio-grid,
  .leader-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 350px;
  }
  .image-break {
    height: 560px;
  }
  .image-break-card {
    left: 0;
    padding: 35px;
  }
  .industry-list > a {
    grid-template-columns: 35px 43px 1fr 22px;
  }
  .industry-list p {
    display: none;
  }
  .why {
    gap: 40px;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    padding: 70px 6vw;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-top > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .inner-hero {
    padding: 145px 6vw 70px;
  }
  .inner-hero h1 {
    font-size: 3.5rem;
  }
  .values,
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
  .process > div:last-child {
    grid-template-columns: 1fr;
  }
  .detail-list button {
    grid-template-columns: 35px 42px 1fr 22px;
  }
  .detail-list h3 {
    font-size: 1.3rem;
  }
  .detail-list article > div {
    grid-template-columns: 1fr;
    padding: 10px 20px 40px;
    gap: 15px;
  }
  .industry-card {
    padding: 35px 25px;
  }
  .portfolio .project-image,
  .experience-project .project-image {
    height: 260px;
  }
  .portfolio-note {
    margin: 40px 5vw 0;
  }
  .project-detail {
    grid-template-columns: 1fr;
  }
  .project-detail > div {
    grid-column: 1 !important;
  }
  .safety-statement {
    grid-template-columns: 1fr;
  }
  .safety-statement > svg {
    width: 90px;
    height: 90px;
  }
  .quality > div {
    grid-template-columns: 1fr;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .openings > article {
    align-items: flex-start;
    gap: 20px;
  }
  .openings article span {
    display: flex;
  }
  .talent-form {
    align-items: flex-start;
    flex-direction: column;
  }
  .file-button {
    margin: 0;
  }
  .contact-page {
    padding: 125px 5vw 60px;
  }
  .contact-copy {
    padding-top: 0;
  }
  .contact-form {
    padding: 27px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .route-transition {
    display: none;
  }
}

/* Plain HTML edition: navigation, page entrance and editable interactions */
main {
  animation: static-page-in 0.55s var(--ease-out) both;
}
@keyframes static-page-in {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}
.static-route-transition {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(247, 249, 251, 0.96);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.static-route-transition.is-active {
  opacity: 1;
  visibility: visible;
}
.static-route-transition .route-progress {
  animation: none;
  width: 0;
}
.static-route-transition.is-active .route-progress {
  animation: route-progress 0.7s var(--ease-out) forwards;
}
.static-route-transition .loader-mark i {
  animation: loader-bars 0.8s ease-in-out infinite alternate;
}
.static-mobile-nav {
  display: none;
}
.detail-list .static-detail {
  display: none;
}
.detail-list .service-accordion.active .static-detail {
  display: grid;
  animation: accordion-in 0.35s var(--ease-out) both;
}
.service-accordion.active > button > svg:last-child {
  transform: rotate(180deg);
}
.service-accordion > button > svg:last-child {
  transition: transform 0.3s var(--ease-out);
}
.check-symbol {
  color: var(--blue);
  font-weight: 700;
}
.experience-project[hidden] {
  display: none !important;
}
.filters button {
  cursor: pointer;
}
@keyframes accordion-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1050px) {
  .static-mobile-nav {
    background: #fff;
    color: var(--ink);
    padding: 10px 6vw 25px;
    flex-direction: column;
    margin: 0 12px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 18px 40px rgba(16, 30, 45, 0.12);
  }
  .static-mobile-nav.is-open {
    display: flex;
  }
  .static-mobile-nav a {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
  }
  .static-route-transition {
    display: none;
  }
}
