:root {
  --bg: #f6f7f5;
  --surface: #ffffff;
  --surface-soft: #f7f8f7;
  --text: #232c31;
  --muted: #516068;
  --line: rgba(6, 105, 140, 0.08);
  --line-soft: rgba(6, 105, 140, 0.05);
  --primary: #06698c;
  --accent: #00a673;
  --shadow-soft: 0 18px 40px rgba(10, 29, 39, 0.06);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --max-width: 1240px;
  --page-gutter: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "muli", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

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

button {
  font: inherit;
}

.site-frame {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  margin: 0 auto 36px;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  left: 50%;
  margin-left: 0;
  padding: 14px 0;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: blur(0);
  box-shadow: none;
  overflow: visible;
  transition: background 0.24s ease, box-shadow 0.24s ease, padding 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: transparent;
  z-index: -1;
  transition: background 0.24s ease, box-shadow 0.24s ease;
}

.site-header.scrolled {
  padding: 8px 0;
  background: transparent;
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.site-header.scrolled::before {
  background: var(--primary);
  box-shadow: 0 10px 28px rgba(6, 34, 51, 0.18);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark,
.brand-submark {
  display: block;
}

.brand-wordmark {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.brand-submark {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 2px;
  min-width: 0;
  justify-content: center;
  justify-self: center;
}

.site-nav a {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.header-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  justify-self: end;
}

.header-affiliation {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1;
  transition: opacity 0.18s ease, visibility 0.18s ease, max-height 0.18s ease, margin 0.18s ease;
}

.header-affiliation-label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header-affiliation-brand {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.header-affiliation-image {
  display: block;
  width: auto;
  max-width: 132px;
  height: 18px;
  object-fit: contain;
}

.site-header.scrolled .header-affiliation-image {
  filter: brightness(0) invert(1);
}

.site-header.scrolled .header-affiliation {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin: 0;
  overflow: hidden;
}

.site-header.scrolled .header-actions {
  gap: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px 3px 10px 3px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-solid {
  color: #ffffff;
  background: var(--accent);
}

.button-outline,
.button-ghost {
  color: var(--primary);
  border-color: rgba(19, 37, 50, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.button-ghost {
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffffff;
}

main {
  padding-top: 0;
}

.section {
  position: relative;
  padding-top: 84px;
  z-index: 0;
}

.section::before,
.contact-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}

.mission-section::before,
.trust-section::before,
.site-footer::before {
  background: #ffffff;
}

#capabilities.section::before,
.contact-section::before {
  background: #f7f8f6;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.05em;
}

.hero {
  width: 100vw;
  margin-top: -104px;
  margin-left: calc(50% - 50vw);
  padding: 0 0 10px;
  position: relative;
}

.hero-banner {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(8, 23, 34, 0.46) 0%, rgba(8, 23, 34, 0.12) 18%, rgba(8, 23, 34, 0) 34%),
    linear-gradient(90deg, rgba(8, 23, 34, 0.76) 0%, rgba(8, 23, 34, 0.52) 28%, rgba(8, 23, 34, 0.16) 58%, rgba(8, 23, 34, 0.08) 100%),
    url("NewLogo.png") center center / cover no-repeat;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  min-height: 532px;
  padding: 204px max(calc((100vw - var(--max-width)) / 2 + var(--page-gutter)), var(--page-gutter)) 78px;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
  color: #89df6d;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
}

.hero-copy h1 {
  max-width: 20ch;
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(1.72rem, 2.8vw, 3.05rem);
  line-height: 0.98;
}

.lead {
  max-width: 43ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 34px;
}

.hero-industry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  margin: -6px auto 0;
  padding: 0 0 0 max(calc((100vw - var(--max-width)) / 2 + var(--page-gutter)), var(--page-gutter));
}

.hero-industry-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  color: #52636c;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-industry-strip span + span {
  position: relative;
  margin-left: 18px;
  padding-left: 18px;
}

.hero-industry-strip span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(19, 37, 50, 0.14);
  transform: translateY(-50%);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-heading h2,
.contact-section h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(1.42rem, 1.75vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.capability-heading,
.trust-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.capability-heading h2,
.trust-heading h2 {
  max-width: 24ch;
}

.capability-heading {
  margin-bottom: 50px;
}

.capability-heading h2 {
  max-width: 28ch;
}

.capability-heading .section-intro {
  max-width: 58ch;
}

.service-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.service-bar-button {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(19, 37, 50, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.service-bar-button:hover,
.service-bar-button:focus-visible {
  border-color: rgba(6, 105, 140, 0.18);
  box-shadow: 0 12px 28px rgba(10, 29, 39, 0.06);
  outline: none;
}

.service-bar-button.is-active {
  border-color: rgba(6, 105, 140, 0.22);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(6, 34, 51, 0.14);
}

.service-panels {
  position: relative;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  padding: 22px;
  border: 1px solid rgba(19, 37, 50, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.service-panel[hidden] {
  display: none !important;
}

.service-panel-media {
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef3f4;
}

.service-panel#service-development .service-panel-media {
  min-height: 170px;
}

.service-panel#service-development {
  padding-top: 18px;
  padding-bottom: 18px;
}

.service-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.service-panel-content {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 8px 4px 8px 0;
}

.service-panel-content h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(1.45rem, 1.95vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-panel-summary {
  max-width: 44ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

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

.service-panel-grid h4 {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-panel-list li {
  position: relative;
  padding-left: 15px;
  color: #4f616b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 166, 115, 0.7);
  transform: translateY(-50%);
}

.section-intro {
  max-width: 41ch;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.96rem;
  line-height: 1.74;
}

.mission-section {
  padding-top: 18px;
  padding-bottom: 36px;
}

.hero-experience-badge {
  position: absolute;
  right: max(calc((100vw - var(--max-width)) / 2 + var(--page-gutter)), var(--page-gutter));
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 6px;
  min-width: 280px;
  max-width: 340px;
  padding: 18px 20px 16px;
  border-left: 3px solid rgba(137, 223, 109, 0.9);
  background: rgba(9, 24, 34, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(6, 20, 29, 0.22);
}

.hero-experience-kicker {
  color: #89df6d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-experience-badge strong {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-experience-badge span:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  line-height: 1.55;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: end;
  padding-top: 0;
}

.mission-copy {
  max-width: 760px;
  margin: 0;
  text-align: left;
  padding-top: 0;
}

.mission-copy h2 {
  max-width: 15ch;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.mission-copy .section-intro {
  max-width: 46ch;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.72;
}

.mission-proof {
  margin: 20px 0 0;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-mini-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  max-width: 760px;
}

.mission-mini-stat {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 16px 0 0;
}

.mission-mini-stat + .mission-mini-stat {
  border-left: 1px solid rgba(6, 105, 140, 0.08);
  padding-left: 18px;
}

.mission-mini-icon,
.mission-impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(6, 105, 140, 0.04);
  color: var(--primary);
}

.mission-mini-icon svg,
.mission-impact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-mini-stat strong {
  display: block;
  color: var(--primary);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.1;
}

.mission-mini-stat span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mission-actions {
  margin-top: 28px;
  justify-content: flex-start;
  gap: 12px;
}

.mission-side {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.mission-testimonial-panel {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  min-height: 280px;
  padding: 22px 18px 22px 26px;
  border-left: 2px solid rgba(6, 105, 140, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(6, 105, 140, 0.03);
}

.mission-testimonial {
  position: absolute;
  inset: 18px 18px 38px 26px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  padding-right: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.mission-testimonial.is-active {
  opacity: 1;
  transform: translateY(0);
}

.mission-testimonial-mark {
  margin: 0;
  color: var(--primary);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 0.8;
}

.mission-testimonial-quote {
  max-width: 100%;
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: -0.02em;
  text-align: left;
}

.mission-testimonial-author {
  margin: 0;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
}

.mission-testimonial-role {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.mission-testimonial-dots {
  position: absolute;
  left: 26px;
  bottom: 12px;
  display: flex;
  gap: 7px;
}

.mission-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(6, 105, 140, 0.18);
}

.mission-testimonial-dot.is-active {
  background: var(--primary);
}

.mission-results {
  margin-top: 32px;
}

.mission-impact {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.mission-impact-item {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 0;
  padding: 14px 8px 0 0;
}

.mission-impact-item strong {
  color: var(--accent);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.mission-impact-item span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.mission-impact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.trust-section {
  position: relative;
}

.trust-heading {
  max-width: 980px;
}

.trust-heading .eyebrow {
  margin-bottom: 0;
}

.trust-heading-rule {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 2px;
  background: rgba(0, 166, 115, 0.72);
}

.trust-heading h2 {
  max-width: 17ch;
  font-size: clamp(1.65rem, 2.2vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.trust-heading .section-intro {
  max-width: 56ch;
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.78;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 4.5vw, 72px);
  align-items: start;
}

.trust-copy {
  display: grid;
  gap: 40px;
}

.trust-anchor-row {
  display: grid;
  grid-template-columns: minmax(280px, 360px);
  gap: 0;
  align-items: start;
}

.trust-anchor-label {
  max-width: 12ch;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.28;
}

.trust-points {
  margin: 0;
  padding: 0 0 0 28px;
  list-style: none;
  display: grid;
  gap: 16px;
  border-left: 1px solid rgba(19, 37, 50, 0.1);
}

.trust-point-highlight {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  padding: 28px 28px 30px;
  border: 1px solid rgba(19, 37, 50, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(10, 29, 39, 0.04);
}

.trust-points li {
  position: relative;
  padding-left: 28px;
  color: #44545d;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.trust-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 166, 115, 0.62);
  font-size: 1.55rem;
  line-height: 1;
}

.trust-evidence {
  display: grid;
  gap: 22px;
}

.trust-value {
  color: #2f9d6d;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.trust-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.trust-column {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 28px 24px 0;
  border: 1px solid rgba(19, 37, 50, 0.05);
  border-left: 4px solid rgba(0, 166, 115, 0.55);
  border-radius: 0 18px 18px 0;
  background: rgba(247, 250, 248, 0.92);
  box-shadow: 0 16px 34px rgba(10, 29, 39, 0.04);
}

.trust-column-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin-left: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #2f9d6d;
  border: 1px solid rgba(0, 166, 115, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.trust-column-icon-operations::before {
  content: "⚙";
}

.trust-column-icon-sector::before {
  content: "◔";
}

.trust-column-icon-scale::before {
  content: "◎";
}

.trust-column-icon {
  color: transparent;
}

.trust-column h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.trust-column p {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 31ch;
  line-height: 1.72;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 54px;
  padding: 28px 22px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(10, 29, 39, 0.05);
}

.trust-strip-label {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #2f8f63;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.trust-badge {
  min-height: 126px;
  padding: 22px 18px 20px;
  border-right: 1px solid rgba(19, 37, 50, 0.08);
  background: transparent;
  display: grid;
  align-content: start;
  gap: 10px;
  box-shadow: none;
}

.trust-badge:last-child {
  border-right: 0;
}

.trust-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 0;
  background: transparent;
}

.trust-badge-icon svg {
  width: 100%;
  height: 52px;
}

.trust-badge-icon text {
  fill: #334851;
  font-family: "muli", sans-serif;
  font-weight: 800;
}

.trust-badge-icon-aws text {
  font-size: 28px;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.trust-badge-icon-aws path {
  fill: none;
  stroke: #f59d0c;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge-icon-sap polygon {
  fill: #1b7fcc;
}

.trust-badge-icon-sap text {
  fill: #ffffff;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.trust-badge-icon-os circle:first-child {
  fill: #f26522;
}

.trust-badge-icon-os circle:last-child {
  fill: #ffffff;
}

.trust-badge-icon-os text {
  font-size: 18px;
  font-weight: 700;
}

.trust-badge-icon-cs path {
  fill: none;
  stroke: #1ba57a;
  stroke-width: 5;
  stroke-linecap: round;
}

.trust-badge-icon-cs text,
.trust-badge-icon-iso text,
.trust-badge-icon-ms text {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.trust-badge-icon-iso circle,
.trust-badge-icon-iso path {
  fill: none;
  stroke: #2757a5;
  stroke-width: 2.2;
}

.trust-badge-icon-ms rect:nth-of-type(1) {
  fill: #f35325;
}

.trust-badge-icon-ms rect:nth-of-type(2) {
  fill: #81bc06;
}

.trust-badge-icon-ms rect:nth-of-type(3) {
  fill: #05a6f0;
}

.trust-badge-icon-ms rect:nth-of-type(4) {
  fill: #ffba08;
}

.trust-badge-title {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.trust-badge-meta {
  color: #5d6b73;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.trust-copy {
  display: grid;
  gap: 40px;
}

.trust-anchor-label,
.trust-points li,
.trust-badge-icon {
  color: #34424a;
}

.trust-value {
  color: #1d9a6d;
}

.trust-strip-label {
  color: #1d8f65;
}

.trust-badge-meta {
  color: #5a6870;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 166, 115, 0.62);
  transform: translateY(-50%);
}

.trust-column {
  align-items: start;
  border-color: rgba(19, 37, 50, 0.06);
  border-left-color: rgba(0, 166, 115, 0.5);
  background: #f8fbf9;
}

.trust-column-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  background: #ffffff;
}

.trust-column-icon svg {
  width: 40px;
  height: 40px;
  stroke: #1d9a6d;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-column h3,
.trust-column p {
  grid-column: 2;
}

.trust-heading h2 {
  max-width: 17ch;
  font-size: clamp(1.65rem, 2.2vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.trust-heading .section-intro {
  max-width: 56ch;
  font-size: 0.95rem;
  line-height: 1.78;
}

.trust-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.trust-copy {
  gap: 0;
}

.trust-anchor-row,
.trust-point-highlight,
.trust-watermark,
.trust-value,
.trust-anchor-label,
.trust-points {
  display: none;
}

.trust-evidence {
  gap: 20px;
  padding-top: 12px;
}

.trust-side-label {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-column {
  align-items: start;
  padding: 24px 26px 24px 0;
  border-color: rgba(255, 255, 255, 0.22);
  border-left-color: rgba(0, 166, 115, 0.38);
  background: rgba(248, 251, 249, 0.68);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(10, 29, 39, 0.025);
}

.trust-column-icon {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.trust-strip {
  margin-top: 76px;
  padding: 30px 24px 24px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(10, 29, 39, 0.035);
}

.trust-badge {
  border-right-color: rgba(19, 37, 50, 0.06);
}

.trust-section {
  padding-top: 104px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.trust-copy {
  justify-items: start;
}

.trust-heading {
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.trust-heading-rule {
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px 0 24px;
  border-radius: 999px;
  background: var(--accent);
}

.trust-heading h2 {
  max-width: 11.75ch;
  margin: 0;
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  line-height: 0.99;
  letter-spacing: -0.05em;
}

.trust-heading .section-intro {
  max-width: 60ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.78;
}

.trust-heading .section-intro + .section-intro {
  margin-top: 18px;
}

.trust-visual {
  position: relative;
  width: 100%;
}

.trust-visual-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 1.52 / 1;
  background: rgba(225, 236, 242, 0.7);
  box-shadow: 0 22px 48px rgba(9, 25, 34, 0.1);
}

.trust-visual-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(19, 37, 50, 0.08);
  border-bottom: 1px solid rgba(19, 37, 50, 0.08);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-stat {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px 12px;
  align-content: center;
  min-height: 104px;
  padding: 18px 18px;
  text-align: left;
}

.trust-stat + .trust-stat {
  border-left: 1px solid rgba(19, 37, 50, 0.1);
}

.trust-stat-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  border-radius: 50%;
  background: rgba(6, 105, 140, 0.05);
}

.trust-stat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-stat strong {
  color: var(--primary);
  font-size: clamp(1.55rem, 2.45vw, 2.25rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.trust-stat span {
  max-width: 16ch;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.32;
}

.trust-stat-word strong {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.04em;
}

.trust-evidence {
  display: grid;
  gap: 14px;
}

.trust-side-label {
  margin: 0;
  text-align: left;
}

.trust-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.trust-column {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 18px 18px 18px;
  border: 1px solid rgba(19, 37, 50, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
  position: relative;
}

.trust-column::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.trust-column-icon {
  display: none;
}

.trust-column h3,
.trust-column p {
  grid-column: auto;
}

.trust-column h3 {
  margin: 0;
  color: var(--text);
  max-width: 14ch;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.trust-column p {
  margin: 0;
  color: var(--muted);
  max-width: none;
  font-size: 0.88rem;
  line-height: 1.58;
}

.trust-strip {
  margin-top: 22px;
}

.faq-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.news-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.news-heading h2 {
  max-width: 16ch;
}

.news-heading .section-intro {
  max-width: 56ch;
}

.faq-heading h2 {
  max-width: 18ch;
}

.faq-heading .section-intro {
  max-width: 58ch;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(19, 37, 50, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 18px;
  color: #445159;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 20px;
  border-top: 1px solid rgba(19, 37, 50, 0.08);
}

.faq-answer p {
  margin: 16px 0 0;
  max-width: none;
  color: #5f6d75;
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.78;
}

.faq-item summary::after {
  transition: transform 0.24s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  padding: 0 18px;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-item[open] .faq-answer {
  padding: 0 18px 20px;
}

.contact-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  margin-top: 120px;
  padding: 34px 0 12px;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-copy {
  max-width: 640px;
}

.contact-note {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.8;
}

.site-footer {
  position: relative;
  margin-top: 34px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(31, 37, 43, 0.2);
  font-family: "muli", sans-serif;
}

.inner-page .site-header {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  transform: none;
  padding: 10px 0;
  background: transparent;
}

.inner-page .site-header::before {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(10, 29, 39, 0.08);
}

.inner-page .site-header.scrolled {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  transform: translateX(-50%);
  padding: 8px 0;
  background: transparent;
  backdrop-filter: blur(8px);
}

.inner-page .site-header.scrolled::before {
  background: var(--primary);
  box-shadow: 0 10px 28px rgba(6, 34, 51, 0.18);
}

.inner-page .brand-wordmark,
.inner-page .brand-submark,
.inner-page .site-nav a,
.inner-page .header-affiliation,
.inner-page .header-affiliation-label {
  color: var(--text);
  text-shadow: none;
}

.inner-page .header-affiliation-image {
  filter: none;
}

.inner-page .site-nav a:hover,
.inner-page .site-nav a.active {
  color: var(--primary);
  background: rgba(6, 105, 140, 0.08);
}

.inner-page .site-header.scrolled .brand-wordmark,
.inner-page .site-header.scrolled .brand-submark,
.inner-page .site-header.scrolled .site-nav a,
.inner-page .site-header.scrolled .header-affiliation,
.inner-page .site-header.scrolled .header-affiliation-label {
  color: rgba(255, 255, 255, 0.96);
}

.inner-page .site-header.scrolled .site-nav a:hover,
.inner-page .site-header.scrolled .site-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 72px 0 56px;
}

.page-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
}

.max-copy {
  max-width: 66ch;
}

.page-hero .lead {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--muted);
}

.callout-strip {
  margin: 0 0 28px;
  padding: 28px 34px;
  border: 1px solid rgba(6, 105, 140, 0.08);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 248, 0.9));
  box-shadow: var(--shadow-soft);
}

.callout-strip h2 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.simple-content-section {
  padding-top: 40px;
}

.simple-grid,
.stacked-sections,
.card-grid,
.tech-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

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

.simple-grid.three-up,
.card-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-card,
.content-block,
.sector-card,
.service-detail-card,
.info-card,
.role-card,
.contact-form,
.contact-side > *,
.tech-card {
  border: 1px solid rgba(6, 105, 140, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.simple-card,
.content-block,
.sector-card,
.info-card,
.role-card,
.tech-card {
  padding: 28px;
}

.simple-card h2,
.content-block h2,
.sector-card h2,
.service-detail-card h2,
.open-roles h2,
.contact-layout h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.simple-card h3,
.service-detail-card h3,
.info-card h3,
.role-card h3,
.tech-card h3,
.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.simple-card p,
.content-block p,
.sector-card p,
.service-detail-card p,
.info-card p,
.role-card p,
.contact-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.service-detail-section,
.open-roles {
  display: grid;
  gap: 28px;
  padding-top: 44px;
}

.service-detail-card {
  padding: 32px;
}

.service-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.detail-columns,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.detail-list li + li {
  margin-top: 8px;
}

.tech-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 16px;
}

.tech-card {
  display: flex;
  align-items: center;
  min-height: 120px;
}

.tech-card h3 {
  margin: 0;
}

.contact-layout {
  align-items: start;
  padding-top: 38px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: 30px;
}

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

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form .hs-form-frame {
  width: 100%;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(6, 105, 140, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.footer-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 8px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.offshoring-page {
  background:
    radial-gradient(circle at top right, rgba(0, 166, 115, 0.05), transparent 28%),
    linear-gradient(180deg, #f7f9f8 0%, #f5f6f4 100%);
}

.offshoring-page .site-frame {
  margin-bottom: 44px;
}

.offshoring-hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: end;
  padding-bottom: 70px;
}

.offshoring-hero-copy {
  display: grid;
  gap: 22px;
}

.offshoring-hero .hero-actions {
  margin-top: 6px;
}

.offshoring-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.offshoring-stat-card {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(6, 105, 140, 0.08);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 248, 0.92));
  box-shadow: var(--shadow-soft);
}

.offshoring-stat-card strong {
  color: var(--primary);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.offshoring-stat-card span {
  max-width: 18ch;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.offshoring-section {
  padding-top: 78px;
}

.offshoring-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

.offshoring-heading h2 {
  max-width: 16ch;
}

.offshoring-card-grid {
  display: grid;
  gap: 24px;
}

.offshoring-card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offshoring-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offshoring-info-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(6, 105, 140, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.offshoring-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 115, 0.22);
  box-shadow: 0 22px 44px rgba(10, 29, 39, 0.08);
}

.offshoring-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 166, 115, 0.09);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offshoring-info-card h3,
.offshoring-role-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.offshoring-info-card p,
.offshoring-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.delivery-story-section {
  padding-top: 110px;
}

.delivery-story-heading {
  max-width: 900px;
  margin-bottom: 26px;
}

.delivery-story-heading h2 {
  max-width: 12ch;
}

.delivery-story-track {
  --delivery-progress: 0%;
  position: relative;
  margin-top: 12px;
}

.delivery-story-sticky {
  position: sticky;
  top: 110px;
  height: calc(100vh - 144px);
  display: flex;
  align-items: center;
  z-index: 1;
}

.delivery-story-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.2fr) 84px minmax(320px, 0.8fr);
  gap: 42px;
  width: 100%;
  min-height: min(680px, calc(100vh - 180px));
  align-items: center;
  position: relative;
}

.delivery-visual-evolution {
  position: relative;
  min-height: 620px;
  display: grid;
  align-content: center;
}

.delivery-evolution-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.delivery-evolution-canvas {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(0, 166, 115, 0.08), transparent 26%),
    linear-gradient(160deg, rgba(6, 24, 34, 0.98), rgba(8, 39, 53, 0.98));
  overflow: hidden;
}

.delivery-evolution-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
  opacity: 0.55;
}

.delivery-discovery-cluster,
.delivery-approach-layer,
.delivery-build-layer,
.delivery-qa-layer,
.delivery-support-layer {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.delivery-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #edf7f4;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
}

.pill-objectives { top: 58px; left: 28px; }
.pill-stakeholders { top: 132px; right: 52px; }
.pill-timelines { bottom: 138px; left: 64px; }
.pill-operations { bottom: 76px; right: 96px; }

.delivery-core-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 115, 0.34), rgba(0, 166, 115, 0.08));
  border: 2px solid rgba(0, 166, 115, 0.44);
  box-shadow: 0 0 0 24px rgba(0, 166, 115, 0.06);
  transform: translate(-50%, -50%);
}

.delivery-timeline {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
}

.delivery-timeline-rail {
  position: absolute;
  top: 38px;
  bottom: 38px;
  width: 4px;
  border-radius: 999px;
  background: rgba(6, 105, 140, 0.12);
  overflow: hidden;
}

.delivery-timeline-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--delivery-progress);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 166, 115, 0.92), rgba(0, 166, 115, 0.12));
  transition: height 0.22s ease;
}

.delivery-node-list {
  position: relative;
  display: grid;
  gap: 48px;
}

.delivery-node {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(6, 105, 140, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  color: rgba(35, 44, 49, 0.58);
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.delivery-node.is-active {
  transform: scale(1.08);
  border-color: rgba(0, 166, 115, 0.38);
  background: #fff;
  color: var(--accent);
  box-shadow: 0 0 0 10px rgba(0, 166, 115, 0.08);
}

.delivery-copy-stack {
  position: relative;
  min-height: 420px;
}

.delivery-stage {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.delivery-stage.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.delivery-stage-index {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.delivery-stage h3 {
  max-width: 10ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.delivery-stage p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
}

.delivery-scroll-steps {
  position: relative;
  margin-top: calc(-1 * (100vh - 220px));
}

.delivery-scroll-step {
  height: 78vh;
}

.delivery-approach-layer,
.delivery-build-layer,
.delivery-qa-layer,
.delivery-support-layer,
.delivery-map-line,
.delivery-pill,
.delivery-approach-panel,
.delivery-approach-route,
.delivery-system-card,
.delivery-connector,
.delivery-qa-badge,
.delivery-qa-chart,
.delivery-loop-ring,
.delivery-loop-node {
  opacity: 0;
  transition: opacity 0.42s ease, transform 0.42s ease, box-shadow 0.42s ease;
}

.delivery-map-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 166, 115, 0.38), rgba(255, 255, 255, 0.14));
  transform-origin: left center;
}

.delivery-map-line-a { width: 164px; transform: translate(8px, -62px) rotate(-150deg); }
.delivery-map-line-b { width: 146px; transform: translate(14px, -18px) rotate(-24deg); }
.delivery-map-line-c { width: 142px; transform: translate(10px, 18px) rotate(28deg); }
.delivery-map-line-d { width: 172px; transform: translate(2px, 66px) rotate(144deg); }

.delivery-approach-panel {
  position: absolute;
  border: 1px solid rgba(110, 188, 219, 0.34);
  border-radius: 20px;
  background: rgba(13, 67, 93, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.delivery-approach-panel::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.panel-a { top: 76px; left: 168px; width: 210px; height: 128px; }
.panel-b { top: 118px; right: 82px; width: 150px; height: 98px; }
.panel-c { bottom: 128px; left: 126px; width: 164px; height: 104px; }
.panel-d { bottom: 82px; right: 138px; width: 192px; height: 128px; }

.delivery-approach-route {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 166, 115, 0.12), rgba(0, 166, 115, 0.48));
}

.route-a {
  top: 50%;
  left: 50%;
  width: 220px;
  height: 2px;
  transform: translate(-8px, -10px) rotate(-12deg);
}

.route-b {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 184px;
  background: linear-gradient(180deg, rgba(0, 166, 115, 0.12), rgba(0, 166, 115, 0.48));
  transform: translate(-2px, -20px);
}

.delivery-system-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 70px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5fbfa;
  font-weight: 700;
}

.system-development { top: 68px; left: 92px; }
.system-integration { top: 68px; right: 86px; }
.system-infrastructure { bottom: 112px; left: 86px; }
.system-delivery { bottom: 96px; right: 102px; }

.delivery-connector {
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 166, 115, 0.12), rgba(0, 166, 115, 0.54), rgba(255, 255, 255, 0.12));
}

.connector-a {
  top: 162px;
  left: 244px;
  width: 122px;
  height: 2px;
}

.connector-b {
  top: 162px;
  right: 244px;
  width: 122px;
  height: 2px;
}

.connector-c {
  bottom: 146px;
  left: 236px;
  width: 138px;
  height: 2px;
}

.connector-d {
  bottom: 132px;
  right: 248px;
  width: 120px;
  height: 2px;
}

.delivery-qa-badge {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 166, 115, 0.14);
  box-shadow: 0 0 0 1px rgba(0, 166, 115, 0.18);
}

.delivery-qa-badge::before,
.delivery-qa-badge::after {
  content: "";
  position: absolute;
  background: #b6f4de;
  border-radius: 999px;
}

.delivery-qa-badge::before {
  top: 28px;
  left: 14px;
  width: 10px;
  height: 3px;
  transform: rotate(42deg);
}

.delivery-qa-badge::after {
  top: 23px;
  left: 20px;
  width: 18px;
  height: 3px;
  transform: rotate(-46deg);
}

.badge-a { top: 110px; left: 50%; transform: translateX(-50%); }
.badge-b { top: 230px; left: 92px; }
.badge-c { top: 230px; right: 92px; }

.delivery-qa-chart {
  position: absolute;
  left: 88px;
  right: 88px;
  bottom: 68px;
  height: 144px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0, 166, 115, 0.14), transparent 78%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 38px);
  overflow: hidden;
}

.delivery-qa-chart::after {
  content: "";
  position: absolute;
  inset: auto 18px 22px 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 166, 115, 0.12), rgba(0, 166, 115, 0.82), rgba(139, 219, 194, 0.84));
  transform: skewX(-28deg);
}

.delivery-loop-ring {
  position: absolute;
  top: 74px;
  left: 50%;
  width: 328px;
  height: 328px;
  border: 3px solid rgba(0, 166, 115, 0.34);
  border-right-color: rgba(255, 255, 255, 0.16);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
}

.delivery-loop-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f2faf8;
  font-size: 0.9rem;
  font-weight: 700;
}

.node-a { top: 56px; left: 50%; transform: translateX(-50%); }
.node-b { top: 50%; right: 48px; transform: translateY(-50%); }
.node-c { bottom: 86px; left: 84px; }
.node-d { bottom: 86px; right: 76px; }

.delivery-story-track[data-stage="0"] .delivery-pill,
.delivery-story-track[data-stage="0"] .delivery-map-line {
  opacity: 1;
}

.delivery-story-track[data-stage="1"] .delivery-pill,
.delivery-story-track[data-stage="1"] .delivery-map-line,
.delivery-story-track[data-stage="1"] .delivery-approach-panel,
.delivery-story-track[data-stage="1"] .delivery-approach-route {
  opacity: 1;
}

.delivery-story-track[data-stage="2"] .delivery-pill,
.delivery-story-track[data-stage="2"] .delivery-map-line,
.delivery-story-track[data-stage="2"] .delivery-approach-panel,
.delivery-story-track[data-stage="2"] .delivery-approach-route,
.delivery-story-track[data-stage="2"] .delivery-system-card,
.delivery-story-track[data-stage="2"] .delivery-connector {
  opacity: 1;
}

.delivery-story-track[data-stage="3"] .delivery-pill,
.delivery-story-track[data-stage="3"] .delivery-map-line,
.delivery-story-track[data-stage="3"] .delivery-approach-panel,
.delivery-story-track[data-stage="3"] .delivery-approach-route,
.delivery-story-track[data-stage="3"] .delivery-system-card,
.delivery-story-track[data-stage="3"] .delivery-connector,
.delivery-story-track[data-stage="3"] .delivery-qa-badge,
.delivery-story-track[data-stage="3"] .delivery-qa-chart {
  opacity: 1;
}

.delivery-story-track[data-stage="4"] .delivery-pill,
.delivery-story-track[data-stage="4"] .delivery-map-line,
.delivery-story-track[data-stage="4"] .delivery-approach-panel,
.delivery-story-track[data-stage="4"] .delivery-approach-route,
.delivery-story-track[data-stage="4"] .delivery-system-card,
.delivery-story-track[data-stage="4"] .delivery-connector,
.delivery-story-track[data-stage="4"] .delivery-qa-badge,
.delivery-story-track[data-stage="4"] .delivery-qa-chart,
.delivery-story-track[data-stage="4"] .delivery-loop-ring,
.delivery-story-track[data-stage="4"] .delivery-loop-node {
  opacity: 1;
}

.delivery-conclusion {
  padding: 104px 0 8px;
  max-width: 1120px;
}

.delivery-conclusion h2 {
  max-width: 12ch;
  margin: 10px 0 18px;
  color: var(--text);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.delivery-conclusion-lead {
  max-width: 64ch;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.82;
}

.delivery-conclusion-note {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.8;
}

.delivery-conclusion-emphasis {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.delivery-conclusion-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.offshoring-compare {
  overflow: hidden;
  border: 1px solid rgba(6, 105, 140, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}

.offshoring-compare-head,
.offshoring-compare-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offshoring-compare-head {
  background: linear-gradient(135deg, rgba(6, 105, 140, 0.94), rgba(5, 87, 118, 0.96));
  color: #fff;
}

.offshoring-compare-head span,
.offshoring-compare-row span {
  padding: 18px 24px;
}

.offshoring-compare-head span {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.offshoring-compare-row {
  position: relative;
}

.offshoring-compare-row:nth-child(even) {
  background: rgba(245, 248, 247, 0.95);
}

.offshoring-compare-row span {
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
}

.offshoring-compare-row span:last-child,
.offshoring-compare-head span:last-child {
  border-left: 1px solid rgba(6, 105, 140, 0.08);
}

.offshoring-role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.offshoring-role-card {
  padding: 24px 20px;
  border: 1px solid rgba(6, 105, 140, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.offshoring-role-card h3 {
  font-size: 1.05rem;
}

.faq-list-offshoring {
  display: grid;
  gap: 12px;
}

.offshoring-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 86px;
  padding: 34px 0 8px;
  border-top: 1px solid rgba(6, 105, 140, 0.1);
}

.offshoring-cta-copy {
  max-width: 720px;
}

.offshoring-cta h2 {
  margin: 10px 0 12px;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.offshoring-cta-actions {
  flex-shrink: 0;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.footer-office h3 {
  margin-bottom: 10px;
  color: #33485a;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.footer-office p {
  margin-bottom: 0;
  color: #4f6677;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.55;
}

.footer-office a {
  color: #0a76a8;
}

.footer-meta {
  max-width: 1050px;
  margin: 0 auto;
  padding-top: 18px;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  justify-content: center;
}

.footer-social a,
.footer-bar {
  color: #4f6677;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.footer-bar a {
  color: #0a76a8;
}

@media (max-width: 1200px) {
  .site-header {
    display: grid;
    grid-template-columns: auto auto;
    width: min(calc(100% - 24px), var(--max-width));
    left: 50%;
    padding: 14px 0;
  }

  .site-nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .contact-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-offices,
  .footer-grid,
  .stacked-sections,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-layout,
  .trust-columns,
  .detail-columns,
  .contact-layout,
  .simple-grid.three-up {
    grid-template-columns: 1fr;
  }

  .trust-hero {
    grid-template-columns: 1fr;
  }

  .trust-heading h2 {
    max-width: 12.5ch;
  }

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

  .trust-anchor-row {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .offshoring-card-grid-three,
  .offshoring-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

  .delivery-story-grid {
    grid-template-columns: minmax(280px, 1fr) 72px minmax(280px, 0.9fr);
    gap: 28px;
  }

  .service-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  :root {
    --page-gutter: 20px;
  }

  .site-frame {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    width: min(calc(100% - 20px), var(--max-width));
    padding: 16px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .header-actions {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
  }

  .site-nav a,
  .header-actions .button {
    width: 100%;
  }

  .hero {
    width: 100vw;
    margin-top: -104px;
    margin-left: calc(50% - 50vw);
    padding: 0 0 8px;
  }

  .hero-banner {
    min-height: 500px;
  }

  .hero-overlay {
    min-height: 500px;
    padding: 168px 20px 78px;
  }

  .mission-section {
    padding-top: 42px;
  }

  .mission-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero {
    padding-top: 136px;
  }

  .offshoring-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 56px;
  }

  .delivery-story-sticky {
    top: 96px;
    height: auto;
    min-height: 0;
    position: relative;
  }

  .delivery-story-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
  }

  .delivery-scroll-steps {
    display: none;
  }

  .delivery-timeline {
    display: none;
  }

  .delivery-visual-evolution {
    min-height: 460px;
  }

  .delivery-evolution-canvas {
    min-height: 420px;
  }

  .delivery-copy-stack {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .delivery-stage {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0;
  }

  .delivery-stage:not(.is-active) {
    display: grid;
  }

  .mission-copy {
    max-width: none;
    padding-top: 0;
  }

  .trust-columns,
  .footer-offices,
  .footer-grid,
  .stacked-sections,
  .simple-grid,
  .simple-grid.three-up,
  .card-grid.three-up,
  .tech-grid,
  .contact-form,
  .detail-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .offshoring-stat-grid,
  .offshoring-card-grid-four,
  .offshoring-card-grid-three,
  .offshoring-role-grid,
  .offshoring-compare-head,
  .offshoring-compare-row {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mission-mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    border-top: 0;
  }

  .mission-mini-stat,
  .mission-mini-stat + .mission-mini-stat {
    border-left: 0;
    padding: 0;
  }

  .mission-testimonial-panel {
    min-height: 0;
    width: 100%;
    padding: 0 0 28px;
    border-left: 0;
    border-top: 1px solid rgba(6, 105, 140, 0.1);
    background: transparent;
    box-shadow: none;
  }

  .mission-testimonial {
    position: relative;
    inset: auto;
    padding: 26px 0 0;
  }

  .mission-testimonial-dots {
    left: 0;
  }

  .mission-impact {
    grid-template-columns: 1fr;
  }

  .offshoring-compare-head span:last-child,
  .offshoring-compare-row span:last-child {
    border-left: 0;
    border-top: 1px solid rgba(6, 105, 140, 0.08);
  }

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

  .delivery-stage h3 {
    max-width: none;
  }

  .delivery-conclusion {
    padding-top: 74px;
  }

  .trust-layout {
    gap: 28px;
  }

  .trust-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-visual-image {
    aspect-ratio: 1.45 / 1;
  }

  .trust-anchor-row,
  .trust-column {
    grid-template-columns: 1fr;
  }

  .trust-points {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(19, 37, 50, 0.1);
    padding-top: 22px;
  }

  .trust-column {
    padding: 22px;
  }

  .trust-column-icon {
    margin-left: 0;
    grid-row: auto;
  }

  .trust-column h3,
  .trust-column p {
    grid-column: auto;
  }

  .trust-stat {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px 18px;
  }

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

  .section {
    padding-top: 68px;
  }

  .contact-actions {
    flex-wrap: wrap;
  }

  .footer-bar {
    flex-direction: column;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .site-footer {
    padding: 22px 0 28px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1,
  .section-heading h2,
  .contact-section h2 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-heading h2 {
    max-width: 12ch;
  }

  .trust-visual-image {
    aspect-ratio: 1.3 / 1;
  }

  .trust-stats {
    border-radius: 22px;
  }

  .trust-stat + .trust-stat {
    border-left: 0;
    border-top: 1px solid rgba(19, 37, 50, 0.1);
  }

  .hero-banner {
    min-height: 460px;
  }

  .hero-overlay {
    min-height: 460px;
    padding: 152px 20px 72px;
  }

  .section {
    padding-top: 60px;
  }

  .page-hero {
    gap: 14px;
    padding: 124px 0 42px;
  }

  .offshoring-stat-card,
  .offshoring-info-card,
  .offshoring-role-card {
    padding: 22px;
  }

  .offshoring-stat-card strong {
    font-size: 2.2rem;
  }

  .mission-testimonial-quote {
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
    max-width: none;
  }

  .mission-mini-stats {
    grid-template-columns: 1fr;
  }

  .delivery-story-grid {
    gap: 18px;
  }

  .delivery-stage h3 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .delivery-conclusion-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-conclusion-actions .button {
    width: 100%;
  }

  .callout-strip,
  .simple-card,
  .content-block,
  .sector-card,
  .service-detail-card,
  .info-card,
  .role-card,
.contact-form,
.tech-card {
    padding: 22px;
  }
}

/* Homepage refresh */
.home-main {
  display: grid;
  gap: 0;
}

.home-main .section,
.home-metrics,
.contact-home {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.home-main .section::before,
.contact-home::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: transparent;
}

.home-main .section,
.contact-home {
  padding: 64px 0;
}

.mission-section::before,
.foundation-home::before,
.insights-home::before,
.contact-home::before {
  background: #ffffff !important;
}

#capabilities::before,
.standards-home::before,
.faq-home::before {
  background: #f3f5f2 !important;
}

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

.section-heading-wide h2 {
  max-width: 18ch;
}

.section-chip,
.service-card-kicker,
.insight-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 105, 140, 0.06);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-metrics {
  padding: 14px 0 24px;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid rgba(19, 37, 50, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(10, 29, 39, 0.06);
  overflow: hidden;
}

.metric-chip {
  display: grid;
  gap: 8px;
  padding: 28px 24px;
  border-right: 1px solid rgba(19, 37, 50, 0.08);
}

.metric-chip:last-child {
  border-right: 0;
}

.metric-value {
  color: var(--primary);
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-label {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mission-home {
  padding-top: 86px;
}

.mission-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.mission-home-copy h2,
.deliver-home-copy h2,
.foundation-home-copy h2,
.contact-home-copy h2 {
  margin: 0;
}

.mission-home-copy h2 {
  max-width: 15ch;
}

.mission-home-copy .section-intro,
.deliver-home-copy .section-intro,
.foundation-home-copy .section-intro {
  margin: 18px 0 0;
}

.mission-home-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.mission-home-aside {
  display: grid;
  gap: 18px;
}

.mission-aside-card,
.deliver-card,
.service-card-premium,
.proof-card,
.insight-card,
.contact-office-card,
.logo-pill {
  background: #ffffff;
  border: 1px solid rgba(19, 37, 50, 0.08);
  box-shadow: 0 14px 30px rgba(10, 29, 39, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mission-aside-card:hover,
.deliver-card:hover,
.service-card-premium:hover,
.proof-card:hover,
.insight-card:hover,
.logo-pill:hover,
.contact-office-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(10, 29, 39, 0.07);
  border-color: rgba(19, 37, 50, 0.12);
}

.mission-aside-card {
  padding: 26px;
  border-radius: 18px;
}

.mission-aside-card h3 {
  margin: 16px 0 0;
  max-width: 18ch;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.mission-aside-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.mission-aside-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mission-point-card {
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 37, 50, 0.08);
}

.mission-point-card strong,
.foundation-metric strong,
.foundation-pillar strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  letter-spacing: -0.04em;
}

.mission-point-card span,
.foundation-metric span,
.foundation-pillar span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.deliver-home {
  padding-top: 96px;
}

.deliver-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.deliver-home-copy h2 {
  max-width: 13ch;
}

.deliver-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.deliver-card {
  padding: 24px;
  border-radius: 16px;
}

.deliver-card h3,
.service-card-premium h3,
.proof-person strong,
.insight-card h3,
.contact-office-card h3 {
  margin: 0;
}

.deliver-card p,
.service-card-premium p,
.insight-card p,
.contact-office-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.64;
}

.service-home {
  padding-top: 110px;
  background: linear-gradient(180deg, rgba(246, 247, 245, 0), rgba(241, 244, 242, 0.86));
}

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

.service-card-premium {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 26px 24px 24px;
  border-radius: 18px;
}

.service-card-kicker {
  margin-bottom: 16px;
}

.service-card-premium p {
  min-height: 3.4em;
}

.service-feature-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.service-feature-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  font-size: 0.95rem;
}

.service-feature-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 166, 115, 0.85);
}

.foundation-home {
  padding-top: 112px;
}

.foundation-trust-intro {
  max-width: 860px;
  margin: 0;
  text-align: left;
}

.foundation-trust-intro h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.42rem, 1.75vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.foundation-trust-intro .section-intro {
  max-width: 70ch;
  margin: 18px 0 0;
  text-align: left;
}

.foundation-map-shell {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.foundation-map-visual {
  overflow: visible;
  width: 100%;
  max-width: 1040px;
  padding: 0 0 18px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.foundation-map-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  image-rendering: -webkit-optimize-contrast;
}

.standards-home {
  padding-top: 44px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.logo-pill {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 180px;
  padding: 24px 22px;
  border-radius: 16px;
  text-align: center;
}

.logo-pill-image {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  object-position: center center;
}

.logo-pill-image-aws {
  max-width: 250px;
  max-height: 84px;
}

.logo-pill-image-sap {
  max-width: 260px;
  max-height: 132px;
}

.logo-pill-image-outsystems {
  max-width: 250px;
  max-height: 96px;
}

.logo-pill-image-iasme {
  max-width: 255px;
  max-height: 86px;
}

.logo-pill-image-cyber {
  max-width: 120px;
  max-height: 108px;
}

.proof-home {
  padding-top: 102px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.proof-card {
  display: grid;
  gap: 24px;
  min-height: 100%;
  padding: 28px 26px;
  border-radius: 18px;
}

.proof-card::before {
  content: "“";
  color: rgba(6, 105, 140, 0.16);
  font-size: 3.3rem;
  line-height: 0.7;
}

.proof-quote {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.66;
}

.proof-person {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(19, 37, 50, 0.08);
}

.proof-person span {
  color: var(--muted);
  font-size: 0.9rem;
}

.insights-home {
  padding-top: 52px;
}

.articles-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.articles-feature-card,
.articles-rail-item {
  background: #ffffff;
  border: 1px solid rgba(19, 37, 50, 0.08);
  box-shadow: 0 14px 30px rgba(10, 29, 39, 0.045);
}

.articles-feature-card {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
}

.articles-feature-card h3 {
  margin: 16px 0 0;
  max-width: 12ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.articles-feature-card p {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.articles-feed-state h3 {
  margin: 16px 0 0;
  max-width: 12ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.articles-feed-state p {
  margin: 14px 0 0;
}

.articles-feature-media {
  margin-top: 28px;
  display: grid;
  place-items: center;
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 96, 126, 0.08), rgba(10, 96, 126, 0.02));
  border: 1px dashed rgba(10, 96, 126, 0.16);
  overflow: hidden;
}

.articles-feature-media-inner {
  display: grid;
  place-items: center;
  width: min(100%, 390px);
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: linear-gradient(180deg, #0d6a8a, #0c536f);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(7, 31, 43, 0.16);
}

.articles-feature-embed {
  width: 100%;
  min-height: 420px;
  border: 0;
  background: #ffffff;
}

.articles-rail {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.articles-rail-heading {
  margin: 0 0 4px;
  color: #119c92;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.articles-rail-list {
  display: grid;
  gap: 14px;
  max-height: 690px;
  overflow-y: auto;
  padding-right: 8px;
}

.articles-rail-list::-webkit-scrollbar {
  width: 10px;
}

.articles-rail-list::-webkit-scrollbar-thumb {
  background: rgba(19, 37, 50, 0.14);
  border-radius: 999px;
}

.articles-rail-list::-webkit-scrollbar-track {
  background: rgba(19, 37, 50, 0.04);
  border-radius: 999px;
}

.articles-rail-item {
  padding: 22px 20px;
  border-radius: 22px;
}

.articles-rail-item.is-active {
  border-color: rgba(6, 105, 140, 0.2);
  box-shadow: 0 18px 34px rgba(10, 29, 39, 0.08);
}

.articles-rail-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.articles-rail-item-empty {
  padding: 24px 20px;
}

.articles-rail-item h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.32;
}

.articles-rail-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.articles-feature-card.is-empty .articles-feature-media {
  display: none;
}

.faq-home {
  padding-top: 100px;
}

.faq-home-heading {
  margin-bottom: 26px;
}

.faq-home .faq-list {
  gap: 12px;
}

.faq-home .faq-item {
  border: 1px solid rgba(19, 37, 50, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

.faq-home .faq-item summary {
  padding: 20px 54px 20px 20px;
  font-size: 1rem;
  font-weight: 700;
}

.faq-home .faq-answer,
.faq-home .faq-item[open] .faq-answer {
  padding-left: 20px;
  padding-right: 20px;
}

.faq-home .faq-answer p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.contact-home {
  padding: 104px 0 62px;
}

.contact-home-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-home-copy h2 {
  max-width: 13ch;
  font-size: clamp(1.7rem, 2.25vw, 2.45rem);
}

.contact-home-note {
  max-width: 58ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.contact-home-form {
  padding: 28px;
  border: 1px solid rgba(19, 37, 50, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(10, 29, 39, 0.05);
  overflow: hidden;
}

.contact-home-form .hs-form-frame {
  width: 100%;
}

.contact-home-form img,
.contact-home-form picture,
.contact-home-form figure,
.contact-home-form [class*="image"],
.contact-home-form [class*="Image"],
.contact-home-form [class*="media"],
.contact-home-form [class*="Media"] {
  display: none !important;
}

.contact-home-form [style*="background-image"] {
  background-image: none !important;
}

.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-office-card {
  padding: 22px 22px 24px;
  border-radius: 16px;
}

.contact-office-card p {
  font-size: 0.94rem;
  line-height: 1.72;
}

.contact-office-card a {
  color: var(--primary);
}

.site-footer {
  padding-top: 26px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(180, 195, 208, 0.9);
  background: #f7f8f6;
}

.site-footer::before {
  display: none;
}

.footer-shell {
  display: grid;
  gap: 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(180, 195, 208, 0.9);
}

.footer-socials {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #0a76a8;
  border-radius: 999px;
  color: #0a76a8;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social:hover {
  background: #0a76a8;
  color: #ffffff;
}

.footer-social-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 64px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 26px;
  border-top: 0;
  border-bottom: 0;
}

.footer-office {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-office h3 {
  margin: 0 0 6px;
  color: #203546;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.footer-office p {
  margin: 0;
  color: #3d5566;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.62;
}

.footer-phone {
  margin-top: 14px;
}

.footer-office a {
  color: #0a76a8;
}

.footer-bar {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  color: #4f6677;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-bar a {
  color: #0a76a8;
}

.footer-bottom::after {
  content: "";
}

@media (max-width: 1180px) {
  .footer-offices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .footer-offices {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 22px;
  }

  .site-footer {
    padding-top: 22px;
    padding-bottom: 24px;
  }
}

@media (max-width: 1180px) {
  .metrics-band,
  .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mission-home-layout,
  .deliver-home-layout,
  .contact-home-layout {
    grid-template-columns: 1fr;
  }

  .foundation-trust-grid,
  .service-card-grid,
  .proof-grid,
  .contact-office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .articles-placeholder {
    grid-template-columns: 1fr;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-panel-media {
    min-height: 260px;
  }

  .service-panel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 820px) {
  .home-main .section,
  .contact-home {
    padding: 72px 0;
  }

  .metrics-band,
  .deliver-home-grid,
  .service-card-grid,
  .proof-grid,
  .contact-office-grid,
  .logo-wall,
  .foundation-trust-grid,
  .mission-aside-points {
    grid-template-columns: 1fr;
  }

  .metric-chip {
    border-right: 0;
    border-bottom: 1px solid rgba(19, 37, 50, 0.08);
  }

  .metric-chip:last-child {
    border-bottom: 0;
  }

  .mission-aside-card,
  .deliver-card,
  .service-card-premium,
  .proof-card,
  .logo-pill,
  .contact-office-card {
    padding: 22px;
  }

  .articles-feature-card {
    padding: 22px;
    border-radius: 22px;
  }

  .articles-feature-card h3 {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .articles-feature-media {
    min-height: 220px;
  }

  .articles-rail-list {
    max-height: none;
    padding-right: 0;
  }

  .service-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .service-bar::-webkit-scrollbar {
    display: none;
  }

  .service-bar-button {
    min-width: 176px;
    flex: 0 0 auto;
  }

  .service-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .service-panel-content h3 {
    font-size: 1.6rem;
  }

  .logo-pill-image {
    height: 40px;
  }

  .logo-pill-image-sap {
    height: 80px;
  }

  .logo-pill-image-outsystems {
    height: 56px;
  }

  .logo-pill-image-cyber {
    height: 64px;
  }

  .contact-home-actions {
    justify-content: flex-start;
  }
}

.offshoring-page .offshoring-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: stretch;
}

.offshoring-page .offshoring-hero-copy {
  gap: 24px;
}

.offshoring-page .offshoring-hero h1 {
  max-width: 11ch;
}

.offshoring-page .offshoring-hero .lead {
  max-width: 35ch;
}

.offshoring-hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offshoring-hero-points li {
  position: relative;
  padding: 14px 18px 14px 42px;
  border: 1px solid rgba(6, 105, 140, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.offshoring-hero-points li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a673, #0a76a8);
  box-shadow: 0 0 0 6px rgba(0, 166, 115, 0.12);
  transform: translateY(-50%);
}

.offshoring-page .offshoring-stat-card {
  min-height: 182px;
  padding: 26px;
  border-color: rgba(6, 105, 140, 0.09);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 248, 0.94));
  box-shadow: 0 24px 44px rgba(10, 29, 39, 0.08);
}

.offshoring-page .offshoring-heading h2 {
  max-width: 17ch;
}

.offshoring-page .offshoring-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.offshoring-page .offshoring-info-card {
  gap: 16px;
  padding: 30px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 249, 0.92));
}

.offshoring-page .offshoring-info-card p,
.offshoring-page .offshoring-role-card p,
.offshoring-page .offshoring-industry-copy p {
  color: #4d6674;
  font-size: 0.99rem;
  line-height: 1.75;
}

.offshoring-page .delivery-story-heading h2 {
  max-width: 11ch;
}

.offshoring-page .delivery-story-grid {
  grid-template-columns: minmax(360px, 1.18fr) 84px minmax(320px, 0.82fr);
  gap: 48px;
}

.offshoring-page .delivery-visual-evolution {
  min-height: 640px;
}

.offshoring-page .delivery-evolution-canvas {
  min-height: 600px;
  border: 1px solid rgba(83, 115, 131, 0.14);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(0, 166, 115, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(10, 118, 168, 0.1), transparent 24%),
    linear-gradient(160deg, #0c2230, #11394b 52%, #102e3d);
  box-shadow: 0 34px 60px rgba(8, 21, 29, 0.2);
}

.offshoring-page .delivery-wheel {
  position: absolute;
  inset: 0;
}

.offshoring-page .delivery-wheel-core,
.offshoring-page .delivery-wheel-ring,
.offshoring-page .delivery-wheel-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.offshoring-page .delivery-wheel-core {
  z-index: 3;
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(160deg, rgba(8, 44, 60, 0.98), rgba(10, 73, 97, 0.98));
  border: 1px solid rgba(173, 226, 210, 0.3);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.03), 0 20px 48px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.offshoring-page .delivery-wheel-core span {
  color: rgba(228, 245, 239, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offshoring-page .delivery-wheel-core strong {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.offshoring-page .delivery-wheel-ring {
  width: 372px;
  height: 372px;
  border: 1px solid rgba(160, 212, 230, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.offshoring-page .delivery-wheel-orbit {
  width: 470px;
  height: 470px;
  border: 1px dashed rgba(172, 220, 236, 0.18);
  opacity: 0.9;
  animation: deliveryOrbit 18s linear infinite;
}

.offshoring-page .delivery-wheel-segment {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(233, 244, 248, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.32s ease, background-color 0.32s ease, border-color 0.32s ease, color 0.32s ease, box-shadow 0.32s ease;
}

.offshoring-page .segment-discover {
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
}

.offshoring-page .segment-plan {
  top: 180px;
  right: 48px;
}

.offshoring-page .segment-deliver {
  right: 84px;
  bottom: 146px;
}

.offshoring-page .segment-optimise {
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
}

.offshoring-page .segment-scale {
  top: 180px;
  left: 48px;
}

.offshoring-page .delivery-story-track[data-stage="0"] .segment-discover,
.offshoring-page .delivery-story-track[data-stage="1"] .segment-plan,
.offshoring-page .delivery-story-track[data-stage="2"] .segment-deliver,
.offshoring-page .delivery-story-track[data-stage="3"] .segment-optimise,
.offshoring-page .delivery-story-track[data-stage="4"] .segment-scale {
  border-color: rgba(0, 166, 115, 0.72);
  background: linear-gradient(135deg, rgba(0, 166, 115, 0.98), rgba(0, 142, 116, 0.94));
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(0, 166, 115, 0.12), 0 16px 30px rgba(0, 166, 115, 0.28);
}

.offshoring-page .delivery-story-track[data-stage="0"] .segment-discover {
  transform: translateX(-50%) translateY(-4px);
}

.offshoring-page .delivery-story-track[data-stage="1"] .segment-plan,
.offshoring-page .delivery-story-track[data-stage="2"] .segment-deliver,
.offshoring-page .delivery-story-track[data-stage="4"] .segment-scale {
  transform: translateY(-4px);
}

.offshoring-page .delivery-story-track[data-stage="3"] .segment-optimise {
  transform: translateX(-50%) translateY(-4px);
}

.offshoring-page .delivery-stage h3 {
  max-width: 8ch;
}

.offshoring-page .delivery-stage p {
  max-width: 38ch;
}

.offshoring-page .delivery-conclusion {
  max-width: 900px;
  margin: 42px auto 0;
  text-align: center;
}

.offshoring-page .delivery-conclusion h2,
.offshoring-page .offshoring-cta h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.offshoring-page .delivery-conclusion-lead {
  max-width: 62ch;
  margin-inline: auto;
}

.offshoring-capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.offshoring-page .offshoring-role-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(6, 105, 140, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.offshoring-page .offshoring-role-card h3 {
  font-size: 1.18rem;
}

.offshoring-industry-copy {
  display: grid;
  gap: 18px;
  max-width: 840px;
}

.offshoring-page .offshoring-cta {
  margin-top: 78px;
}

@keyframes deliveryOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .offshoring-hero-points,
  .offshoring-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offshoring-page .delivery-evolution-canvas {
    min-height: 560px;
  }

  .offshoring-page .delivery-wheel-ring {
    width: 336px;
    height: 336px;
  }

  .offshoring-page .delivery-wheel-orbit {
    width: 420px;
    height: 420px;
  }
}

@media (max-width: 900px) {
  .offshoring-page .offshoring-hero,
  .offshoring-page .delivery-story-grid {
    grid-template-columns: 1fr;
  }

  .offshoring-hero-points,
  .offshoring-capability-grid {
    grid-template-columns: 1fr;
  }

  .offshoring-page .delivery-story-sticky {
    position: relative;
    top: auto;
    height: auto;
  }

  .offshoring-page .delivery-visual-evolution {
    min-height: 520px;
  }

  .offshoring-page .delivery-evolution-canvas {
    min-height: 500px;
  }

  .offshoring-page .delivery-wheel-core {
    width: 146px;
    height: 146px;
  }

  .offshoring-page .delivery-wheel-core strong {
    font-size: 1.7rem;
  }

  .offshoring-page .delivery-wheel-ring {
    width: 300px;
    height: 300px;
  }

  .offshoring-page .delivery-wheel-orbit {
    width: 370px;
    height: 370px;
  }

  .offshoring-page .segment-plan,
  .offshoring-page .segment-scale {
    top: 166px;
  }

  .offshoring-page .segment-plan {
    right: 14px;
  }

  .offshoring-page .segment-scale {
    left: 14px;
  }

  .offshoring-page .segment-deliver {
    right: 42px;
    bottom: 128px;
  }

  .offshoring-page .segment-optimise {
    bottom: 74px;
  }
}

.offshoring-page {
  background: #ffffff;
}

.offshore-main {
  display: grid;
  gap: 0;
}

.offshore-main .section {
  padding: 82px 0 0;
}

.offshore-section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.offshore-section-heading h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(1.85rem, 2.5vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.offshore-section-heading .section-intro {
  max-width: 58ch;
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.72;
}

.offshore-hero {
  display: block;
  padding: 18px 0 8px;
}

.offshore-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.offshore-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.15rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.offshore-hero-copy .lead {
  max-width: 36ch;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

.offshore-hero-support {
  max-width: 44ch;
  margin: 0;
  color: #4f6677;
  font-size: 0.94rem;
  line-height: 1.68;
}

.offshore-challenge-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.9fr);
  gap: clamp(26px, 4vw, 80px);
  align-items: start;
  padding: 34px 0 10px;
}

.offshore-challenge-shell h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.95rem, 2.7vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.offshore-challenge-copy {
  display: grid;
  gap: 20px;
  padding-top: 12px;
}

.offshore-challenge-copy p,
.offshore-experience-copy p,
.offshore-contact-copy p {
  margin: 0;
  color: #4f6677;
  font-size: 0.97rem;
  line-height: 1.72;
}

.offshore-feature-list {
  display: grid;
  gap: 14px;
}

.offshore-feature-block {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 20px 32px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(19, 37, 50, 0.08);
}

.offshore-feature-block:last-child {
  border-bottom: 1px solid rgba(19, 37, 50, 0.08);
}

.offshore-feature-index {
  color: rgba(19, 37, 50, 0.34);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offshore-feature-block h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.offshore-feature-block p {
  margin: 0;
  color: #4f6677;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.offshore-approach-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 28px 0 0;
  border-top: 1px solid rgba(19, 37, 50, 0.1);
}

.offshore-approach-index {
  color: rgba(19, 37, 50, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offshore-approach-card h3 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.offshore-approach-card p {
  margin: 0;
  color: #4f6677;
  font-size: 0.95rem;
  line-height: 1.72;
}

.offshore-services .offshore-section-heading h2 {
  max-width: 12ch;
}

.offshore-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
}

.offshore-service-item {
  padding: 18px 0;
  border-top: 1px solid rgba(19, 37, 50, 0.08);
}

.offshore-service-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.offshore-service-item p {
  margin: 0;
  color: #4f6677;
  font-size: 0.97rem;
  line-height: 1.72;
}

.offshore-experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.offshore-experience-shell h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(1.95rem, 2.7vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.offshore-experience-copy {
  display: grid;
  gap: 20px;
  padding-top: 10px;
}

.offshore-map .offshore-section-heading {
  max-width: 740px;
}

.offshore-map-shell {
  overflow: hidden;
  border-radius: 24px;
  background: #f8f9f7;
  box-shadow: 0 14px 28px rgba(8, 21, 29, 0.04);
}

.offshore-map-shell img {
  display: block;
  width: 100%;
  height: auto;
}

.offshore-faq .offshore-section-heading h2 {
  max-width: 11ch;
}

.offshore-contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding-bottom: 28px;
}

.offshore-contact-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(1.95rem, 2.7vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.offshore-contact-copy p {
  max-width: 34ch;
  margin-top: 18px;
}

.offshore-contact-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.offshore-contact-fields span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(19, 37, 50, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #315063;
  font-size: 0.88rem;
  font-weight: 600;
}

.offshore-contact-form {
  padding: 28px;
  border: 1px solid rgba(19, 37, 50, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(8, 21, 29, 0.03);
}

.offshore-contact-form .hs-form-frame {
  width: 100%;
}

.offshoring-page .footer-bar {
  gap: 4px;
}

.offshoring-page .footer-bar span {
  display: block;
}

@media (max-width: 1180px) {
  .offshore-hero,
  .offshore-challenge-shell,
  .offshore-experience-shell,
  .offshore-contact {
    grid-template-columns: 1fr;
  }

  .offshore-feature-block {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .offshore-feature-block p {
    grid-column: 2;
  }

  .offshore-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 900px) {
  .offshore-main .section {
    padding-top: 84px;
  }

  .offshore-hero {
    padding-top: 18px;
  }

  .hero-service-cluster,
  .offshore-service-grid,
  .offshore-approach-grid {
    grid-template-columns: 1fr;
  }

  .offshore-section-heading h2,
  .offshore-challenge-shell h2,
  .offshore-experience-shell h2,
  .offshore-contact-copy h2 {
    max-width: none;
  }

  .offshore-feature-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offshore-feature-block p {
    grid-column: auto;
  }

  .offshore-contact-form {
    padding: 22px;
  }
}
