:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-soft: #f4f8fd;
  --text: #132a48;
  --text-muted: #687b97;
  --line: rgba(20, 71, 127, 0.1);
  --blue: #005aa0;
  --blue-deep: #0a5eac;
  --blue-soft: #a1d6ff;
  --orange: #ff5e1a;
  --green: #a1ce00;
  --shadow: 0 20px 60px rgba(15, 52, 94, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1296px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

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

.frame-lines {
  position: relative;
}

.frame-lines::before,
.frame-lines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
  pointer-events: none;
}

.frame-lines::before {
  left: 3%;
}

.frame-lines::after {
  right: 3%;
}

.section {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 251, 255, 0.76);
  backdrop-filter: blur(10px);
  z-index: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.brand img {
  width: 325px;
  height: auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.site-nav a.is-active {
  color: var(--blue);
}

.header-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease,
    color 200ms ease, border-color 200ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 90, 160, 0.14);
}

.btn-solid {
  background: var(--blue);
  color: #fff;
}

.btn-solid::after,
.btn-outline::after,
.btn-outline-accent::after,
.btn-light::after {
  content: "›";
  margin-left: 8px;
  font-size: 16px;
  line-height: 1;
}

.btn-outline {
  border-color: rgba(0, 90, 160, 0.44);
  background: #fff;
  color: var(--blue);
}

.btn-outline-accent {
  border-color: rgba(255, 94, 26, 0.52);
  background: #fff;
  color: var(--orange);
}

.btn-outline-accent.light {
  background: #fff;
}

.btn-light {
  background: #fff;
  color: var(--blue);
}

.btn-ghost {
  border: 1px solid rgba(19, 42, 72, 0.12);
  background: #fff;
  color: var(--text);
}

.hero {
  position: relative;
  padding-top: 0;
  padding-bottom: 84px;
  margin-top: -78px;
  overflow: hidden;
}

.hero-inner {
  position: static;
  min-height: 598px;
  display: flex;
  align-items: center;
  overflow: visible;
  padding-top: 244px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
}

.hero h1,
.section-heading h2,
.why h2,
.purpose h2,
.cta-band h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.75rem, 4vw, 3.95rem);
  line-height: 1.05;
}

.hero-line-one {
  white-space: nowrap;
}

.hero p {
  max-width: 560px;
  margin: 24px 0 28px;
  font-size: 1.15rem;
  line-height: 1.72;
  color: var(--text-muted);
}

.hero-ribbon {
  position: absolute;
  top: -78px;
  right: 3%;
  bottom: 0;
  width: min(50vw, 760px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-ribbon img {
  position: absolute;
  right: -6px;
  bottom: -2px;
  width: 112%;
  max-width: none;
  height: 100%;
  object-fit: fill;
  transform-origin: 100% 100%;
  animation: ribbonWave 14s ease-in-out infinite;
}

.quote-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quote-strip .container {
  padding: 36px 0;
}

.quote-strip p {
  margin: 0;
  max-width: 880px;
  font-size: 1.45rem;
  line-height: 1.6;
  font-weight: 500;
}

.team-hero {
  padding-top: 34px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 446px;
  box-shadow: var(--shadow);
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 17, 24, 0.52) 0%,
    rgba(13, 17, 24, 0.16) 42%,
    rgba(13, 17, 24, 0.08) 100%
  );
}

.team-card-image {
  width: 100%;
  height: 446px;
  object-fit: cover;
}

.team-card-overlay,
.team-card-footer {
  position: absolute;
  z-index: 1;
}

.team-card-overlay {
  top: 28px;
  left: 28px;
  max-width: 460px;
}

.team-card-overlay h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.team-card-footer {
  right: 28px;
  bottom: 20px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

.team-card-footer img {
  width: 126px;
}

.section-blue {
  background:
    url("../images/home/blue-gradient-bg.png") center top / cover no-repeat,
    linear-gradient(180deg, #f7fbff 0%, #d7ecff 48%, #9dccf4 100%);
}

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

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.section-heading p,
.about-copy p,
.service-card p,
.location-card p,
.timeline-step p,
.pillar-card p,
.why p,
.cta-band p {
  color: var(--text-muted);
}

.section-heading p {
  margin: 16px auto 0;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin: 58px 0 24px;
}

.metric {
  text-align: center;
  padding-top: 20px;
  position: relative;
}

.metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 112px;
  height: 2px;
  background: linear-gradient(90deg, rgba(33, 123, 255, 0), #5b74ff, rgba(33, 123, 255, 0));
  transform: translateX(-50%);
}

.metric-value {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--blue);
  font-weight: 800;
}

.metric strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
}

