@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #f47a14;
  --orange-hot: #ee5122;
  --navy: #092c48;
  --navy-deep: #041e2d;
  --ink: #314252;
  --muted: #717783;
  --gray: #898989;
  --bg-soft: #fafafb;
  --bg-card: #f9f9f9;
  --white: #fff;
  --black: #000;
  --header-h: 100px;
  --container: 1600px;
  --radius: 20px;
  --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 12px;
  font-family: "Gilroy", "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(32px, 4vw, 54px); color: #fff; }
h2 { font-size: clamp(28px, 3.2vw, 44px); }
h3 { font-size: clamp(22px, 2vw, 32px); }
h5 { font-size: 20px; }

p { margin: 0 0 16px; color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 12px;
  margin-inline: auto;
}

.p-100 { padding: 100px 0; }
.text-center { text-align: center; }
.text-white, .text-white p, .text-white h2, .text-white h3 { color: #fff; }
.hidden { display: none !important; }

span.accent,
h2 span,
h3 span {
  color: var(--orange);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 1000;
  background: transparent;
  transition: 0.3s ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo img {
  width: 260px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

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

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav > li {
  position: static;
  flex-shrink: 0;
}

.desktop-nav > li:last-child {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.desktop-nav > li > a:not(.btn-pri) {
  display: block;
  height: var(--header-h);
  line-height: var(--header-h);
  padding: 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  white-space: nowrap;
}

.desktop-nav > li > a:not(.btn-pri)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 5px solid var(--orange);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.3s, transform 0.3s;
}

.desktop-nav > li:hover > a:not(.btn-pri)::after,
.desktop-nav > li > a:hover:not(.btn-pri)::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header.scrolled .desktop-nav > li > a:not(.btn-pri) { color: #000; }

.desktop-nav a.btn-pri,
.btn-pri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff !important;
  border-radius: 50px;
  padding: 0 32px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.2s;
}

.btn-pri:hover { background: #e06d14; }

.mega {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  width: 100%;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 60px 40px;
  display: none;
  z-index: 9;
}

.desktop-nav > li:hover .mega { display: block; }

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 28px;
  width: 100%;
  max-width: var(--container);
  padding: 0 12px;
  margin: 0 auto;
}

.mega-intro h4 {
  font-size: 28px;
  line-height: 38px;
  color: var(--ink);
  margin-bottom: 12px;
  padding-left: 0;
}

.mega-intro p {
  color: #898989;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 320px;
}

.mega-phone {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 8px;
}

.mega-cat:not(:first-child) { padding-top: 15px; }

.mega-cat h4,
.mega-cat h4 a {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 10px;
  padding: 0 0 0 30px;
}

.mega-cat h4 a:hover { color: var(--orange); }

.mega-links {
  list-style: none;
  margin: 0 0 0 30px;
  padding: 0 0 15px;
  border-bottom: 1px solid #d3d3d3;
}

.mega-links.no-border {
  border-bottom: 0;
  padding-bottom: 0;
}

.mega-links li a {
  display: block;
  font-size: 16px;
  color: #898989;
  font-weight: 400;
  line-height: 31px;
}

.mega-links li a:hover { color: var(--orange); }

.mega-links li a .icon {
  display: inline-block;
  width: 6px;
  height: 10px;
  margin: 0 8px 0 8px;
  background-color: #898989;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none' viewBox='0 0 6 10'%3E%3Cpath fill='%23898989' d='M6 5L1.758 9.243.344 7.828 3.172 5 .344 2.172 1.758.757 6 5z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none' viewBox='0 0 6 10'%3E%3Cpath fill='%23898989' d='M6 5L1.758 9.243.344 7.828 3.172 5 .344 2.172 1.758.757 6 5z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  vertical-align: middle;
}

.mega-links li a:hover .icon { background-color: var(--orange); }

.mega-links li p {
  color: #898989;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 270px;
  min-height: 45px;
}

.mobile-tools {
  display: none;
  align-items: center;
  gap: 8px;
  color: #314252;
}

.site-header:not(.scrolled) .mobile-tools { color: #fff; }
body.menu-open .site-header .mobile-tools { color: #314252; }

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #314252;
  margin: 5px auto;
  transition: 0.2s;
}

.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
body.menu-open .site-header .nav-toggle span { background: #314252; }

body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: #fff;
  overflow: auto;
  padding: 20px;
  z-index: 999;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid #eee;
  color: var(--ink);
  font-weight: 500;
}

/* Breadcrumb */
.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.crumbs li {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding-right: 50px;
}

.crumbs li.current { color: #f47a1f; }

.crumbs li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 6px;
  width: 17px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='8' fill='none'><path fill='%23fff' d='M16.354 4.354a.5.5 0 0 0 0-.708L13.172.464a.5.5 0 1 0-.708.708L15.293 4l-2.829 2.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h16v-1H0v1Z'/></svg>") no-repeat;
}

.crumbs a { color: inherit; }
.crumbs a:hover { color: var(--orange); }

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  padding: 124px 0 64px;
  background: #051827 center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 24, 39, 0.62) 0%, rgba(5, 24, 39, 0.28) 52%, rgba(5, 24, 39, 0.4) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(5, 24, 39, 0.5));
  pointer-events: none;
}
.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 400px);
  gap: 32px 40px;
  align-items: center;
}

.hero-copy {
  padding-right: 8px;
  padding-top: 8px;
  min-width: 0;
  max-width: 620px;
}

.hero + .p-100,
.hero + .trusted {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -18px 50px rgba(5, 24, 39, 0.18);
}
.hero + .p-100 {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 72px;
}
.hero + .trusted {
  background: var(--bg-soft);
}

.hero .crumbs {
  margin: 0 0 18px;
}

.hero .crumbs li {
  padding-right: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}

.hero .crumbs li.current { color: #f47a14; }

.hero .crumbs li:not(:last-child)::after {
  content: "›";
  right: 8px;
  top: 50%;
  transform: translateY(-54%);
  width: auto;
  height: auto;
  background: none;
  color: rgba(255, 255, 255, 0.42);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.hero .crumbs a:hover { color: #fff; }

.hero-copy h1 {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  margin: 0 0 16px;
  color: #f47a14;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.hero-copy h1::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: #f47a14;
}

.hero-copy span.kicker {
  display: block;
  margin: 0 0 16px;
  color: #fff;
  font-family: "Gilroy", "Poppins", sans-serif;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-copy:not(:has(span.kicker)) h1 {
  display: block;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-copy:not(:has(span.kicker)) h1::before { display: none; }

.hero-copy p.kicker {
  margin: 0 0 12px;
  max-width: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.hero-copy > p:not(.kicker) {
  margin: 0 0 28px;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a2a 0%, #f47a14 55%, #ee5122 100%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(238, 81, 34, 0.35);
  white-space: nowrap;
  transition: filter 180ms ease, transform 180ms ease;
}

.hero-cta:hover { filter: brightness(1.05); color: #fff; }
.hero-cta:active { transform: translateY(1px); }
.hero-cta:focus-visible,
.hero-call:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.hero-call-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 28, 48, 0.55);
  border: 1.5px solid #f47a14;
  color: #f47a14;
  transition: background 180ms ease, color 180ms ease;
}

.hero-call-icon svg { width: 20px; height: 20px; }

.hero-call strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.hero-call small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.hero-call:hover { color: #fff; }
.hero-call:hover .hero-call-icon { background: #f47a14; color: #fff; }

.border-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 250px;
  height: 50px;
  padding: 0 60px 0 30px;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.border-btn:not(:has(svg)) {
  justify-content: center;
  padding: 0 30px;
  text-align: center;
}

.border-btn:not(:has(svg)):hover {
  padding: 0 30px;
}

.border-btn svg {
  position: absolute;
  right: 20px;
  top: 10px;
  width: auto;
  height: 25px;
  animation: wobble 1s infinite;
}

.border-btn:hover { padding-left: 60px; padding-right: 30px; }
.border-btn:hover svg { right: auto; left: 18px; }
.border-btn:not(:has(svg)):hover { padding: 0 30px; }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.call-btn svg {
  width: 42px;
  height: 42px;
  animation: ring 1s infinite;
}

.call-btn:hover { color: var(--orange); }

@keyframes ring {
  0% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-5deg); }
  80%, 100% { transform: rotate(0); }
}

@keyframes wobble {
  0%, 100% { transform: none; }
  15% { transform: translateX(-20%) rotate(-5deg); }
  30% { transform: translateX(16%) rotate(3deg); }
  45% { transform: translateX(-10%) rotate(-3deg); }
}

.banner-form {
  background: #fff;
  color: #000;
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: 7px 1px 100px rgba(0, 0, 0, 0.1);
}
.hero .banner-form {
  justify-self: end;
  box-shadow: 0 22px 60px rgba(5, 24, 39, 0.28);
}

.banner-form h3 {
  color: #000;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.banner-form h3 span { color: var(--orange); }

.form-group { margin-bottom: 10px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-control,
.banner-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.banner-form textarea,
.banner-form select,
.popup .form-control,
.home-contact-form .form-control {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px 0 8px;
  border: 0;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: #000;
  resize: none;
}

.form-control::placeholder,
.banner-form input::placeholder,
.banner-form textarea::placeholder {
  color: #8b8b8b;
  opacity: 1;
}

.form-control:focus,
.form-control:focus-visible,
.banner-form input:focus,
.banner-form textarea:focus,
.banner-form select:focus {
  outline: none;
  border-bottom-color: var(--orange);
  box-shadow: none;
}

.form-control:-webkit-autofill,
.banner-form input:-webkit-autofill {
  -webkit-text-fill-color: #000;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out;
}

.banner-form textarea.form-control,
.banner-form textarea {
  min-height: 42px;
  height: auto;
  resize: none;
}

.nda {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink);
  margin: 10px 0 18px;
  cursor: pointer;
}

.nda input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.btn-submit {
  background: var(--orange-hot);
  color: #fff;
  border: 1px solid var(--orange-hot);
  border-radius: 10px;
  height: 55px;
  width: 55%;
  font-size: 18px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #fff;
  color: var(--orange-hot);
}

.form-success {
  margin-top: 12px;
  color: #198754;
  font-weight: 500;
}

.form-error { color: #dc3545; font-size: 13px; margin-top: 10px; }

/* Trusted */
.trusted {
  background: var(--bg-soft);
  padding: 50px 0;
}

.trusted h2 { margin-bottom: 28px; }

.logo-track {
  overflow: hidden;
}

.logo-track-inner {
  display: flex;
  gap: 40px;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.logo-track img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trusted hr {
  border: 0;
  border-top: 1px solid #e6e6ec;
  margin: 28px 0 18px;
}

.ratings {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.ratings h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.ratings strong { font-weight: 700; }

.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Achievements */
.awards-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.awards-row img {
  height: 130px;
  width: auto;
  object-fit: contain;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col > * { min-width: 0; }

.eyebrow {
  color: var(--orange);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: var(--bg-card);
  padding: 45px 30px;
  border-radius: var(--radius);
  height: 100%;
  transition: 0.2s;
}

.service-card:hover {
  background: var(--navy);
}

.service-card h3,
.service-card h5 {
  font-size: 22px;
  margin: 0 0 12px;
}

.service-card:hover h3,
.service-card:hover h5,
.service-card:hover p { color: #fff; }

.service-card:hover h3,
.service-card:hover h5 { color: var(--orange); }

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
}

.icon-circle svg { width: 36px; height: 36px; fill: #fff; }

.service-card p { color: var(--muted); margin: 0; }

.service-card p a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-card:hover p a { color: #fff; }

/* Case studies */
.case-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.case-card {
  background: linear-gradient(59.13deg, #001b28 3.58%, #0a405c 97.52%);
  border-radius: 30px;
  padding: 40px 25px;
  color: #fff;
  position: relative;
  min-height: 100%;
}

.case-card h3, .case-card p { color: #fff; }

.tag {
  display: inline-block;
  background: #08364e;
  color: var(--orange);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  margin: 12px 0 18px;
}

.case-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin: 16px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 16px;
}

.stats .num {
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 700;
  color: #fff;
}

.stats p { margin: 0; color: #fff; font-size: 15px; }

.quote-box {
  background: var(--ink);
  border-radius: 10px;
  padding: 24px 20px;
}

.quote-box .name {
  color: var(--orange);
  font-weight: 500;
  padding-left: 12px;
  border-left: 1px solid var(--orange);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d9;
  border: 0;
  cursor: pointer;
}

.dot.active { background: var(--orange); }

/* Built to perform */
.perform { background: #f9f9f9; }

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

.perform-card {
  background: var(--navy);
  color: #fff;
  padding: 50px 30px;
  border-radius: 10px;
  height: 100%;
  transition: 0.2s;
}

.perform-card:hover { background: #f4f4f4; }
.perform-card:hover h5 { color: var(--orange); }
.perform-card:hover p { color: var(--muted); }

.perform-card h5, .perform-card p { color: #fff; }

.seo-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Clutch */
.review-wrap { position: relative; }

.review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}

.review-head {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  font-weight: 600;
}

.review-body { padding: 28px; }

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 24px;
  margin-top: 20px;
}

.label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }

.score-card {
  background: #f7f7f7;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.score-card h2 { margin: 0; }
.stars { color: #d01e49; letter-spacing: 2px; }
.metric { display: flex; justify-content: space-between; font-size: 14px; }

.review-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.review-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* Capabilities */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cap-card {
  min-height: 420px;
  border-radius: 30px;
  padding: 40px 28px;
  background: #001b28 center / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cap-card h3, .cap-card p { color: #fff; }
.cap-card .tag { width: 100%; }

/* CTA band */
.cta-band {
  color: #fff;
}

.cta-box {
  min-height: 360px;
  border-radius: 20px;
  padding: 60px;
  background: #051827 center / cover no-repeat;
  display: flex;
  align-items: center;
}

.cta-box h2 { max-width: 720px; color: #fff; }
.cta-box p { color: #fff; max-width: 560px; }

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

.industry-card {
  min-height: 518px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.industry-front,
.industry-hover {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.industry-front {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.industry-front h3 { color: #fff; margin: 0; }

.industry-hover {
  inset: 0;
  background: var(--navy);
  opacity: 0;
  padding: 40px 25px;
  display: block;
  transition: 0.3s;
}

.industry-card:hover .industry-hover { opacity: 1; }
.industry-hover h3, .industry-hover p { color: #fff; }

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

.team-card {
  border: 1px solid #b4b4b4;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
}

.team-card img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.team-card h5:hover { color: var(--orange); }

/* Value */
.value-section {
  background: #051827 center / cover no-repeat;
  color: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.value-section h3, .value-section p { color: #fff; }

.value-section img {
  margin: 0 auto;
  max-width: 520px;
}

/* Perks */
.perks { background: #f9f9f9; }

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

.perk-card {
  background: var(--navy);
  color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  min-height: 220px;
}

.perk-card h4, .perk-card p { color: #fff; }

/* Business */
.business { background: #072a45; color: #fff; }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.biz-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 22px;
}

.biz-card h6, .biz-card p { color: #fff; margin: 0 0 8px; }
.biz-card h6 { font-size: 18px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid #eaeaea;
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.faq-q .plus {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 28px;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: #000;
  top: 50%;
  left: 50%;
}

.faq-q .plus::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.open .plus::after { display: none; }

.faq-a {
  display: none;
  padding: 0 0 20px;
}

.faq-item.open .faq-a { display: block; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.awards-mini {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}

.awards-mini img { height: 64px; width: auto; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-row img { width: 25px; height: 25px; }

.contact-form {
  background: #f8f8fb;
  padding: 32px;
  border-radius: 16px;
}

.contact-form .btn-submit { width: 100%; }

.legal-note { font-size: 13px; }
.legal-note a { color: var(--orange); text-decoration: underline; }

/* Side buttons */
.side-btns {
  position: fixed;
  right: 0;
  top: 58%;
  z-index: 40;
}

.side-btns a { display: block; }

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 100px 0 0;
}

.footer-cta { text-align: center; }
.footer-cta p { color: #fff; margin: 0; }
.footer-cta h2 { color: #fff; font-size: clamp(36px, 5vw, 54px); letter-spacing: -2px; }

.btn-border {
  display: inline-block;
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 50px;
  height: 55px;
  line-height: 53px;
  width: 220px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-border:hover { background: var(--orange); color: #fff; }

.footer-cols {
  display: grid;
  grid-template-columns: 5fr 5fr 2fr;
  gap: 24px;
  margin: 80px 0 40px;
}

.site-footer h4 { color: #fff; font-size: 24px; margin-bottom: 24px; }

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-cols ul li {
  flex: 0 0 50%;
  margin-bottom: 8px;
}

.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--orange); }

.locs { display: flex; flex-wrap: wrap; gap: 0; }
.locs li {
  padding: 0 16px;
  position: relative;
  line-height: 28px;
}

.locs li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #fff;
}

.locs li:first-child { padding-left: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0 40px;
  flex-wrap: wrap;
}

.socials { display: flex; gap: 10px; justify-content: flex-end; }
.socials svg { width: 40px; height: 40px; fill: #fff; }
.socials a:hover svg { fill: var(--orange); }

.legal { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }

/* Popup */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.popup.open { display: flex; }

.popup-card {
  background: #08131d;
  border-radius: 20px;
  overflow: auto;
  width: min(94vw, 1400px);
  max-height: 92vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.popup-left {
  background: #08131d url("assets/images/popup-bg.png") center bottom / cover no-repeat;
  color: #fff;
  padding: 40px 36px;
  position: relative;
}

.popup-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 25, 38, 0.45);
}

.popup-left > * { position: relative; z-index: 1; }

.popup-left h2 {
  color: var(--orange);
  font-size: clamp(28px, 3vw, 48px);
}

.popup-left p { color: rgba(255,255,255,0.85); }

.popup-awards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.popup-awards img { height: 64px; width: auto; }

.testimonial {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.testi-person img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.partners {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  align-items: center;
}

.partners img { height: 36px; width: auto; }

.popup-right {
  background: #fff;
  padding: 32px;
  overflow: auto;
}

.popup-close {
  float: right;
  border: 0;
  background: none;
  cursor: pointer;
}

.popup-right h3 { margin-top: 8px; }
.popup-right p { font-size: 14px; color: var(--muted); }

.select-wrap { position: relative; }

.select-wrap img {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

select.form-control {
  appearance: none;
  padding-right: 24px;
}

@media (max-width: 1800px) {
  :root { --container: 1340px; }
  .logo img { width: 210px; }
  .desktop-nav > li > a:not(.btn-pri) { font-size: 14px; padding: 0 12px; }
  .desktop-nav a.btn-pri {
    height: 50px;
    line-height: 50px;
    padding: 0 28px;
    font-size: 14px;
  }
  .mega { padding: 40px; }
  .mega-intro h4 { font-size: 20px; line-height: 1.5; }
  .mega-intro p { font-size: 13px; line-height: 1.5; }
  .mega-phone { margin: 10px auto 0; display: block; }
  .mega-cat h4,
  .mega-cat h4 a { font-size: 16px; line-height: 1.5; padding-left: 20px; }
  .mega-links { margin-left: 20px; padding-bottom: 20px; }
  .mega-links li a { font-size: 13px; line-height: 1.8; }
}

@media (max-width: 1599px) {
  :root { --container: 1240px; }
  .mega-links { padding-bottom: 12px; }
  .mega-links li p { font-size: 12px; max-width: 205px; min-height: 36px; }
}

@media (max-width: 1399px) {
  :root { --container: 1130px; }
  .hero-copy { padding-right: 12px; }
  .logo img { width: 180px; height: auto; }
  .footer-logo img { width: 220px; }
  .desktop-nav > li > a:not(.btn-pri) { padding: 0 10px; }
  .mega { padding: 25px 30px; }
  .mega-intro h4 { font-size: 18px; }
  .mega-intro p { font-size: 12px; }
  .mega-cat h4,
  .mega-cat h4 a { padding-left: 0; margin-bottom: 5px; }
  .mega-links { margin-left: 0; }
}

@media (max-width: 1199px) {
  :root { --container: 900px; }
  .hero-grid,
  .two-col,
  .case-slider,
  .perform-grid,
  .cap-grid,
  .value-grid,
  .contact-grid,
  .popup-card {
    grid-template-columns: 1fr;
  }
  .hero .banner-form {
    justify-self: center;
    margin: 0 auto;
  }

  .service-grid,
  .industry-grid,
  .team-grid,
  .biz-grid {
    grid-template-columns: 1fr 1fr;
  }

  .perk-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .desktop-nav { display: none; }
  .mobile-tools { display: flex; }
  .mega { display: none !important; }
  .cta-box { padding: 40px 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 0; max-width: none; }
  .hero-grid { align-items: start; }
}

@media (max-width: 991px) {
  :root { --container: 720px; }
}

@media (max-width: 767px) {
  .form-row { grid-template-columns: 1fr; }
  :root { --container: 540px; }
  .p-100 { padding: 60px 0; }
  .hero { padding: 112px 0 48px; min-height: 0; }
  .hero + .p-100,
  .hero + .trusted {
    margin-top: -16px;
    border-radius: 24px 24px 0 0;
  }
  .hero + .p-100 { padding-top: 48px; padding-bottom: 56px; }
  .hero-copy span.kicker,
  .hero-copy:not(:has(span.kicker)) h1 {
    font-size: clamp(32px, 9vw, 44px);
  }
  .hero-actions { gap: 14px; }
  .hero-cta { height: 50px; }
  .banner-form { margin: 0 auto; }
  .service-grid,
  .industry-grid,
  .team-grid,
  .biz-grid,
  .perk-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .industry-card { min-height: 360px; }
  .industry-hover { opacity: 1; position: relative; min-height: 360px; }
  .industry-front { display: none; }
  .side-btns { display: none; }
  .logo img { width: 160px; height: auto; }
  .footer-logo img { width: 180px; }
  .crumbs { display: none; }
  .hero .crumbs,
  .legal-hero .crumbs { display: flex; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
  :root { --container: 100%; }
}

/* Light inner pages (contact) */
.page-light .site-header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.page-light .desktop-nav > li > a:not(.btn-pri) { color: #000; }
.page-light .mobile-tools { color: #000; }
.page-light .nav-toggle span { background: #000; }
.page-light { overflow-x: hidden; }

.contact-hero {
  position: relative;
  min-height: 0;
  padding: 168px 0 40px;
  background: #fff;
  overflow: hidden;
}
.contact-hero .crumbs {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding: 0 12px;
  margin: 0;
  color: #000;
}
.contact-hero .crumbs li { color: #000; }
.contact-hero .crumbs li a { color: #000; }
.contact-hero .crumbs li.current { color: #f47a1f; }
.contact-hero .crumbs li:not(:last-child)::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='8' fill='none'><path fill='%23000' d='M16.354 4.354a.5.5 0 0 0 0-.708L13.172.464a.5.5 0 1 0-.708.708L15.293 4l-2.829 2.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h16v-1H0v1Z'/></svg>") no-repeat;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: start;
}
.quote-mark { position: relative; }
.quote-mark::after {
  content: attr(data-text);
  position: absolute;
  left: -20px;
  bottom: 8px;
  color: #e2e2e2;
  font-size: 190px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0;
  opacity: 0.25;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
.contact-copy h1 {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.15;
  letter-spacing: -2px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-copy p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}
.contact-hero .banner-form {
  position: relative;
  z-index: 2;
  margin: 0 0 0 auto;
}
.contact-offices { padding: 0 0 100px; }
.office-grid {
  display: flex;
  flex-wrap: wrap;
}
.office-card {
  flex: 0 0 33.333%;
  padding: 50px;
  text-align: center;
  border-bottom: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
}
.office-card:nth-child(3n) { border-right: 0; }
.office-card:nth-last-child(-n+3) { border-bottom: 0; }
.office-card h4 {
  color: #f47a1f;
  font-size: 35px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}
.office-card img {
  display: block;
  height: 230px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 30px;
  object-fit: contain;
}
.office-card p {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  min-height: 100px;
  margin: 0 0 20px;
  padding: 0 24px;
}
.office-card a {
  color: #f47a1f;
  font-size: 20px;
  font-weight: 500;
}
.office-card a:hover { text-decoration: underline; }

@media (max-width: 1399px) {
  .office-card { padding: 40px 24px; }
  .office-card h4 { font-size: 26px; line-height: 36px; }
  .office-card img { height: 180px; }
  .office-card p { font-size: 16px; min-height: 80px; padding: 0 8px; }
}
@media (max-width: 1199px) {
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-hero .banner-form { margin: 0 auto; }
  .quote-mark::after { font-size: 80px; }
}
@media (max-width: 767px) {
  .page-light .contact-hero .crumbs { display: none; }
  .office-card { flex: 0 0 100%; border-right: 0; padding: 30px 0; }
  .office-card:nth-last-child(-n+3) { border-bottom: 1px solid #e2e2e2; }
  .office-card:last-child { border-bottom: 0; }
  .office-card img { height: 160px; }
  .office-card p { min-height: 0; }
}

/* Homepage */
.home-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(3, 10, 18, 0.96) 0%,
      rgba(4, 14, 24, 0.88) 22%,
      rgba(5, 20, 34, 0.55) 42%,
      rgba(5, 24, 39, 0.16) 64%,
      rgba(5, 24, 39, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 10, 18, 0.42) 0%,
      transparent 26%,
      rgba(3, 10, 18, 0.28) 72%,
      rgba(3, 10, 18, 0.5) 100%
    );
}
.home-hero-copy {
  position: relative;
  z-index: 1;
  padding: 180px 12px 80px;
}
.home-hero-copy > * {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 0.95s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
.home-hero-copy > *:nth-child(1) { animation-delay: 0.08s; }
.home-hero-copy > *:nth-child(2) { animation-delay: 0.18s; }
.home-hero-copy > *:nth-child(3) { animation-delay: 0.3s; }
.home-hero-copy > *:nth-child(4) { animation-delay: 0.42s; }
.home-hero-copy > *:nth-child(5) { animation-delay: 0.56s; }
.desktop-nav > li.is-active > a:not(.btn-pri) { color: var(--orange); }
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}
.home-hero .call-btn {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50px;
  height: 50px;
  padding: 0 24px;
}
.home-hero .call-btn:hover { color: var(--orange); border-color: var(--orange); }
.home-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.offer-card {
  background: #f6f7f9;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.55s ease, border-color 0.35s ease;
}
.offer-card-product {
  background: #051827;
  color: #fff;
}
.offer-card-product h3,
.offer-card-product p { color: #fff; }
.offer-card span {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}
.offer-card ul {
  margin: 20px 0 28px;
  padding-left: 18px;
}
.offer-card li { margin-bottom: 8px; }
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(9, 44, 72, 0.12);
}
.offer-card-product:hover { border-color: rgba(244, 122, 20, 0.35); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #eceff2;
  scroll-margin-top: 110px;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.55s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(9, 44, 72, 0.1);
}
.product-card span {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}
.product-card ul { margin: 16px 0 20px; padding-left: 18px; }
.product-card a { color: var(--orange); font-weight: 600; }
@media (max-width: 767px) {
  .home-offer-grid,
  .product-grid { grid-template-columns: 1fr; }
}
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}
.home-kicker {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 16px;
}
.home-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  max-width: 22ch;
  text-wrap: balance;
}
.home-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.home-hero-awards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}
.home-hero-awards img { height: 52px; width: auto; }
.home-stats { background: #051827; color: #fff; padding: 72px 0; }
.home-stats-head h2 { color: #fff; margin-bottom: 8px; }
.home-stats-head p { color: rgba(255,255,255,0.7); }
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.home-stats-grid strong {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange);
  letter-spacing: -1px;
}
.home-stats-grid span { color: rgba(255,255,255,0.75); }
.home-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 40px;
}
.home-section-head p { max-width: 560px; margin: 0; }
.home-project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-auto-rows: minmax(270px, auto);
  gap: 20px;
  align-items: stretch;
}
.home-project {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0b1c2c;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}
.home-project:hover { transform: translateY(-6px); }
.home-project img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
}
.home-project:hover img { transform: scale(1.06); }
.home-project-copy {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.home-project-copy h3 {
  color: #fff;
  margin: 0 0 8px;
  text-wrap: balance;
}
.home-project-copy p {
  color: rgba(255,255,255,0.78);
  margin: 0 0 16px;
  flex: 1;
}
.home-project-copy span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--orange);
  font-weight: 600;
  transition: gap 0.35s ease;
}
.home-project:hover .home-project-copy span { gap: 12px; }
.home-project.is-featured {
  grid-row: span 2;
  min-height: 580px;
}
.home-project.is-featured img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.home-project.is-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 38, 0.12) 0%, rgba(8, 22, 38, 0.08) 42%, rgba(8, 22, 38, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.home-project.is-featured .home-project-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
  flex: 0 1 auto;
  padding: 28px;
  background: transparent;
}
.home-project.is-featured .home-project-copy p { margin-bottom: 18px; }
.home-svc-stage {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 340px) 1fr;
  grid-template-areas:
    "a vis b"
    "c vis d"
    "e vis f";
  gap: 20px 28px;
  align-items: stretch;
}
.home-svc-stage > a {
  background: #f6f7f9;
  padding: 28px 26px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}
.home-svc-stage > a:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: rgba(244, 122, 20, 0.25);
  box-shadow: 0 18px 40px rgba(9, 44, 72, 0.1);
}
.home-svc-stage > a span {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.home-svc-stage > a h3 { margin-bottom: 8px; }
.home-svc-stage > a p { margin: 0; }
.svc-a { grid-area: a; }
.svc-b { grid-area: b; }
.svc-c { grid-area: c; }
.svc-d { grid-area: d; }
.svc-e { grid-area: e; }
.svc-f { grid-area: f; }
.home-svc-visual {
  grid-area: vis;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.home-svc-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 260px);
  animation: phoneFloat 5.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.svc-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(244, 122, 20, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ringPulse 4.8s ease-out infinite;
}
.svc-ring.r1 { width: 220px; height: 220px; animation-delay: 0s; }
.svc-ring.r2 { width: 300px; height: 300px; animation-delay: 0.8s; }
.svc-ring.r3 { width: 380px; height: 380px; animation-delay: 1.6s; }
.svc-ring.r4 { width: 460px; height: 460px; animation-delay: 2.4s; }
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes ringPulse {
  0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  70% { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
}
.home-ai {
  position: relative;
  min-height: 0;
  padding: 88px 0;
  color: #fff;
  overflow: hidden;
  background: #051827;
  scroll-margin-top: var(--header-h);
}
.home-ai-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.home-ai-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 50%, rgba(244, 122, 20, 0.18), transparent 42%),
    linear-gradient(90deg, rgba(5, 24, 39, 0.92) 0%, rgba(5, 24, 39, 0.72) 48%, rgba(5, 24, 39, 0.55) 100%);
  pointer-events: none;
}
.home-ai-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr);
  gap: 48px 56px;
  align-items: center;
}
.home-ai-copy h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.home-ai-copy > p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
}
.home-ai-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.home-ai-tracks article {
  padding: 20px 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
}
.home-ai-tracks h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 8px;
}
.home-ai-tracks p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.home-ai-tracks a {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
}
.home-ai-tracks a:hover { text-decoration: underline; }
.home-ai-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.home-ai-stage {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 122, 20, 0.12), transparent 58%),
    rgba(4, 18, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.home-ai-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}
.ai-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ai-gridline {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}
.ai-wire {
  stroke: rgba(244, 122, 20, 0.35);
  stroke-width: 2;
}
.ai-spark {
  stroke: #f47a14;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 28 220;
  stroke-dashoffset: 248;
  opacity: 0;
}
.ai-node {
  position: absolute;
  width: 96px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.ai-core {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #314252;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 8px rgba(244, 122, 20, 0.08);
}
.ai-node strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.ai-node em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 2px;
}
.home-ai.is-live .ai-spark { opacity: 1; }
.home-ai.is-live .ai-spark.s1 { animation: aiSpark 3.2s linear infinite; }
.home-ai.is-live .ai-spark.s2 { animation: aiSpark 3.2s linear 0.7s infinite; }
.home-ai.is-live .ai-spark.s3 { animation: aiSpark 3.2s linear 1.4s infinite; }
.home-ai.is-live .ai-spark.s4 { animation: aiSpark 3.2s linear 2s infinite; }
.home-ai.is-live .ai-node.is-on .ai-core {
  background: var(--orange);
  border-color: #fff;
  box-shadow: 0 0 0 10px rgba(244, 122, 20, 0.22), 0 0 24px rgba(244, 122, 20, 0.55);
}
@keyframes aiSpark {
  to { stroke-dashoffset: -248; }
}
@media (hover: hover) and (pointer: fine) {
  .home-ai-tracks article {
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1), background 0.35s ease, border-color 0.35s ease;
  }
  .home-ai-tracks article:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(244, 122, 20, 0.35);
  }
}
.home-testi-nav { display: flex; gap: 12px; }
.home-testi-nav button {
  width: 48px;
  height: 48px;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.35s ease, background 0.35s ease;
}
.home-testi-nav button:hover {
  transform: scale(1.06);
  border-color: var(--orange);
}
.home-testi-track { position: relative; }
.home-testi-track img {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 20px;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.32, 0.72, 0, 1), transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}
.home-testi-track img.active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.home-award-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 8px;
  margin-top: 48px;
  text-align: center;
  align-items: stretch;
  justify-items: center;
}
.home-award-grid > article {
  width: 100%;
  max-width: 260px;
  min-height: 236px;
  padding: 16px 12px 8px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), background 0.35s ease;
}
.home-award-grid > article:hover {
  transform: translateY(-6px);
  background: #f6f7f9;
}
.home-award-grid .award-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 0 16px;
  flex-shrink: 0;
}
.home-award-grid img {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}
.home-award-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--navy);
  font-weight: 700;
}
.home-award-grid p {
  margin: 0;
  max-width: 190px;
  min-height: 2.8em;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}
.home-ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.home-ind-grid a {
  min-height: 280px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: inset 0 -80px 80px rgba(0,0,0,0.55);
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.55s ease;
}
.home-ind-grid a:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 -90px 90px rgba(0,0,0,0.62), 0 22px 44px rgba(9, 44, 72, 0.22);
}
.home-ind-grid h3 { color: #fff; }
.home-ind-grid p { color: rgba(255,255,255,0.85); margin: 0; }
.home-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0 48px;
}
.home-mv div {
  background: #f6f7f9;
  padding: 32px;
  border-radius: 20px;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.55s ease;
}
.home-mv div:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(9, 44, 72, 0.08);
}
.home-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
  justify-items: center;
  align-items: start;
}
.home-team article {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
}
.home-team img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  margin: 0 auto 16px;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}
.home-team article:hover img { transform: scale(1.06); }
.home-partners { padding: 72px 0 96px; }
.home-partners h2 { margin-bottom: 36px; }
.home-logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.home-logo-marquee:hover .home-logo-track { animation-play-state: paused; }
.home-logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
}
.home-logo-track img {
  height: 36px;
  width: auto;
  flex: 0 0 auto;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.home-logo-track img:hover {
  filter: none;
  transform: scale(1.06);
}
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.home-lead-sm { max-width: 720px; margin-bottom: 32px; }
.home-comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.home-comp-grid article {
  background: #f6f7f9;
  padding: 28px;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.5s ease;
}
.home-comp-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(9, 44, 72, 0.08);
}
.home-insight-grid,
.home-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.home-insight-grid a,
.home-blog-grid a { display: block; }
.home-insight-card {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.home-insight-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy);
}
.home-insight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.home-insight-card:hover h3 { color: var(--orange); }
.home-insight-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
.insight-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  margin-bottom: 16px;
  padding: 22px 20px;
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
}
.insight-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  margin: 0;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
}
.insight-cover:has(> img)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 44, 72, 0.18) 0%, rgba(9, 44, 72, 0.78) 100%);
}
.insight-cover b,
.insight-cover time {
  position: relative;
  z-index: 2;
}
.insight-cover b {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.insight-cover time {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 12ch;
}
.insight-cover.is-navy { background: linear-gradient(160deg, #092c48 0%, #163a58 58%, #f47a14 140%); }
.insight-cover.is-orange { background: linear-gradient(160deg, #c45a0c 0%, #f47a14 55%, #092c48 130%); }
.insight-cover.is-teal { background: linear-gradient(160deg, #0b3b4a 0%, #1a6a78 60%, #f47a14 140%); }
.home-insight-grid a:hover .insight-cover > img,
.blog-index-card:hover .insight-cover > img { transform: scale(1.05); }
.home-insight-grid img,
.home-blog-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
}
.home-insight-grid .insight-cover > img,
.home-blog-grid .insight-cover > img,
.blog-index-card .insight-cover > img {
  height: 100%;
  margin-bottom: 0;
}
.home-insight-grid a:hover img,
.home-blog-grid a:hover img { transform: scale(1.05); }
.home-contact { background: #051827; color: #fff; }
.home-contact h2 { color: #fff; }
.home-contact p { color: rgba(255,255,255,0.8); }
.home-offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.home-offices article {
  background: rgba(255,255,255,0.06);
  padding: 24px;
  border-radius: 16px;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), background 0.35s ease;
}
.home-offices article:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}
.home-offices h3 { color: #fff; font-size: 18px; }
.home-offices a { color: var(--orange); }
.home-contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  max-width: 560px;
}
.home-contact-form h3 { margin-bottom: 16px; }

/* Motion uses individual transforms so existing card hover effects still work. */
.reveal {
  opacity: 1;
  translate: none;
  scale: 1;
  transition: opacity 650ms cubic-bezier(.22, 1, .36, 1),
    translate 650ms cubic-bezier(.22, 1, .36, 1),
    scale 650ms cubic-bezier(.22, 1, .36, 1),
    background-color 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 240ms ease;
  transition-delay: var(--d, 0ms), var(--d, 0ms), var(--d, 0ms), 0ms, 0ms, 0ms, 0ms;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal:not(.in) { opacity: 0; translate: 0 24px; }
  .reveal-left:not(.in) { translate: -24px 0; }
  .reveal-right:not(.in) { translate: 24px 0; }
  .reveal-scale:not(.in) { translate: 0 12px; scale: .97; }
  .reveal:focus-within { opacity: 1; translate: none; scale: 1; transition: none; }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-card:not(.reveal), .product-card:not(.reveal), .office-card:not(.reveal) { transition: transform 240ms ease, background-color 200ms ease, box-shadow 240ms ease; }
  .service-card:hover, .product-card:hover, .office-card:hover { transform: translateY(-5px); }
  .btn-pri, .btn-submit, .border-btn { transition: transform 200ms ease, background-color 200ms ease; }
  .btn-pri:hover, .btn-submit:hover, .border-btn:hover { transform: translateY(-2px); }
  .btn-pri:active, .btn-submit:active, .border-btn:active { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .home-project:hover,
  .home-project:hover img { transform: none; }
  .home-ai .ai-spark { animation: none !important; opacity: 0.85; stroke-dasharray: none; stroke-dashoffset: 0; }
  .home-ai .ai-core {
    background: var(--orange);
    border-color: #fff;
  }
}
@media print {
  .reveal { opacity: 1 !important; translate: none !important; scale: 1 !important; }
  .home-ai .ai-spark { animation: none !important; opacity: 1; }
}

@media (max-width: 1199px) {
  .home-stats-grid,
  .home-award-grid,
  .home-offices { grid-template-columns: 1fr 1fr; }
  .home-project-grid,
  .home-ind-grid,
  .home-insight-grid,
  .home-blog-grid,
  .blog-index-grid,
  .home-team,
  .home-comp-grid { grid-template-columns: 1fr 1fr; }
  .home-project.is-featured {
    grid-row: auto;
    min-height: 420px;
  }
  .home-svc-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "vis vis"
      "a b"
      "c d"
      "e f";
    gap: 18px;
  }
  .home-ai-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-ai-stage { min-height: 380px; }
  .svc-ring.r1 { width: 180px; height: 180px; }
  .svc-ring.r2 { width: 250px; height: 250px; }
  .svc-ring.r3 { width: 320px; height: 320px; }
  .svc-ring.r4 { width: 390px; height: 390px; }
}
@media (max-width: 767px) {
  .home-hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 10, 18, 0.58) 0%, rgba(3, 10, 18, 0.78) 48%, rgba(3, 10, 18, 0.9) 100%),
      linear-gradient(90deg, rgba(3, 10, 18, 0.82) 0%, rgba(3, 10, 18, 0.45) 100%);
  }
  .home-hero h1 { font-size: 32px; letter-spacing: 0; max-width: none; }
  .home-ai { padding: 64px 0; }
  .home-ai-tracks { grid-template-columns: 1fr; }
  .home-ai-stage { min-height: 340px; }
  .home-section-head { flex-direction: column; align-items: flex-start; }
  .home-stats-grid,
  .home-svc-stage,
  .home-project-grid,
  .home-ind-grid,
  .home-insight-grid,
  .home-blog-grid,
  .blog-index-grid,
  .home-team,
  .home-mv,
  .home-comp-grid,
  .home-award-grid,
  .home-offices { grid-template-columns: 1fr; }
  .home-svc-visual { min-height: 340px; }
  .home-svc-visual img { width: min(100%, 210px); }
  .home-svc-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "vis"
      "a"
      "b"
      "c"
      "d"
      "e"
      "f";
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-hero-copy > *,
  .reveal,
  .reveal.in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .home-svc-visual img,
  .svc-ring,
  .home-logo-track {
    animation: none !important;
  }
  .home-testi-track img {
    transition: none !important;
  }
}

/* Respect the visitor's motion preference across legacy decorative effects too. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; translate: none !important; scale: 1 !important; }
}

/* Contain slide entrances and keep section CTAs inside narrow screens. */
.home-testi-track { overflow: clip; }
@media (max-width: 767px) {
  .cta-box { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-box .border-btn { min-width: 0; max-width: 100%; }
}
@media print {
  .reveal { transition: none !important; animation: none !important; }
}

/* Homepage contact: office directory followed by a balanced project enquiry. */
.home-contact > .container > h2 { font-size: clamp(36px, 4.2vw, 60px); line-height: 1.08; letter-spacing: -.035em; }
.home-contact > .container > p:not(.eyebrow) { max-width: 650px; }
.home-contact .home-offices { gap: 0; margin: 48px 0 64px; border-block: 1px solid #344653; }
.home-contact .home-offices article { display: flex; flex-direction: column; align-items: flex-start; padding: 30px 24px; border-radius: 0; background: transparent; border-right: 1px solid #344653; }
.home-contact .home-offices article:first-child { padding-left: 0; }
.home-contact .home-offices article:last-child { border-right: 0; }
.home-contact .home-offices img { width: 56px; height: 64px; object-fit: contain; object-position: left bottom; filter: brightness(0) invert(1); opacity: .8; margin-bottom: 22px; }
.home-contact .home-offices h3 { font-size: 18px; margin-bottom: 12px; }
.home-contact .home-offices p { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.home-contact .home-offices a { margin-top: auto; display: inline-flex; align-items: center; gap: 16px; font-weight: 600; }
.home-contact .home-offices a:hover { color: #fff; }
.home-contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.home-contact-intro { padding-top: 24px; }
.home-contact-intro h3 { color: #fff; font-size: clamp(30px, 3vw, 44px); line-height: 1.2; letter-spacing: -.03em; margin: 0 0 24px; }
.home-contact-intro h3 span { color: var(--orange); }
.home-contact-intro > p { max-width: 430px; line-height: 1.7; }
.home-contact-next { margin: 40px 0 0; }
.home-contact-next > div { padding: 0 0 24px 20px; border-left: 2px solid #4a5254; }
.home-contact-next > div:first-child { border-color: var(--orange); }
.home-contact-next > div:last-child { padding-bottom: 0; }
.home-contact-next dt { color: #fff; font-weight: 600; margin-bottom: 8px; }
.home-contact-next dd { color: #bbc6ce; margin: 0; font-size: 15px; line-height: 1.6; max-width: 390px; }
.home-contact .home-contact-form { width: 100%; max-width: none; padding: clamp(24px, 3vw, 44px); border-radius: 20px; color: #243746; box-shadow: 0 24px 60px #0003; }
.home-contact-form h3 { color: #243746; font-size: clamp(24px, 2.2vw, 30px); line-height: 1.25; margin: 0 0 12px; }
.home-contact-form .home-form-intro { color: #596873; font-size: 15px; margin-bottom: 28px; }
.home-contact-form .form-group { margin-bottom: 18px; }
.home-contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.home-contact-form .form-control { height: auto; min-height: 48px; border: 1px solid #d4dce1; border-radius: 8px; padding: 12px 14px; background: #f7f9fa; color: #243746; font-size: 15px; }
.home-contact-form .form-control::placeholder { color: #67747d; opacity: 1; }
.home-contact-form .form-control:focus { outline: 2px solid #c95c00; outline-offset: 2px; border-color: transparent; }
.home-contact-form textarea.form-control { min-height: 108px; resize: vertical; }
.home-contact-form .legal-note { color: #596873; font-size: 12px; line-height: 1.6; margin: 20px 0; }
.home-contact-form .legal-note a { color: #ad4300; text-decoration: underline; }
.home-contact-form .btn-submit { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; font-size: 16px; background: #bb450f; color: #fff; }
.home-contact-form .btn-submit:hover { background: #a43b0b; }
.home-contact a:focus-visible, .home-contact button:focus-visible { outline: 2px solid var(--orange); outline-offset: 5px; }
@media (max-width: 991px) {
  .home-contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .home-contact-intro > p, .home-contact-next dd { max-width: 600px; }
  .home-contact .home-offices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-contact .home-offices article { padding: 24px; }
  .home-contact .home-offices article:first-child { padding-left: 24px; }
  .home-contact .home-offices article:nth-child(2) { border-right: 0; }
  .home-contact .home-offices article:nth-child(-n+2) { border-bottom: 1px solid #344653; }
}
@media (max-width: 575px) {
  .home-contact .home-offices { margin: 32px 0 40px; }
  .home-contact .home-offices article, .home-contact .home-offices article:first-child { padding: 22px 12px; }
  .home-contact .home-offices h3 { font-size: 16px; }
  .home-contact .home-offices p { font-size: 13px; }
  .home-contact .home-offices a { font-size: 14px; gap: 8px; }
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 1100;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-hero {
  padding: 140px 0 24px;
  background: #fff;
}
.legal-hero h1 {
  color: var(--navy);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 12px 0 8px;
}
.legal-meta {
  color: var(--muted);
  margin: 0;
}
.legal-hero .crumbs {
  color: var(--ink);
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0 0 12px;
}
.legal-hero .crumbs li {
  color: var(--ink);
}
.legal-hero .crumbs li.current { color: var(--orange); }
.legal-hero .crumbs li:not(:last-child)::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='8' fill='none'><path fill='%23314252' d='M16.354 4.354a.5.5 0 0 0 0-.708L13.172.464a.5.5 0 1 0-.708.708L15.293 4l-2.829 2.828a.5.5 0 1 0 .708.708l3.182-3.182ZM0 4.5h16v-1H0v1Z'/></svg>") no-repeat;
}
.legal-hero .container,
.legal-doc .container {
  max-width: 860px;
}
.legal-doc {
  padding: 24px 0 100px;
}
.legal-doc h2 {
  color: var(--navy);
  font-size: 22px;
  margin: 36px 0 12px;
}
.legal-doc h3 {
  color: var(--navy);
  font-size: 17px;
  margin: 22px 0 8px;
}
.legal-doc p,
.legal-doc li {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
.legal-doc ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-doc a {
  color: #ad4300;
  text-decoration: underline;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 640px;
  margin: 0 auto;
  display: none;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #092c48;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(5, 24, 39, 0.28);
}
.cookie-bar.is-on { display: flex; }
.cookie-bar p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #e8eef2;
}
.cookie-bar a { color: #fff; text-decoration: underline; }
.cookie-bar button {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .legal-hero { padding: 112px 0 16px; }
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: left; }
}

.mega.mega-compact {
  position: absolute;
  left: 0;
  right: auto;
  top: 100%;
  width: min(320px, 80vw);
  padding: 16px 18px;
  border-radius: 12px;
}
.mega-simple {
  display: grid;
  gap: 4px;
}
.mega-simple a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.mega-simple a:hover {
  background: var(--bg-soft);
  color: var(--orange);
}
.footer-contact-block {
  text-align: center;
  margin: 0 0 40px;
  color: #c8d0d6;
}
.footer-contact-block a { color: #fff; }
.footer-contact-block img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.home-hero-sub {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  max-width: 18ch;
}
.home-caps {
  background: var(--navy);
  overflow: hidden;
  padding: 18px 0 28px;
}
.home-caps-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: caps-marquee 42s linear infinite;
}
.home-caps-track span {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
}
@keyframes caps-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.home-method h2, .home-stack h2, .home-quotes h2 {
  font-family: Gilroy, Poppins, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
}
.home-method > .container > p,
.home-stack > .container > p {
  max-width: 62ch;
  color: var(--muted);
  margin-bottom: 36px;
}
.method-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.method-row article {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 24px 20px;
}
.method-row h3 { margin: 0 0 8px; font-size: 20px; }
.method-row p { margin: 0; color: var(--muted); }
.stack-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 24px;
}
.stack-tab {
  border: 1px solid #d8dde3;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}
.stack-tab.is-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.stack-panel {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}
.stack-panel.is-on { display: flex; }
.stack-panel span {
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(9,44,72,.06);
}
.quotes-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.quote-list { display: grid; gap: 28px; }
.quote-list blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}
.quote-cat { font-weight: 700; color: var(--orange); margin: 0 0 8px; }
.quote-list footer {
  margin-top: 10px;
  font-weight: 600;
  color: var(--navy);
}
.quote-list footer span {
  display: block;
  font-weight: 400;
  color: var(--muted);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-row article {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 22px;
}
.stat-row strong { display: block; font-size: 28px; }
.stat-row span { color: #c8d0d6; }
.live-list { margin: 16px 0 0; padding-left: 18px; }
.live-list li { margin: 6px 0; }
.article-page { padding-top: 40px; }
.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6ecf2;
  font-size: 13px;
  font-weight: 600;
}
.article-share span { color: var(--muted); margin-right: 4px; }
.article-share a { color: var(--navy); text-decoration: none; }
.article-share a:hover { color: var(--orange); }
.article-figure { margin: 8px 0 28px; }
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.article-source {
  margin: -8px 0 28px !important;
  font-size: 14px !important;
  color: var(--muted) !important;
}
.article-cta { margin: 40px 0 0; }
.legal-doc.case-study-page .container { max-width: 1120px; }
.case-shell {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 40px 48px;
  align-items: start;
}
.case-nav {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}
.case-nav a {
  display: block;
  padding: 9px 0 9px 14px;
  border-left: 2px solid #e6ecf2;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}
.case-nav a:hover,
.case-nav a.is-on {
  color: var(--navy);
  border-left-color: var(--orange);
}
.case-study-page h2[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 8px;
}
.case-stats article {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 22px 20px;
}
.case-stats strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.case-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
@media (max-width: 900px) {
  .case-shell { grid-template-columns: 1fr; gap: 8px; }
  .case-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 4;
    flex-direction: row;
    gap: 4px;
    overflow-x: auto;
    background: #fff;
    padding: 4px 0 10px;
    margin-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .case-nav a {
    flex: 0 0 auto;
    border-left: 0;
    border-bottom: 2px solid #e6ecf2;
    padding: 8px 12px;
    white-space: nowrap;
  }
  .case-nav a:hover,
  .case-nav a.is-on { border-left-color: transparent; border-bottom-color: var(--orange); }
  .case-stats { grid-template-columns: 1fr; }
  .case-study-page h2[id] {
    scroll-margin-top: calc(var(--header-h) + 56px);
  }
}
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}
.blog-index-card { min-width: 0; }
.blog-index-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}
.blog-index-card h3 a { color: var(--navy); text-decoration: none; }
.blog-index-card h3 a:hover { color: var(--orange); }
.blog-index-card p { margin: 0 0 12px; color: var(--muted); }
.blog-index-more {
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}
.blog-index-more:hover { text-decoration: underline; }
.integ-group { margin-bottom: 40px; }
.integ-group h2 { margin: 0 0 6px; }
.integ-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 16px;
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
}
.integ-list li {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (prefers-reduced-motion: no-preference) {
  .scan-load-track i {
    animation: scanLoad 1.1s ease-in-out infinite;
  }
  .scan-upgrade.is-on .scan-upgrade-card {
    animation: scanPop 420ms cubic-bezier(.22, 1, .36, 1);
  }
}
@keyframes scanLoad {
  from { transform: translateX(-120%); }
  to { transform: translateX(280%); }
}
@keyframes scanPop {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: none; }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .scan-card {
    transition: transform 240ms ease, box-shadow 240ms ease;
  }
  .scan-card:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .page-scan .reveal:not(.in),
  .page-pricing .reveal:not(.in) { translate: 0 16px; }
  .page-scan .reveal,
  .page-pricing .reveal { transition-delay: 0ms; }
}
@media (prefers-reduced-motion: reduce) {
  .home-caps-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}
@media (max-width: 1024px) {
  .method-row, .stat-row, .quotes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .method-row, .stat-row, .quotes-grid { grid-template-columns: 1fr; }
}

/* 404 */
body.page-404 {
  background: #fff;
}
body.page-404 .site-footer {
  display: none;
}
.not-found {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  margin-top: var(--header-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: #fff;
  user-select: none;
}
.not-found-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  cursor: pointer;
  touch-action: none;
}
.not-found-copy {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 640px;
  pointer-events: none;
}
.not-found-action {
  pointer-events: auto;
}
.not-found-code {
  margin: 0;
  font-family: Gilroy, Poppins, sans-serif;
  font-size: clamp(4rem, 9vw, 12rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--navy);
}
.not-found h1 {
  margin: 4px 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1e293b;
  text-wrap: balance;
}
.not-found-copy > p:last-of-type {
  margin: 0 auto 28px;
  max-width: 34em;
  color: #111;
  font-size: 20px;
  line-height: 1.6;
}
.not-found-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(244, 122, 20, 0.28);
}
.not-found-home:hover {
  background: #e06d14;
  color: #fff;
}
.not-found-home:active {
  transform: translateY(1px);
}
.not-found-home:focus-visible {
  outline: 3px solid #1c6ea4;
  outline-offset: 3px;
}
@media (max-width: 600px) {
  .not-found { padding: 28px 16px; }
  .not-found-copy > p:last-of-type { font-size: 16px; }
}

