:root {
  --ink: #111323;
  --navy: #1b1e3b;
  --navy-soft: #292d53;
  --text: #4f5262;
  --muted: #777b8b;
  --line: rgba(22, 25, 48, 0.1);
  --surface: #ffffff;
  --surface-soft: #f3f4f8;
  --blue: #5d7cff;
  --blue-soft: #dfe6ff;
  --green: #37ba88;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 24px 80px rgba(26, 30, 58, 0.1);
  --shadow-card: 0 18px 55px rgba(28, 32, 62, 0.08);
  --container: min(1200px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #f7f8fb;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 10px;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #9b7cff);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(1240px, calc(100% - 28px));
  transform: translateX(-50%);
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  min-height: 70px;
  padding: 0 12px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 10px 38px rgba(19, 23, 47, 0.07);
  backdrop-filter: blur(24px) saturate(150%);
  transition:
    min-height 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 42px rgba(19, 23, 47, 0.11);
}

.brand {
  width: 174px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #444758;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.01em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 16px;
  color: white;
  background: var(--navy);
  font-size: 13px;
  font-weight: 650;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.nav-cta:hover {
  background: #25294f;
  transform: translateY(-1px);
}

.nav-cta svg,
.button svg,
.text-link svg,
.contact-arrow {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 4%, rgba(208, 218, 255, 0.54), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(226, 230, 255, 0.65), transparent 24%),
    linear-gradient(180deg, #fbfbfd 0%, #f6f7fa 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(247, 248, 251, 0.9));
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow-one {
  top: 20%;
  left: -9%;
  width: 320px;
  height: 320px;
  background: rgba(193, 207, 255, 0.38);
}

.hero-glow-two {
  top: 5%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: rgba(227, 222, 255, 0.45);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.hero-copy {
  padding-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(27, 30, 59, 0.08);
  border-radius: 999px;
  color: #626575;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 30px rgba(28, 31, 57, 0.05);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  isolation: isolate;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(55, 186, 136, 0.11);
  animation: statusBreath 2.4s ease-in-out infinite;
}

.status-dot::before {
  position: absolute;
  z-index: -1;
  inset: -6px;
  border: 1px solid rgba(55, 186, 136, 0.62);
  border-radius: inherit;
  content: "";
  animation: statusSignal 2.4s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

@keyframes statusBreath {
  0%,
  100% {
    filter: brightness(1);
    transform: scale(0.92);
  }
  48% {
    filter: brightness(1.16);
    transform: scale(1.16);
  }
}

@keyframes statusSignal {
  0% {
    opacity: 0;
    transform: scale(0.42);
  }
  18% {
    opacity: 0.72;
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #15172b;
  font-size: clamp(64px, 7.6vw, 112px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  color: #8b8e9d;
  font-weight: 570;
}

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: #5c5f6f;
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 17px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

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

.button-primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(27, 30, 59, 0.2);
}

.button-primary:hover {
  background: #262a52;
  box-shadow: 0 18px 38px rgba(27, 30, 59, 0.25);
}

.button-secondary {
  border: 1px solid rgba(27, 30, 59, 0.1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(27, 30, 59, 0.08);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}

.mini-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(27, 30, 59, 0.08);
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 22px rgba(27, 30, 59, 0.06);
}

.mini-mark img {
  width: 25px;
  height: auto;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-note strong {
  color: var(--navy);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  perspective: 1200px;
}

.visual-frame {
  position: absolute;
  inset: 0 24px 0 36px;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 44px;
  background: #d9dbe3;
  box-shadow:
    0 45px 100px rgba(25, 28, 53, 0.2),
    inset 0 0 0 1px rgba(27, 30, 59, 0.08);
  transform: rotate(1.5deg);
  transition: transform 180ms ease-out;
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-primary {
  animation: heroSlidePrimary 12s ease-in-out infinite;
}

.hero-slide-secondary {
  opacity: 0;
  animation: heroSlideSecondary 12s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.86) contrast(0.97);
  transform: scale(1.02);
}

.hero-image-reception {
  object-position: 52% center;
}

@keyframes heroSlidePrimary {
  0%,
  42% {
    opacity: 1;
    transform: scale(1);
  }
  50%,
  92% {
    opacity: 0;
    transform: scale(1.018);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroSlideSecondary {
  0%,
  42% {
    opacity: 0;
    transform: scale(1.018);
  }
  50%,
  92% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.018);
  }
}

.image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 23, 45, 0.02) 40%, rgba(20, 23, 45, 0.62) 100%),
    linear-gradient(90deg, rgba(20, 23, 45, 0.08), transparent 45%);
}

.visual-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: white;
}

.visual-caption span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual-caption p {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 590;
  letter-spacing: -0.04em;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(23, 26, 51, 0.16);
  backdrop-filter: blur(22px) saturate(145%);
  animation: float 5.5s ease-in-out infinite;
}

.floating-card-top {
  top: 72px;
  right: -26px;
}

.floating-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--navy);
}

.floating-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-card span {
  display: block;
  margin-bottom: 3px;
  color: #858897;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  color: #24273d;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.trust-row {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 90px;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(27, 30, 59, 0.09);
}

.trust-row > p {
  margin: 0;
  color: #8a8d9b;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(28px, 4.2vw, 62px);
  color: #5d6071;
}

.client-logo {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 34px;
  filter: grayscale(1);
  opacity: 0.58;
  transition:
    filter 200ms ease,
    opacity 200ms ease,
    transform 200ms ease;
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.client-logo-ups {
  max-height: 42px;
}

.client-logo-vrelab {
  max-width: 86px;
  max-height: 50px;
}

.client-logo-cbre {
  max-width: 112px;
}

.client-logo-allcorp {
  max-width: 46px;
  max-height: 52px;
}

.client-logo-arbion {
  position: relative;
  width: 116px;
  height: 34px;
  max-width: 116px;
  max-height: 34px;
  filter: none;
  opacity: 1;
}

.client-logo-arbion:hover {
  filter: none;
}

.client-logo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 200ms ease,
    filter 200ms ease;
}

.client-logo-layer-default {
  filter: grayscale(1);
  opacity: 0.58;
}

.client-logo-layer-hover {
  opacity: 0;
}

.client-logo-arbion:hover .client-logo-layer-default {
  opacity: 0;
}

.client-logo-arbion:hover .client-logo-layer-hover {
  opacity: 1;
}

.section {
  padding: 140px 0;
}

.services {
  position: relative;
  z-index: 5;
  background: #f7f8fb;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.section-kicker {
  margin: 0 0 14px;
  color: #747889;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.process-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-intro {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(27, 30, 59, 0.075);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.service-card:hover {
  border-color: rgba(27, 30, 59, 0.13);
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.service-card-feature {
  grid-row: span 2;
  min-height: 596px;
  color: white;
  background:
    linear-gradient(160deg, rgba(84, 104, 190, 0.5), transparent 45%),
    linear-gradient(145deg, #24294d, #171a34 72%);
}

.service-card-dark {
  color: white;
  background: #262a4c;
}

.service-card-wide {
  grid-column: span 2;
  min-height: 300px;
  background:
    radial-gradient(circle at 85% 45%, rgba(102, 126, 255, 0.22), transparent 30%),
    white;
}

.service-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-number {
  color: #9396a3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card-feature .service-number,
.service-card-dark .service-number {
  color: rgba(255, 255, 255, 0.45);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(27, 30, 59, 0.07);
  border-radius: 16px;
  color: var(--navy);
  background: #f3f4f8;
}

.service-card-feature .service-icon,
.service-card-dark .service-icon {
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.service-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-copy {
  position: relative;
  z-index: 2;
}

.service-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.service-copy p {
  max-width: 530px;
  margin: 0;
  color: #686b7b;
  font-size: 15px;
  line-height: 1.55;
}

.service-card-feature .service-copy p,
.service-card-dark .service-copy p {
  color: rgba(255, 255, 255, 0.67);
}

.service-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-copy li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.service-card-feature .card-link,
.service-card-dark .card-link {
  color: white;
}

.card-link span {
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  top: 110px;
  right: -90px;
  width: 270px;
  height: 270px;
  background: linear-gradient(145deg, rgba(133, 155, 255, 0.58), rgba(100, 83, 209, 0.03));
  box-shadow: inset 12px 12px 28px rgba(255, 255, 255, 0.08);
}

.orb-two {
  top: 246px;
  right: 54px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(6px);
}

.pulse-lines {
  position: absolute;
  right: 28px;
  bottom: 34px;
  display: flex;
  gap: 7px;
  align-items: flex-end;
  height: 110px;
  opacity: 0.38;
}

.pulse-lines span {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), rgba(93, 124, 255, 0.08));
  animation: pulse 2.8s ease-in-out infinite;
}

.pulse-lines span:nth-child(1) {
  height: 42%;
}

.pulse-lines span:nth-child(2) {
  height: 76%;
  animation-delay: -0.4s;
}

.pulse-lines span:nth-child(3) {
  height: 100%;
  animation-delay: -0.8s;
}

.pulse-lines span:nth-child(4) {
  height: 64%;
  animation-delay: -1.2s;
}

.pulse-lines span:nth-child(5) {
  height: 36%;
  animation-delay: -1.6s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.74);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.about-copy {
  position: sticky;
  top: 130px;
}

.about-copy h2 {
  font-size: clamp(40px, 4.5vw, 64px);
}

.about-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  font-size: 15px;
  font-weight: 700;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.principles {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  padding-top: 4px;
  color: #9a9da9;
  font-size: 11px;
  font-weight: 700;
}

.principle h3 {
  margin: 0 0 9px;
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.principle p {
  max-width: 480px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.experience-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: end;
  min-height: 360px;
  margin-top: 120px;
  padding: 50px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 75% -30%, rgba(120, 142, 255, 0.55), transparent 45%),
    var(--navy);
}

.experience-number {
  position: relative;
  z-index: 2;
}

.experience-number > span {
  font-size: clamp(110px, 14vw, 190px);
  font-weight: 570;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.experience-number sup {
  position: relative;
  top: -3.8em;
  font-size: 26px;
}

.experience-number p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-quote {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-bottom: 5px;
}

.experience-quote p {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 530;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.experience-quote span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.experience-panel > img {
  position: absolute;
  top: 35px;
  right: -10px;
  width: 320px;
  opacity: 0.055;
  transform: rotate(-9deg);
}

.industries {
  background: #f7f8fb;
}

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

.industry-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(27, 30, 59, 0.075);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.industry-card:hover {
  border-color: rgba(27, 30, 59, 0.14);
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.industry-card-feature {
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(110, 134, 255, 0.56), transparent 42%),
    linear-gradient(145deg, #202445, #15182f);
}

.industry-card-feature::after {
  position: absolute;
  top: 66px;
  right: -48px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.industry-card-wide {
  grid-column: span 3;
  min-height: 220px;
  flex-direction: row;
  align-items: end;
  background:
    radial-gradient(circle at 88% 50%, rgba(97, 122, 255, 0.17), transparent 28%),
    white;
}

@media (min-width: 821px) {
  .industry-card-wide {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
  }
}

.industry-index {
  position: relative;
  z-index: 2;
  color: #9b9eaa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.industry-card-feature .industry-index {
  color: rgba(255, 255, 255, 0.47);
}

.industry-card > div {
  position: relative;
  z-index: 2;
}

.industry-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.industry-card p {
  max-width: 500px;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.industry-card-feature p {
  color: rgba(255, 255, 255, 0.66);
}

.industry-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.industry-card li {
  padding: 7px 10px;
  border: 1px solid rgba(27, 30, 59, 0.09);
  border-radius: 999px;
  color: #696c7c;
  background: #f5f6f9;
  font-size: 10px;
  font-weight: 650;
}

.industry-card-feature li {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.07);
}

.industry-card-wide > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 14px 17px;
  border-radius: 15px;
  color: white;
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.process {
  background: #f0f2f6;
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.process-heading .section-intro {
  margin-bottom: 5px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(27, 30, 59, 0.12);
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 28px 28px 0 0;
  border-right: 1px solid rgba(27, 30, 59, 0.12);
}

.process-list li:not(:first-child) {
  padding-left: 28px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 70px;
  color: #9699a5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.process-list p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.certifications {
  padding: 88px 0;
  background: white;
}

.certification-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(27, 30, 59, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(210, 220, 255, 0.55), transparent 35%),
    #f7f8fb;
}

.certification-copy h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.certification-list {
  display: grid;
  gap: 10px;
}

.certification-list > span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid rgba(27, 30, 59, 0.075);
  border-radius: 18px;
  color: #343748;
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.certification-list i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: var(--navy);
  font-size: 13px;
  font-style: normal;
}

.contact-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: white;
  background: #15172e;
}

.contact-glow {
  position: absolute;
  top: -280px;
  right: -160px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(91, 112, 225, 0.28);
  filter: blur(2px);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 90px;
  align-items: end;
}

.contact-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 590;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.contact-copy > p:last-child {
  max-width: 530px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.6;
}

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

.enquiry-panel {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  gap: clamp(50px, 8vw, 120px);
  margin-top: 80px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.enquiry-intro > span {
  display: block;
  margin-bottom: 18px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-intro h3 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.enquiry-intro p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

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

.enquiry-form label {
  display: grid;
  gap: 9px;
}

.enquiry-form label > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: 0;
  color: white;
  background: transparent;
  font: inherit;
  font-size: 15px;
  transition: border-color 180ms ease;
}

.enquiry-form input,
.enquiry-form select {
  height: 46px;
}

.enquiry-form textarea {
  min-height: 100px;
  padding: 12px 0;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--acid);
}

.enquiry-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.65) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 13px) 20px,
    calc(100% - 8px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.enquiry-form option {
  color: var(--ink);
  background: white;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.form-submit p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.5;
}

.form-submit button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  color: #111324;
  background: var(--acid);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.form-submit button:hover {
  background: white;
  transform: translateY(-2px);
}

.form-submit svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.form-honey {
  position: absolute;
  left: -10000px;
}

.form-status {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  margin: 4px 0 0;
  padding: 15px 17px;
  border-radius: 15px;
}

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

.form-status > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
}

.form-status p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.form-status strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.form-success {
  color: #10261d;
  background: #dff7e9;
}

.form-success > span {
  color: white;
  background: #2b9a6c;
}

.form-error {
  color: #471d1d;
  background: #fbe8e8;
}

.form-error > span {
  color: white;
  background: #b94b4b;
}

.form-submit button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.enquiry-form.is-submitting input,
.enquiry-form.is-submitting select,
.enquiry-form.is-submitting textarea {
  opacity: 0.72;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-4px);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.contact-card small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.contact-arrow {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  padding: 70px 0 28px;
  background: #0e1021;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 90px;
  align-items: start;
}

.footer-brand img {
  width: 180px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-contact address {
  max-width: 280px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-style: normal;
  line-height: 1.7;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.33);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms);
}

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

:focus-visible {
  outline: 3px solid rgba(93, 124, 255, 0.55);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: 185px 1fr 190px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(60px, 8vw, 86px);
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .service-card-feature {
    grid-row: span 2;
  }

  .service-card-wide {
    grid-column: span 1;
  }

  .about-grid {
    gap: 70px;
  }

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

  .industry-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 680px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 10px 0 16px;
    border-radius: 20px;
  }

  .brand {
    width: 154px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 14px;
    background: #f1f2f6;
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--navy);
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 0;
    left: 0;
    display: block;
    padding: 78px 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 60px rgba(20, 23, 46, 0.14);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.035em;
  }

  .mobile-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 20px 4px 0;
    color: var(--muted);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(58px, 13vw, 88px);
  }

  .hero-lead {
    max-width: 600px;
  }

  .hero-visual {
    min-height: 650px;
    margin-top: 8px;
  }

  .visual-frame {
    inset: 0 24px;
  }

  .floating-card-top {
    right: 0;
  }

  .trust-row {
    display: grid;
    gap: 30px;
    margin-top: 60px;
  }

  .client-logos {
    justify-content: space-between;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro {
    max-width: 560px;
  }

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

  .service-card-feature {
    grid-column: span 2;
    grid-row: auto;
    min-height: 480px;
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-copy {
    position: static;
  }

  .experience-panel {
    grid-template-columns: 1fr 1fr;
    margin-top: 90px;
    padding: 40px;
  }

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

  .industry-card-wide {
    grid-column: span 2;
  }

  .certification-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 38px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li {
    min-height: 230px;
    border-bottom: 1px solid rgba(27, 30, 59, 0.12);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    padding-top: 30px;
    border-bottom: 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
    --radius-xl: 28px;
    --radius-lg: 24px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .hero {
    padding-top: 112px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
    letter-spacing: -0.07em;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 500px;
    margin-inline: -4px;
  }

  .visual-frame {
    inset: 0 8px;
    border-width: 4px;
    border-radius: 34px;
  }

  .floating-card {
    padding: 12px;
    border-radius: 16px;
  }

  .floating-card-top {
    top: 30px;
    right: -2px;
  }

  .floating-card strong {
    max-width: 185px;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
  }

  .floating-icon {
    width: 34px;
    height: 34px;
  }

  .trust-row {
    margin-top: 46px;
  }

  .client-logos {
    gap: 18px;
    justify-content: center;
  }

  .client-logo {
    max-width: 92px;
    max-height: 25px;
  }

  .client-logo-ups {
    max-height: 31px;
  }

  .client-logo-vrelab {
    max-width: 66px;
    max-height: 39px;
  }

  .client-logo-cbre {
    max-width: 78px;
  }

  .client-logo-allcorp {
    max-width: 38px;
    max-height: 44px;
  }

  .client-logo-arbion {
    width: 82px;
    height: 25px;
    max-width: 82px;
    max-height: 25px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .process-heading h2 {
    font-size: 42px;
  }

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

  .service-card-feature,
  .service-card-wide {
    grid-column: auto;
  }

  .service-card-feature {
    min-height: 480px;
  }

  .service-card {
    min-height: 270px;
    padding: 24px;
  }

  .experience-panel {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: 470px;
    margin-top: 70px;
    padding: 32px 28px;
  }

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

  .industry-card {
    min-height: 270px;
    padding: 24px;
  }

  .industry-card-wide {
    grid-column: auto;
    min-height: 320px;
    flex-direction: column;
    align-items: stretch;
  }

  .industry-card-wide > a {
    justify-content: center;
    margin-top: 28px;
  }

  .experience-number > span {
    font-size: 126px;
  }

  .experience-number sup {
    top: -3.3em;
  }

  .process-heading {
    display: block;
  }

  .process-heading .section-intro {
    margin-top: 22px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:not(:first-child) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(27, 30, 59, 0.12);
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    padding-top: 28px;
    border-bottom: 1px solid rgba(27, 30, 59, 0.12);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list span {
    margin-bottom: 38px;
  }

  .contact-section {
    padding: 84px 0;
  }

  .enquiry-panel {
    gap: 42px;
    margin-top: 56px;
    padding: 28px 20px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .enquiry-form label,
  .form-wide {
    grid-column: auto;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit button {
    width: 100%;
  }

  .certifications {
    padding: 70px 0;
  }

  .certification-panel {
    padding: 28px 22px;
  }

  .certification-copy h2 {
    font-size: 37px;
  }

  .contact-copy h2 {
    font-size: 64px;
  }

  .contact-card {
    min-height: 82px;
  }

  .contact-card strong {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Editorial direction inspired by current award-winning corporate sites. */
:root {
  --acid: #c8ff4d;
  --paper: #f5f3ee;
}

body {
  background: var(--paper);
}

.cursor-orbit {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(24, 27, 52, 0.3);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.cursor-orbit.is-active {
  width: 58px;
  height: 58px;
  border-color: rgba(24, 27, 52, 0.12);
  background: rgba(200, 255, 77, 0.18);
}

.hero {
  background:
    linear-gradient(90deg, rgba(225, 230, 255, 0.72) 0, transparent 35%),
    radial-gradient(circle at 90% 12%, rgba(202, 211, 255, 0.82), transparent 28%),
    #f7f6f2;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.78fr);
  gap: clamp(38px, 5vw, 76px);
}

.hero h1 {
  font-size: clamp(68px, 8.2vw, 126px);
  font-weight: 620;
  letter-spacing: -0.066em;
  line-height: 0.84;
}

.hero h1 span {
  color: #454b78;
  font-weight: 590;
  -webkit-text-stroke: 0;
  text-shadow: 0 10px 34px rgba(69, 75, 120, 0.12);
}

.hero-visual {
  min-height: 680px;
}

.visual-frame {
  inset: 0 0 0 28px;
  border-radius: 160px 36px 36px 36px;
  transform: rotate(1deg);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: #777a89;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(27, 30, 59, 0.2);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  background: var(--navy);
  content: "";
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

.manifesto {
  position: relative;
  overflow: hidden;
  color: white;
  background: #111324;
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--acid);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 18px 0;
  animation: marqueeMove 24s linear infinite;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.marquee-group span {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.marquee-track i,
.industry-runner i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

.manifesto-inner {
  padding-top: 105px;
  padding-bottom: 110px;
}

.manifesto-label {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 70px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifesto-label p {
  margin: 0;
}

.manifesto-statement p {
  margin: 0;
  font-size: clamp(58px, 7.6vw, 116px);
  font-weight: 520;
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.manifesto-statement .manifesto-accent {
  color: var(--acid);
  font-style: italic;
  font-weight: 450;
}

.manifesto-statement .manifesto-indent {
  padding-left: 14%;
}

.manifesto-bottom {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 90px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.manifesto-bottom > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.65;
}

.manifesto-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.manifesto-metrics div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.manifesto-metrics strong {
  display: block;
  margin-bottom: 9px;
  color: white;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 540;
  letter-spacing: -0.06em;
}

.manifesto-metrics span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services {
  background: var(--paper);
}

.service-card,
.experience-panel,
.industry-card,
.certification-panel {
  border-radius: 6px;
}

.service-card-feature {
  background:
    linear-gradient(160deg, rgba(84, 104, 190, 0.35), transparent 45%),
    #14162b;
}

.service-card-dark {
  background: #2a2f62;
}

.service-card:hover {
  transform: translateY(-8px) rotate(-0.35deg);
}

.about {
  background: #faf9f5;
}

.industries {
  background: #e8eaff;
}

.industry-card-feature {
  background:
    radial-gradient(circle at 100% 0%, rgba(110, 134, 255, 0.56), transparent 42%),
    #14162b;
}

.industry-runner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(27, 30, 59, 0.13);
  color: #565b80;
}

.industry-runner span {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process {
  background: #f7f6f2;
}

.contact-section {
  background: #111324;
}

.contact-copy h2 {
  font-size: clamp(68px, 9vw, 132px);
}

.contact-card {
  border-radius: 4px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr);
  }
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-statement .manifesto-indent {
    padding-left: 8%;
  }

  .manifesto-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero h1 span {
    color: #3d426d;
    -webkit-text-stroke-width: 0;
  }

  .visual-frame {
    inset: 0 8px;
    border-radius: 92px 24px 24px 24px;
  }

  .manifesto-inner {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  .manifesto-label {
    margin-bottom: 46px;
  }

  .manifesto-statement p {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.94;
  }

  .manifesto-statement .manifesto-indent {
    padding-left: 0;
  }

  .manifesto-bottom {
    gap: 50px;
    margin-top: 58px;
  }

  .manifesto-metrics {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .manifesto-metrics div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .manifesto-metrics strong {
    margin: 0;
  }

  .industry-runner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .industry-runner i {
    width: 4px;
    height: 4px;
  }
}

@media (pointer: coarse), (max-width: 820px) {
  .cursor-orbit {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-primary,
  .hero-slide-secondary {
    animation: none !important;
  }

  .hero-slide-primary {
    opacity: 1;
  }

  .hero-slide-secondary {
    opacity: 0;
  }

  .marquee-track,
  .hero-scroll i::after {
    animation: none;
  }
}

/* Interactive service directory */
.service-accordion {
  border-top: 1px solid rgba(27, 30, 59, 0.18);
}

.service-item {
  border-bottom: 1px solid rgba(27, 30, 59, 0.18);
  transition: background-color 320ms ease;
}

.service-item.is-open {
  background: rgba(255, 255, 255, 0.58);
}

.service-trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 52px minmax(260px, 1fr) minmax(220px, 0.62fr) 44px;
  gap: 24px;
  align-items: center;
  padding: 25px 8px;
  border: 0;
  color: var(--navy);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.service-trigger:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -2px;
}

.service-trigger .service-number {
  color: #858897;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.service-title {
  font-size: clamp(24px, 2.35vw, 38px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.service-summary {
  color: #737686;
  font-size: 14px;
  line-height: 1.45;
}

.service-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  justify-self: end;
  border: 1px solid rgba(27, 30, 59, 0.22);
  border-radius: 50%;
  transition:
    color 250ms ease,
    background-color 250ms ease,
    transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-toggle::before,
.service-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 250ms ease;
}

.service-item.is-open .service-toggle {
  color: white;
  background: var(--navy);
}

.service-item.is-open .service-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease;
}

.service-item.is-open .service-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-panel-inner {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(34px, 6vw, 92px);
  overflow: hidden;
}

.service-details {
  align-self: center;
  padding: 28px 0 48px 84px;
}

.service-details > p {
  max-width: 440px;
  margin: 0;
  color: #555968;
  font-size: 16px;
  line-height: 1.68;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 8px 12px;
  border: 1px solid rgba(27, 30, 59, 0.13);
  border-radius: 999px;
  color: #555968;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.025em;
}

.service-cta {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-cta span {
  font-size: 16px;
  transition: transform 200ms ease;
}

.service-cta:hover span {
  transform: translate(3px, -3px);
}

.service-photo {
  position: relative;
  display: block;
  min-height: 340px;
  margin: 4px 8px 34px 0;
  overflow: hidden;
  border-radius: 4px;
  background: #d9d9d4;
}

.service-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(15, 17, 34, 0.13));
}

.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item.is-open .service-photo img {
  transform: scale(1.015);
}

@media (max-width: 820px) {
  .service-trigger {
    grid-template-columns: 38px 1fr 40px;
    gap: 14px;
    padding: 21px 2px;
  }

  .service-summary {
    display: none;
  }

  .service-title {
    font-size: clamp(22px, 6vw, 30px);
  }

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

  .service-details {
    padding: 18px 4px 30px 52px;
  }

  .service-photo {
    min-height: 300px;
    margin: 0 0 26px 52px;
  }

  .service-photo img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .service-trigger {
    grid-template-columns: 30px 1fr 36px;
    gap: 10px;
    padding: 18px 0;
  }

  .service-title {
    font-size: 22px;
  }

  .service-toggle {
    width: 34px;
    height: 34px;
  }

  .service-details {
    padding: 14px 0 26px 40px;
  }

  .service-details > p {
    font-size: 14px;
  }

  .service-tags {
    margin: 19px 0 25px;
  }

  .service-photo {
    min-height: 230px;
    margin-left: 40px;
  }

  .service-photo img {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-panel,
  .service-photo img,
  .service-toggle {
    transition: none;
  }
}

/* Opening identity and tactile desktop interactions */
body.intro-active {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 50% 44%, rgba(100, 118, 216, 0.2), transparent 28%),
    #151936;
  clip-path: inset(0);
  transition: clip-path 850ms cubic-bezier(0.76, 0, 0.24, 1);
}

.site-intro::after {
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  content: "INDIA";
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(150px, 30vw, 520px);
  font-weight: 750;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.site-intro.is-leaving {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.intro-brand {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 22px;
  align-items: center;
  animation: introBrand 850ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.intro-mark img {
  width: 51px;
  filter: brightness(0) invert(1);
}

.intro-brand p {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 0;
}

.intro-brand p span {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.intro-brand p strong {
  color: white;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 520;
  letter-spacing: -0.045em;
}

.intro-progress {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  width: min(240px, calc(100% - 80px));
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.intro-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  animation: introProgress 1400ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes introBrand {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes introProgress {
  to {
    transform: scaleX(1);
  }
}

@property --cursor-scale {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

.cursor-orbit {
  width: 44px;
  height: 44px;
  --cursor-x: -100px;
  --cursor-y: -100px;
  --cursor-scale: 1;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(27, 30, 59, 0.18);
  mix-blend-mode: difference;
  transform:
    translate3d(var(--cursor-x), var(--cursor-y), 0)
    translate(-50%, -50%)
    scale(var(--cursor-scale));
  transition:
    width 220ms cubic-bezier(0.16, 1, 0.3, 1),
    height 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms ease,
    opacity 180ms ease,
    --cursor-scale 120ms ease;
}

.cursor-dot {
  position: fixed;
  z-index: 201;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: white;
  mix-blend-mode: difference;
  --cursor-x: -100px;
  --cursor-y: -100px;
  transform:
    translate3d(var(--cursor-x), var(--cursor-y), 0)
    translate(-50%, -50%);
  transition:
    width 180ms ease,
    height 180ms ease,
    opacity 180ms ease;
}

.cursor-orbit.is-active {
  width: 68px;
  height: 68px;
  border-color: white;
  background: rgba(255, 255, 255, 0.24);
}

.cursor-orbit.is-clicking {
  --cursor-scale: 0.72;
}

.cursor-ripple {
  position: fixed;
  z-index: 199;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(27, 30, 59, 0.56);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: cursorRipple 520ms ease-out forwards;
}

@keyframes cursorRipple {
  to {
    width: 74px;
    height: 74px;
    opacity: 0;
  }
}

.is-magnetic {
  translate: var(--magnetic-x, 0) var(--magnetic-y, 0);
  transition:
    translate 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-trigger {
  position: relative;
  overflow: hidden;
  transition:
    background-color 260ms ease,
    padding 260ms ease;
}

.service-trigger::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, rgba(92, 116, 232, 0.09), transparent 58%);
  transform: translateX(-18%);
  transition:
    opacity 260ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-trigger:hover::before {
  opacity: 1;
  transform: none;
}

.service-trigger:hover .service-title {
  transform: translateX(8px);
}

.service-title,
.service-summary,
.service-number,
.service-toggle {
  position: relative;
  z-index: 1;
}

.service-title {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-hover-surface] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  isolation: isolate;
}

.industry-card[data-hover-surface] {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.industry-card[data-hover-surface]::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    320px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(100, 126, 255, 0.18),
    transparent 62%
  );
  transition: opacity 250ms ease;
}

.industry-card[data-hover-surface]:hover::before {
  opacity: 1;
}

.industry-card[data-hover-surface]:hover {
  border-color: rgba(27, 30, 59, 0.2);
  box-shadow: 0 26px 65px rgba(28, 32, 62, 0.13);
}

.principle {
  margin-inline: -18px;
  padding-inline: 18px;
  transition:
    background-color 300ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 300ms ease;
}

.principle:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(8px);
}

.principle > span {
  transition:
    color 220ms ease,
    transform 300ms ease;
}

.principle:hover > span {
  color: var(--blue);
  transform: translateX(4px);
}

.principle h3 {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.principle:hover h3 {
  transform: translateX(5px);
}

.process-list li {
  overflow: hidden;
  transition:
    background-color 280ms ease,
    box-shadow 280ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-list li:hover {
  z-index: 2;
  background: white;
  box-shadow: 0 18px 45px rgba(28, 32, 62, 0.08);
  transform: translateY(-8px);
}

.process-list li span,
.process-list li h3 {
  transition:
    color 250ms ease,
    transform 300ms ease;
}

.process-list li:hover span {
  color: var(--blue);
  transform: translateY(-3px);
}

.process-list li:hover h3 {
  transform: translateX(6px);
}

.experience-panel[data-hover-surface] > img {
  transition:
    opacity 350ms ease,
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-panel[data-hover-surface]:hover > img {
  opacity: 0.11;
  transform: rotate(-3deg) scale(1.08);
}

@media (pointer: coarse), (max-width: 820px) {
  .cursor-dot,
  .cursor-ripple {
    display: none;
  }

  .principle {
    margin-inline: 0;
    padding-inline: 0;
  }
}

@media (max-width: 560px) {
  .intro-brand {
    gap: 15px;
  }

  .intro-mark {
    width: 58px;
    height: 58px;
  }

  .intro-mark img {
    width: 39px;
  }

  .intro-brand p span {
    font-size: 29px;
  }

  .intro-brand p strong {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro,
  .intro-brand,
  .intro-progress i,
  .cursor-ripple {
    animation: none;
    transition: none;
  }
}

/* Keep the same visual effects while avoiding work outside the viewport. */
.marquee-track,
.hero-scroll i::after {
  animation-play-state: paused;
}

.marquee.is-in-view .marquee-track,
.hero-scroll.is-in-view i::after {
  animation-play-state: running;
}

@supports (content-visibility: auto) {
  .services,
  .industries,
  .process,
  .certifications,
  .contact-section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}

/* Rich industry cards and certification badges */
.industry-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(101, 120, 207, 0.16), transparent 31%),
    linear-gradient(145deg, #ffffff, #f1f3fb);
}

.industry-card-feature {
  background:
    radial-gradient(circle at 100% 0%, rgba(110, 134, 255, 0.56), transparent 42%),
    #14162b;
}

.industry-card-tech {
  background:
    radial-gradient(circle at 88% 18%, rgba(56, 184, 205, 0.26), transparent 31%),
    linear-gradient(145deg, #f7ffff, #dceff6);
}

.industry-card-education {
  background:
    radial-gradient(circle at 88% 18%, rgba(170, 122, 223, 0.24), transparent 31%),
    linear-gradient(145deg, #fdfaff, #eee3f8);
}

.industry-card-health {
  background:
    radial-gradient(circle at 88% 18%, rgba(73, 183, 145, 0.23), transparent 31%),
    linear-gradient(145deg, #f8fffc, #dff1e9);
}

.industry-card-residential {
  background:
    radial-gradient(circle at 88% 18%, rgba(228, 156, 87, 0.24), transparent 31%),
    linear-gradient(145deg, #fffdf8, #f4e8d8);
}

.industry-card-factory {
  background:
    radial-gradient(circle at 88% 18%, rgba(91, 107, 143, 0.24), transparent 31%),
    linear-gradient(145deg, #fbfcff, #e2e6ef);
}

.industry-card-wide {
  background:
    radial-gradient(circle at 88% 50%, rgba(97, 122, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #ffffff, #e9ecfa);
}

.industry-symbol {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 25px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(27, 30, 59, 0.09);
  border-radius: 50%;
  color: rgba(27, 30, 59, 0.64);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(9px);
  transition:
    color 300ms ease,
    background-color 300ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-symbol::after {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.industry-symbol svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.industry-card:hover .industry-symbol {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  transform: rotate(-7deg) scale(1.08);
}

.industry-card-feature .industry-symbol {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.industry-card-wide .industry-symbol {
  top: 50%;
  right: 185px;
  width: 92px;
  height: 92px;
  transform: translateY(-50%);
}

.industry-card-wide:hover .industry-symbol {
  transform: translateY(-50%) rotate(-7deg) scale(1.08);
}

.certification-list > span {
  display: none;
}

.certification-badges {
  display: grid;
  gap: 10px;
}

.certification-item {
  display: grid;
  min-height: 84px;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(27, 30, 59, 0.075);
  border-radius: 20px;
  color: #343748;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 250ms ease,
    border-color 250ms ease,
    background-color 250ms ease;
}

.certification-item:hover {
  z-index: 2;
  border-color: rgba(27, 30, 59, 0.15);
  background: white;
  box-shadow: 0 16px 38px rgba(28, 32, 62, 0.09);
  transform: translateX(9px);
}

.certification-mark {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 15px;
  color: var(--navy);
  background: #eef0fa;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.certification-item:hover .certification-mark {
  transform: rotate(-8deg) scale(1.08);
}

.certification-mark svg {
  position: absolute;
  width: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  opacity: 0.45;
}

.certification-mark b {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.certification-mark-fssai {
  color: #287a51;
  background: #e8f5ed;
}

.certification-mark-apta {
  color: #805b1d;
  background: #f8efdd;
}

.certification-text {
  display: grid;
  gap: 4px;
}

.certification-text strong {
  font-size: 15px;
  font-weight: 720;
}

.certification-text small {
  color: #777b8b;
  font-size: 11px;
}

.certification-status {
  padding: 7px 10px;
  border: 1px solid rgba(27, 30, 59, 0.09);
  border-radius: 999px;
  color: #626677;
  background: #f7f8fb;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .industry-card-wide .industry-symbol {
    top: 25px;
    right: 25px;
    width: 64px;
    height: 64px;
    transform: none;
  }

  .industry-card-wide:hover .industry-symbol {
    transform: rotate(-7deg) scale(1.08);
  }
}

@media (max-width: 560px) {
  .industry-symbol {
    width: 54px;
    height: 54px;
  }

  .industry-symbol::after {
    width: 118px;
    height: 118px;
  }

  .industry-symbol svg {
    width: 25px;
  }

  .certification-item {
    grid-template-columns: 54px 1fr;
    gap: 13px;
    padding: 11px;
  }

  .certification-mark {
    width: 52px;
    height: 52px;
  }

  .certification-status {
    display: none;
  }
}

/* Touch feedback: mobile has no hover, so taps get a visible response. */
@media (pointer: coarse), (hover: none) {
  .touch-enabled {
    position: relative;
    isolation: isolate;
    -webkit-tap-highlight-color: transparent;
    transition:
      transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 220ms ease,
      background-color 220ms ease,
      border-color 220ms ease;
  }

  .touch-enabled::before {
    position: absolute;
    z-index: -1;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle, rgba(100, 126, 255, 0.2), transparent 68%);
    transform: translate(-50%, -50%) scale(0.45);
    transform-origin: center;
    transition:
      opacity 180ms ease,
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
    left: var(--touch-x, 50%);
    top: var(--touch-y, 50%);
  }

  .touch-enabled.is-touched::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .industry-card.is-touched,
  .certification-item.is-touched,
  .experience-panel.is-touched {
    border-color: rgba(27, 30, 59, 0.18);
    box-shadow: 0 18px 42px rgba(28, 32, 62, 0.13);
    transform: scale(0.985);
  }

  .industry-card.is-touched .industry-symbol {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.88);
    transform: rotate(-7deg) scale(1.07);
  }

  .industry-card-wide.is-touched .industry-symbol {
    transform: rotate(-7deg) scale(1.07);
  }

  .principle.is-touched {
    background: rgba(255, 255, 255, 0.76);
    transform: translateX(6px);
  }

  .principle.is-touched > span {
    color: var(--blue);
  }

  .process-list li.is-touched {
    z-index: 2;
    background: white;
    box-shadow: 0 16px 38px rgba(28, 32, 62, 0.1);
    transform: translateY(-5px);
  }

  .process-list li.is-touched span {
    color: var(--blue);
  }

  .certification-item.is-touched .certification-mark {
    transform: rotate(-7deg) scale(1.06);
  }

  .service-trigger.is-touched {
    background: rgba(100, 126, 255, 0.08);
  }

  .service-trigger.is-touched .service-title {
    transform: translateX(5px);
  }

  a.touch-enabled.is-touched,
  button.touch-enabled.is-touched {
    transform: scale(0.97);
  }

  .contact-card.is-touched {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
  }

  .industry-card:hover:not(.is-touched),
  .principle:hover:not(.is-touched),
  .process-list li:hover:not(.is-touched),
  .certification-item:hover:not(.is-touched) {
    transform: none;
  }
}

/* Lightweight guided service assistant */
.chat-assistant {
  position: fixed;
  z-index: 190;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.4vw, 30px);
  color: var(--navy);
}

.chat-assistant [hidden] {
  display: none !important;
}

.chat-launcher {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: white;
  background: #171a36;
  box-shadow: 0 18px 55px rgba(17, 19, 36, 0.25);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.chat-launcher:hover {
  box-shadow: 0 22px 65px rgba(17, 19, 36, 0.32);
  transform: translateY(-3px);
}

.chat-launcher:active,
.chat-options button:active,
.chat-service-list button:active,
.chat-whatsapp:active {
  transform: scale(0.97);
}

.chat-launcher svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  background: rgba(255, 255, 255, 0.1);
}

.chat-launcher-pulse {
  position: absolute;
  top: 8px;
  left: 40px;
  width: 9px;
  height: 9px;
  border: 2px solid #171a36;
  border-radius: 50%;
  background: var(--green);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: grid;
  width: min(390px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 112px));
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(27, 30, 59, 0.1);
  border-radius: 28px;
  opacity: 0;
  background: rgba(249, 249, 247, 0.98);
  box-shadow: 0 30px 90px rgba(20, 23, 48, 0.25);
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-assistant.is-open .chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.chat-assistant.is-open .chat-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.92);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 18px;
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(92, 116, 232, 0.38), transparent 42%),
    #15172e;
}

.chat-identity {
  display: flex;
  gap: 11px;
  align-items: center;
}

.chat-avatar {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: white;
}

.chat-avatar img {
  width: 28px;
}

.chat-avatar i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid #15172e;
  border-radius: 50%;
  background: var(--green);
}

.chat-identity strong,
.chat-identity small {
  display: block;
}

.chat-identity strong {
  font-size: 13px;
}

.chat-identity small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.chat-header > button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.chat-header svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.chat-body {
  min-height: 300px;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.chat-message {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 5px 17px 17px 17px;
  background: #eceefa;
  font-size: 13px;
  line-height: 1.5;
}

.chat-message p {
  margin: 0;
}

.chat-options,
.chat-service-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.chat-options button,
.chat-options a,
.chat-service-list button {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(27, 30, 59, 0.1);
  border-radius: 13px;
  color: #242744;
  background: white;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 690;
  text-align: left;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.chat-options button:hover,
.chat-options a:hover,
.chat-service-list button:hover {
  border-color: rgba(92, 116, 232, 0.32);
  background: #f2f4ff;
  transform: translateX(3px);
}

.chat-options a {
  display: block;
}

.chat-back {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  color: #6d7185;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.chat-form label {
  display: grid;
  gap: 6px;
}

.chat-form label:nth-child(4),
.chat-form label:nth-child(5),
.chat-whatsapp {
  grid-column: 1 / -1;
}

.chat-form label span {
  color: #74788a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-form input,
.chat-form select,
.chat-form textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(27, 30, 59, 0.12);
  border-radius: 11px;
  outline: none;
  color: var(--navy);
  background: white;
  font: inherit;
  font-size: 12px;
}

.chat-form input:focus,
.chat-form select:focus,
.chat-form textarea:focus {
  border-color: #667be5;
  box-shadow: 0 0 0 3px rgba(102, 123, 229, 0.12);
}

.chat-form textarea {
  resize: vertical;
}

.chat-whatsapp {
  display: flex;
  justify-content: center;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: #171a36;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
}

.chat-whatsapp svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.chat-contact-options {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.chat-contact-options a {
  padding: 14px;
  border: 1px solid rgba(27, 30, 59, 0.1);
  border-radius: 13px;
  background: white;
}

.chat-contact-options small,
.chat-contact-options strong {
  display: block;
}

.chat-contact-options small {
  margin-bottom: 5px;
  color: #777b8c;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-contact-options strong {
  font-size: 13px;
}

.chat-footer {
  display: flex;
  justify-content: space-between;
  padding: 11px 18px;
  border-top: 1px solid rgba(27, 30, 59, 0.08);
  color: #858898;
  background: white;
  font-size: 9px;
}

.chat-footer span {
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 700;
}

.chat-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

@media (max-width: 560px) {
  .chat-assistant {
    right: 12px;
    bottom: 12px;
  }

  .chat-launcher {
    min-height: 52px;
  }

  .chat-launcher > span:last-child {
    display: none;
  }

  .chat-launcher {
    width: 52px;
    padding: 8px;
  }

  .chat-launcher svg {
    width: 36px;
    height: 36px;
  }

  .chat-launcher-pulse {
    top: 5px;
    left: 37px;
  }

  .chat-panel {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: min(720px, calc(100dvh - 20px));
    border-radius: 24px;
  }

  .chat-body {
    min-height: 280px;
    padding: 17px;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-form label:nth-child(4),
  .chat-form label:nth-child(5),
  .chat-whatsapp {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-launcher,
  .chat-panel,
  .chat-options button,
  .chat-options a,
  .chat-service-list button {
    transition: none;
  }
}