.metric p {
  margin: 8px 0 0;
  font-size: 0.98rem;
}

.globe-wrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.globe-wrap img {
  width: min(100%, 940px);
  filter: drop-shadow(0 30px 40px rgba(0, 78, 140, 0.14));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 430px);
  gap: 72px;
  align-items: start;
  margin-top: -26px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 800;
}

.about-copy h2,
.why h2,
.purpose h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.7rem);
  line-height: 1.1;
}

.about-copy p,
.why p,
.purpose p {
  margin: 20px 0 0;
  font-size: 1.04rem;
  line-height: 1.8;
}

.assembly-card,
.service-card,
.pillar-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 42, 72, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(36, 89, 146, 0.12);
}

.assembly-card {
  padding: 22px 22px 18px;
}

.assembly-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.assembly-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.assembly-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 18px;
}

.person {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 8px;
  align-items: center;
}

.avatar {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #1c2a3b, #56657c);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.person-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.tag-light {
  background: #f2f5fa;
  color: #8a95a6;
}

.tag-pink {
  background: #f4d4ff;
  color: #8f42c7;
}

.tag-orange {
  background: #ffd4bf;
  color: #c15d1b;
}

.tag-coral {
  background: #ffcbc2;
  color: #ca4d37;
}

.tag-rose {
  background: #ffd5ea;
  color: #b94785;
}

.tag-blue {
  background: #c8e8ff;
  color: #2970c8;
}

.assembly-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.deliver {
  background: #fff;
}

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

.service-card,
.pillar-card {
  padding: 22px;
}

.service-card img,
.pillar-card img {
  width: 38px;
  height: 38px;
}

.service-card h3,
.pillar-card h3 {
  margin: 18px 0 12px;
  font-size: 1.28rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.service-card p,
.pillar-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card a,
.pillar-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-card a::after,
.pillar-card a::after {
  content: "›";
}

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

.location-card {
  position: relative;
  min-height: 256px;
  overflow: hidden;
  border: 1px solid rgba(19, 42, 72, 0.08);
  border-radius: 8px;
  padding: 24px 24px 22px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.24) 100%);
  z-index: -1;
}

.location-card img {
  position: absolute;
  right: 20px;
  bottom: 14px;
  width: 34%;
  opacity: 0.72;
}

.location-hk::before {
  background-image: url("../images/home/location-bg-hk.png");
}

.location-ph::before {
  background-image: url("../images/home/location-bg-ph.png");
}

.location-in::before {
  background-image: url("../images/home/location-bg-in.png");
}

.location-uae::before {
  background-image: url("../images/home/location-bg-uae.png");
}

.location-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.location-card h3 {
  max-width: 340px;
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.location-card p {
  max-width: 360px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.process {
  padding-bottom: 112px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 88px;
}

.timeline-line {
  position: absolute;
  top: 138px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #4da3ef, #005aa0);
}

.timeline-step {
  position: relative;
  padding-top: 64px;
  text-align: center;
}

.step-index {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(19, 42, 72, 0.34);
  font-size: 3rem;
  font-weight: 500;
}

.step-dot {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid #cae7ff;
  transform: translateX(-50%);
}

.timeline-step h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.28;
}

.timeline-step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.why {
  background: #fff;
}

.why-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 72px;
  align-items: end;
  margin-bottom: 28px;
}

.why-top .btn {
  margin-top: 24px;
}

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

.purpose {
  padding-top: 54px;
  padding-bottom: 54px;
}

.purpose p {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.4;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 90px 0 160px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.12), transparent 28%),
    #171617;
  color: #fff;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -140px;
  width: 1080px;
  height: 420px;
  transform: translateX(50%);
  opacity: 0.16;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1.4px);
  background-size: 9px 9px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 75%);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.cta-band p {
  max-width: 680px;
  margin: 14px auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-illustration {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 0;
  width: min(100%, 760px);
  transform: translateX(-50%);
  opacity: 0.9;
  pointer-events: none;
}

.button-row.centered {
  justify-content: center;
}

.site-footer {
  background: #f7fbff;
}

.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  padding: 52px 0 32px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr 0.95fr;
  gap: 28px;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: rgba(19, 42, 72, 0.6);
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-column p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-address + .footer-address {
  margin-top: 18px;
}

.footer-address-head,
.contact-office-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-address-head img,
.contact-office-head img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-address-head strong,
.contact-office-head strong {
  color: var(--text);
  font-size: 0.95rem;
}

.footer-cta .btn + .btn {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  color: rgba(19, 42, 72, 0.56);
  font-size: 0.82rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-blue {
  color: #1976d2;
}

.text-orange {
  color: var(--orange);
}

.text-green {
  color: var(--green);
}

.text-slate {
  color: #4b6582;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 72px;
  background: linear-gradient(180deg, #fcfeff 0%, #f6fbff 100%);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 56px;
  align-items: center;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.75rem, 4.2vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.page-hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.page-hero-art {
  position: relative;
  min-height: 360px;
}

.page-hero-art img {
  width: 100%;
  height: auto;
}

.page-hero--about .page-hero-art {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.page-hero--about .page-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}

.page-hero--about .page-hero-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 390px);
  align-items: center;
  padding-top: 72px;
}

.page-hero--about .page-hero-copy {
  padding-top: 0;
}

.page-hero-copy-panel {
  padding: 26px 30px;
  border-radius: 20px;
  background: rgba(248, 251, 255, 0.76);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(15, 52, 94, 0.08);
}

.page-hero-copy-panel h1,
.page-hero-copy-panel p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-hero-copy-note {
  justify-self: end;
  align-self: center;
  max-width: 360px;
}

.page-hero-copy-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
}

.page-hero--about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 251, 255, 0.12) 0%,
    rgba(248, 251, 255, 0.08) 34%,
    rgba(248, 251, 255, 0.22) 62%,
    rgba(248, 251, 255, 0.58) 100%
  );
  pointer-events: none;
}

.page-hero--industries .page-hero-art img,
.page-hero--services .page-hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.page-hero--industries {
  overflow: hidden;
}

.page-hero--industries .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
}

.page-hero--industries .page-hero-art {
  position: absolute;
  top: -78px;
  right: 3%;
  bottom: -72px;
  width: min(40vw, 560px);
  min-height: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero--industries .page-hero-art img {
  inset: auto;
  right: -18px;
  bottom: 0;
  width: 112%;
  height: 100%;
  object-fit: fill;
  object-position: right bottom;
}

.page-hero--services {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 94, 26, 0.08), transparent 20%),
    radial-gradient(circle at 74% 26%, rgba(0, 90, 160, 0.09), transparent 24%),
    linear-gradient(180deg, #fcfeff 0%, #f5fbff 100%);
}

.page-hero--services .page-hero-inner {
  display: block;
}

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

.page-hero-art--services {
  min-height: 0;
  margin-top: 34px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.page-hero--services .page-hero-art--services img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  margin-left: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 56px rgba(15, 52, 94, 0.12));
}

.career-embed {
  padding: 34px 0 56px;
}

.career-embed-shell {
  padding: 22px;
  border: 1px solid rgba(19, 42, 72, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(161, 214, 255, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.96));
  box-shadow: var(--shadow);
}

.career-frame {
  display: block;
  width: 100%;
  min-height: calc(100vh - 190px);
  border: 0;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #fff;
}

.page-hero--contact {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 90, 160, 0.1), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(255, 94, 26, 0.1), transparent 24%),
    linear-gradient(180deg, #fcfeff 0%, #f5fbff 100%);
}

.page-hero--contact .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.contact-highlight,
.contact-card,
.contact-note {
  border: 1px solid rgba(19, 42, 72, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.contact-highlight {
  padding: 28px 30px;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-highlight-links {
  display: grid;
  gap: 12px;
}

.contact-highlight-link {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.contact-card,
.contact-note {
  padding: 28px;
}

.contact-card h3,
.contact-note h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.contact-card p,
.contact-note p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.contact-note {
  margin-top: 24px;
}

.contact-office-head {
  margin-bottom: 14px;
}

.legal-page {
  padding: 130px 0 72px;
  background: linear-gradient(180deg, #fcfeff 0%, #f5fbff 100%);
}

.legal-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(19, 42, 72, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin: 22px 0 10px;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.82;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p {
  margin-top: 12px;
}

.legal-content strong {
  color: var(--text);
}

.page-hero-panel {
  width: min(100%, 580px);
  padding: 18px;
  border: 1px solid rgba(19, 42, 72, 0.06);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 250, 255, 0.96) 100%);
  box-shadow: 0 26px 70px rgba(15, 52, 94, 0.12);
}

.page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 90, 160, 0.08) 0%, rgba(0, 90, 160, 0.14) 100%);
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 800;
}

.intro-band {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intro-band p {
  margin: 0;
  max-width: 900px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

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

.feature-card {
  padding: 22px;
  border: 1px solid rgba(19, 42, 72, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 38px;
  height: 38px;
}

.feature-card h3 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.feature-card p,
.copy-block p,
.industry-copy p,
.service-detail-copy p,
.service-list li,
.split-pair p {
  color: var(--text-muted);
}

.feature-card p,
.copy-block p,
.industry-copy p,
.service-detail-copy p,
.split-pair p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.74;
}

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

.trust-item {
  padding: 18px 18px 0;
}

.trust-item h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.split-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: center;
}

.split-pair--tight {
  align-items: start;
}

.copy-block h2,
.service-section-title,
.industry-title {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.copy-block .eyebrow + h2,
.industry-title {
  margin-top: 0;
}

.illustration-card,
.industry-visual,
.cta-banner,
.service-dark-band {
  overflow: hidden;
  border-radius: 20px;
}

.illustration-card {
  padding: 20px;
  border: 1px solid rgba(19, 42, 72, 0.08);
  background: linear-gradient(180deg, #fafdff 0%, #eef6fd 100%);
  box-shadow: var(--shadow);
}

.industry-section {
  padding: 58px 0 26px;
}

.industry-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.98rem;
  font-weight: 800;
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 470px);
  gap: 34px;
  align-items: start;
}

.industry-visual {
  padding: 16px;
  border: 1px solid rgba(19, 42, 72, 0.08);
  background: linear-gradient(180deg, #eaf5ff 0%, #d8edff 100%);
}

.industry-visual img {
  width: 100%;
  border-radius: 12px;
}

.industry-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.industry-columns h3,
.service-detail-copy h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.3;
}

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

.bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.cta-banner {
  margin-top: 26px;
  position: relative;
  min-height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: #fff;
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 42, 72, 0.34) 0%, rgba(17, 42, 72, 0.58) 100%);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cta-banner p {
  margin: 12px auto 18px;
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner--fintech::before {
  background-image: url("../images/industries/fintech-cta.png");
}

.cta-banner--tech::before {
  background-image: url("../images/industries/tech-cta.png");
}

.cta-banner--media::before {
  background-image: url("../images/industries/media-cta.png");
}

.services-overview {
  padding-top: 26px;
  background:
    linear-gradient(180deg, rgba(161, 214, 255, 0.12) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 1) 100%);
}

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

.service-teaser {
  position: relative;
  padding: 22px;
  min-height: 174px;
  border: 1px solid rgba(19, 42, 72, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.94) 100%);
  box-shadow: 0 18px 50px rgba(15, 52, 94, 0.08);
}

.service-teaser h3 {
  margin: 14px 0 8px;
  font-size: 1.06rem;
  line-height: 1.35;
}

.service-teaser p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-teaser::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(255, 94, 26, 0.9) 0%, rgba(0, 90, 160, 0.8) 100%);
  opacity: 0.9;
}

.service-detail {
  padding: 58px 0;
}

.service-detail--soft {
  background: linear-gradient(180deg, rgba(161, 214, 255, 0.08) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 500px);
  gap: 44px;
  align-items: start;
}

.service-detail-copy {
  display: grid;
  gap: 22px;
}

.service-detail-panel {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(19, 42, 72, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 248, 255, 0.96) 100%);
  box-shadow: 0 20px 56px rgba(15, 52, 94, 0.1);
}

.service-detail-panel img {
  width: 100%;
  border-radius: 14px;
}

.service-detail-panel--icon {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(0, 90, 160, 0.08), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 94, 26, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.96) 100%);
}

.service-detail-icon {
  width: 86px !important;
  height: 86px !important;
  border-radius: 0 !important;
}

.service-detail-kicker {
  max-width: 320px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.service-dark-band {
  background: linear-gradient(135deg, #0d5e9e 0%, #003f70 100%);
  color: #fff;
}

.service-dark-band .service-detail-copy p,
.service-dark-band .service-list li {
  color: rgba(255, 255, 255, 0.82);
}

.service-dark-band .service-detail-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-dark-band .service-detail-panel--icon {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.service-dark-band .service-detail-kicker {
  color: #fff;
}

.service-list li {
  padding-left: 18px;
  position: relative;
  font-size: 0.96rem;
  line-height: 1.65;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

.services-cta {
  padding-top: 20px;
}

.services-cta-card {
  padding: 34px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(8, 35, 79, 0.66) 0%, rgba(6, 24, 55, 0.88) 100%),
    url("../images/home/blue-gradient-bg.png") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.services-cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.services-cta-card p {
  max-width: 760px;
  margin: 14px auto 22px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(19, 42, 72, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.has-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ribbonWave {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scaleX(1) scaleY(1) skewY(0deg);
  }
  25% {
    transform: translate3d(-0.4%, -0.2%, 0) scaleX(1.012) scaleY(0.996)
      skewY(-0.45deg);
  }
  50% {
    transform: translate3d(0.25%, 0.15%, 0) scaleX(0.996) scaleY(1.008)
      skewY(0.35deg);
  }
  75% {
    transform: translate3d(-0.2%, -0.1%, 0) scaleX(1.008) scaleY(0.998)
      skewY(-0.25deg);
  }
}

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

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav.is-open {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(19, 42, 72, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open + .header-actions,
  .header-actions.is-open {
    position: absolute;
    top: calc(78px + 196px);
    left: 24px;
    right: 24px;
    display: grid;
    gap: 10px;
    padding: 0;
  }


  .hero-ribbon {
    top: -78px;
    right: 3%;
    bottom: 0;
    width: min(54vw, 700px);
  }

  .hero-ribbon img {
    right: -8px;
    bottom: -2px;
    width: 116%;
  }

  .about-grid,
  .page-hero-inner,
  .split-pair,
  .industry-layout,
  .service-detail-grid,
  .why-top,
  .footer-top,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .feature-grid-4,
  .trust-grid,
  .industry-columns,
  .services-grid,
  .deliver-grid,
  .pillars,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    padding-top: 88px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 60px 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .frame-lines::before,
  .frame-lines::after {
    display: none;
  }

  .hero {
    padding-top: 0;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 184px;
    padding-bottom: 180px;
  }

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

  .page-hero-copy h1,
  .copy-block h2,
  .service-section-title,
  .industry-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .page-hero--industries .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero--industries .page-hero-art {
    top: -78px;
    right: 3%;
    bottom: -60px;
    width: min(48vw, 420px);
  }

  .page-hero-copy-panel {
    padding: 18px 20px;
  }

  .page-hero--about .page-hero-inner {
    padding-top: 54px;
  }

  .hero p,
  .quote-strip p {
    font-size: 1rem;
  }

  .hero-line-one {
    white-space: normal;
  }

  .hero-ribbon {
    top: -78px;
    right: 0;
    bottom: 0;
    width: 58vw;
    min-width: 250px;
    opacity: 0.9;
  }

  .hero-ribbon img {
    right: -10px;
    bottom: -2px;
    width: 122%;
  }

  .button-row,
  .header-actions.is-open,
  .assembly-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .team-card,
  .team-card-image {
    min-height: 400px;
    height: 400px;
  }

  .team-card-overlay {
    top: 22px;
    left: 18px;
    right: 18px;
  }

  .team-card-footer {
    left: 18px;
    right: 18px;
    bottom: 18px;
    flex-direction: column;
    align-items: start;
  }

  .metrics,
  .feature-grid-4,
  .trust-grid,
  .industry-columns,
  .services-grid,
  .deliver-grid,
  .pillars,
  .location-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .page-hero-inner,
  .split-pair,
  .industry-layout,
  .service-detail-grid {
    gap: 28px;
  }

  .page-hero--industries .page-hero-art {
    top: -78px;
    right: 0;
    bottom: -36px;
    width: 56vw;
    min-width: 220px;
  }

  .page-hero-copy-note {
    max-width: none;
    margin-top: 0;
  }

  .page-hero-art {
    min-height: 220px;
  }

  .page-hero-panel,
  .services-cta-card,
  .career-embed-shell {
    padding: 18px;
  }

  .page-hero--services .page-hero-art--services {
    margin-top: 24px;
  }

  .page-hero--services .page-hero-art--services img {
    width: 100%;
    margin-left: 0;
  }

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

  .contact-highlight {
    padding: 22px 20px;
  }

  .legal-page {
    padding: 116px 0 40px;
  }

  .legal-shell {
    padding: 22px 18px;
  }

  .career-embed {
    padding: 20px 0 40px;
  }

  .career-frame {
    min-height: calc(100vh - 152px);
  }

  .globe-wrap {
    margin-top: 6px;
  }

  .about-grid {
    gap: 30px;
    margin-top: 12px;
  }

  .assembly-card h3 {
    font-size: 1.6rem;
  }

  .person {
    grid-template-columns: auto 1fr;
  }

  .person .tag {
    justify-self: start;
  }

  .location-card {
    min-height: 280px;
  }

  .location-card img {
    width: 40%;
  }

  .timeline-step {
    text-align: left;
    padding-top: 70px;
  }

  .step-index,
  .step-dot {
    left: 0;
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
}
