:root {
  --font-base: "Plus Jakarta Sans", sans-serif;
  --color-bg: #f3f7ff;
  --color-surface: #ffffff;
  --color-text: #0d2142;
  --color-text-soft: #496181;
  --color-primary: #1f64ff;
  --color-primary-dark: #0d2d6e;
  --color-primary-deep: #081a46;
  --color-primary-soft: #dce8ff;
  --color-accent: #3db6ff;
  --color-border: rgba(13, 33, 66, 0.1);
  --shadow-lg: 0 22px 48px rgba(10, 41, 99, 0.16);
  --shadow-md: 0 12px 26px rgba(12, 43, 101, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --offshore-container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(31, 100, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #f3f7ff 48%, #eef4ff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
[role="tab"] {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
[role="tab"]:focus {
  outline: none;
}

button:focus-visible,
a:focus-visible,
[role="tab"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 100, 255, 0.18);
}

img,
svg {
  display: block;
  max-width: 100%;
}

.offshore-container {
  width: min(calc(100% - 32px), var(--offshore-container));
  margin: 0 auto;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(8, 26, 70, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.wpcf7-submit{
	width: 200px;
}

.brand img {
  display: block;
  width: auto;
  height: 40px;
}

.site-nav {
  position: static;
  display: flex;
  align-items: center;
  gap: 28px;
  height: auto;
  flex: 1;
  justify-content: flex-end;
}

.menu,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4d8dff 100%);
  box-shadow: 0 16px 28px rgba(31, 100, 255, 0.28);
}
.button-primary:hover{
	color: #ffffff;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-large {
  min-width: 180px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0 44px;
  background:
    radial-gradient(circle at 72% 34%, rgba(95, 175, 255, 0.42), transparent 18%),
    radial-gradient(circle at 24% 65%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #123b93 0%, #0e67d0 44%, #0a2057 100%);
  color: #fff;
}

.hero-section .offshore-container {
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 44px;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 420px;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.team-board {
  position: relative;
  width: min(100%, 560px);
  min-height: 326px;
  overflow: hidden;
}

.hero-stack-board {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(6, 20, 58, 0.72), rgba(4, 14, 42, 0.9)),
    radial-gradient(circle at 18% 18%, rgba(83, 159, 255, 0.14), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(70, 231, 212, 0.12), transparent 24%);
  border: 1px solid rgba(130, 185, 255, 0.14);
  box-shadow:
    0 28px 56px rgba(6, 17, 49, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-stack-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(124, 172, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 22% 20%, rgba(103, 196, 255, 0.08), transparent 30%);
}

.hero-stack-board::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%);
  pointer-events: none;
}

.hero-stack-glow,
.hero-stack-gridline,
.hero-stack-carousel,
.hero-stack-labels {
  position: absolute;
}

.hero-stack-glow {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
}

.hero-stack-glow-one {
  left: 42px;
  top: 28px;
  width: 160px;
  height: 120px;
  background: radial-gradient(circle, rgba(83, 159, 255, 0.32), transparent 68%);
}

.hero-stack-glow-two {
  right: 48px;
  bottom: 42px;
  width: 170px;
  height: 130px;
  background: radial-gradient(circle, rgba(70, 231, 212, 0.22), transparent 70%);
}

.hero-stack-gridline {
  left: 36px;
  right: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(121, 171, 255, 0.24), transparent);
  opacity: 0.7;
}

.hero-stack-gridline-one {
  top: 82px;
}

.hero-stack-gridline-two {
  bottom: 82px;
}

.hero-stack-carousel {
  inset: 34px 34px 86px;
}

.hero-stack-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px 28px 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(22, 39, 74, 0.8), rgba(13, 24, 51, 0.88));
  border: 1px solid rgba(157, 205, 255, 0.16);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(52px) translateY(10px) scale(0.94);
  transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
  filter: saturate(0.84);
}

.hero-stack-slide.is-active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  z-index: 3;
  filter: saturate(1);
}

.hero-stack-slide.is-prev {
  opacity: 0;
  transform: translateX(0) translateY(0) scale(0.98);
  z-index: 1;
}

.hero-stack-slide.is-next {
  opacity: 0;
  transform: translateX(0) translateY(0) scale(0.98);
  z-index: 2;
}

.hero-stack-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, rgba(84, 149, 255, 0.18), rgba(26, 57, 122, 0.08));
  border: 1px solid rgba(166, 211, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stack-icon::before,
.hero-stack-icon::after {
  content: "";
  position: absolute;
}

.hero-stack-icon-people::before {
  left: 16px;
  top: 14px;
  width: 26px;
  height: 12px;
  border-radius: 999px 999px 10px 10px;
  border: 2px solid #8ed0ff;
  border-bottom: 0;
}

.hero-stack-icon-people::after {
  left: 14px;
  bottom: 13px;
  width: 30px;
  height: 18px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, #77b6ff, #2f62df);
}

.hero-stack-icon-systems::before {
  inset: 15px;
  border-radius: 12px;
  border: 2px solid #8ed0ff;
}

.hero-stack-icon-systems::after {
  left: 20px;
  top: 27px;
  width: 18px;
  height: 2.5px;
  background: #8ed0ff;
  box-shadow: 0 -7px 0 #8ed0ff, 0 7px 0 #8ed0ff;
}

.hero-stack-icon-peppol::before {
  left: 17px;
  top: 13px;
  width: 24px;
  height: 30px;
  border-radius: 8px;
  border: 2px solid #8ed0ff;
}

.hero-stack-icon-peppol::after {
  left: 23px;
  top: 21px;
  width: 12px;
  height: 2.5px;
  background: #8ed0ff;
  box-shadow: 0 8px 0 #8ed0ff, 0 16px 0 #8ed0ff;
}

.hero-stack-copy h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-stack-copy p {
  margin: 0;
  max-width: 320px;
  color: rgba(223, 236, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-stack-labels {
  left: 34px;
  right: 34px;
  bottom: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-stack-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(154, 200, 255, 0.12);
  color: rgba(221, 235, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.hero-stack-label.is-active {
  background: rgba(84, 149, 255, 0.18);
  border-color: rgba(127, 186, 255, 0.28);
  color: #fff;
}

.team-board::before {
  content: none;
}

.team-board::after {
  content: none;
}

.hero-banner-art {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 42px rgba(8, 31, 86, 0.2));
}

.board-core {
  position: absolute;
  left: 42px;
  top: 28px;
  width: 304px;
  height: 182px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(228, 239, 255, 0.94)),
    linear-gradient(135deg, rgba(75, 143, 255, 0.16), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 36px rgba(13, 52, 126, 0.16);
  border: 1px solid rgba(92, 136, 219, 0.18);
  z-index: 1;
}

.board-core::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(230, 239, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.board-core::after {
  content: "";
  position: absolute;
  right: -48px;
  top: 26px;
  width: 112px;
  height: 64px;
  border: 2px solid rgba(104, 149, 230, 0.34);
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.board-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.board-network path {
  fill: none;
  stroke: rgba(126, 169, 244, 0.94);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.board-network circle {
  fill: #6f9fff;
}

.board-hud {
  position: absolute;
  left: 28px;
  top: 22px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.board-chip {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(97, 140, 225, 0.34), rgba(193, 217, 255, 0.7));
}

.chip-one {
  width: 62px;
}

.chip-two {
  width: 46px;
}

.chip-three {
  width: 54px;
}

.avatar {
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #dbe7ff 100%);
  box-shadow: 0 14px 28px rgba(11, 45, 109, 0.2);
  border: 5px solid rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.avatar-small {
  width: 56px;
  height: 56px;
}

.avatar-one { top: 42px; left: -8px; }
.avatar-two { top: -9px; left: 104px; }
.avatar-three { top: 88px; left: 116px; }
.avatar-four { top: -5px; right: 42px; }

.avatar-face {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-face::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--skin-tone, #d7a16f);
}

.avatar-face::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 64%;
  height: 42%;
  border-radius: 38px 38px 20px 20px;
  transform: translateX(-50%);
  background: var(--shirt-tone, #3f73db);
}

.avatar-face-sand {
  --skin-tone: #d8a06c;
  --shirt-tone: #3f7df0;
  background: linear-gradient(180deg, #f7fbff 0 28%, #2f558f 28% 45%, #d4e3ff 45% 100%);
}

.avatar-face-light {
  --skin-tone: #efc89d;
  --shirt-tone: #5f86ef;
  background: linear-gradient(180deg, #eef5ff 0 26%, #6b8fd9 26% 42%, #dbe8ff 42% 100%);
}

.avatar-face-deep {
  --skin-tone: #855136;
  --shirt-tone: #4c7ee8;
  background: linear-gradient(180deg, #f2f7ff 0 28%, #243f71 28% 45%, #d7e4ff 45% 100%);
}

.avatar-face-tan {
  --skin-tone: #c98c5a;
  --shirt-tone: #5b83eb;
  background: linear-gradient(180deg, #eff6ff 0 26%, #567bc8 26% 42%, #d7e4ff 42% 100%);
}

.avatar-face-brown {
  --skin-tone: #8d5a3a;
  --shirt-tone: #3368de;
  background: linear-gradient(180deg, #edf5ff 0 28%, #1d3565 28% 45%, #d2e2ff 45% 100%);
}

.system-hub {
  position: absolute;
  top: 56px;
  right: -2px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(214, 229, 255, 0.72));
  box-shadow: 0 16px 28px rgba(11, 45, 109, 0.18);
  z-index: 1;
}

.system-hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(126, 169, 244, 0.66);
}

.ring-outer {
  inset: 6px;
}

.ring-inner {
  inset: 16px;
  border-style: dashed;
  border-color: rgba(84, 130, 230, 0.4);
}

.system-hub-core {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4d84ff, #255dde);
  box-shadow: 0 0 0 6px rgba(92, 152, 255, 0.18);
}

.pill-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  flex: 0 0 24px;
}

.pill-icon::before,
.pill-icon::after {
  content: "";
  position: absolute;
}

.pill-icon-pin::before {
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pill-icon-pin::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.pill-icon-mail::before {
  width: 13px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 2px;
}

.pill-icon-mail::after {
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 7px;
}

.pill-icon-brief::before {
  width: 13px;
  height: 9px;
  bottom: 5px;
  border: 2px solid #fff;
  border-radius: 2px;
}

.pill-icon-brief::after {
  top: 5px;
  width: 8px;
  height: 4px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.hero-pill {
  position: absolute;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  min-width: 214px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.96rem;
  color: #fff;
  background: linear-gradient(135deg, #17429e 0%, #0b1f56 100%);
  box-shadow: 0 16px 28px rgba(8, 29, 77, 0.28);
  z-index: 1;
}

.pill-top { top: 34px; }
.pill-middle { top: 98px; }
.pill-bottom { top: 162px; }

.content-section {
  padding: 56px 0;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 240, 255, 0.76)),
    radial-gradient(circle at 50% 110%, rgba(31, 100, 255, 0.14), transparent 38%);
  z-index: -1;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading-left {
  margin-bottom: 28px;
}

.section-heading-centered {
  text-align: center;
}

.section-heading-light h2,
.section-heading-light p {
  color: #fff;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  max-width: 580px;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.subtitle-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.subtitle-line::after {
  content: "";
  flex: 1;
  min-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 72, 162, 0.22), rgba(26, 72, 162, 0.02));
}

#offer .subtitle-line {
  display: block;
}

#offer .subtitle-line::after {
  content: none;
}

#offer .subtitle-line p {
  max-width: none;
  width: 100%;
}

#work .subtitle-line::after {
  display: none;
}

#work .subtitle-line p {
  max-width: none;
  width: 100%;
}

.work-intro-list {
  margin: 12px 0 0 0;
  padding-left: 20px;
  color: var(--color-primary-dark);
}

.work-intro-list li {
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.5;
}

.subtitle-line-center {
  justify-content: center;
  text-align: center;
}

.subtitle-line-center p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.subtitle-line-center::before,
.subtitle-line-center::after {
  content: "";
  width: min(18vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 72, 162, 0.03), rgba(26, 72, 162, 0.24), rgba(26, 72, 162, 0.03));
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.project-card,
.stats-bar,
.logo-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border-radius: var(--radius-md);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--color-primary-soft), #f8fbff);
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.info-card h3,
.project-copy h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
}

.info-card p,
.project-copy p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.process-layout {
  align-items: start;
}

.bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

.expertise-heading {
  margin-bottom: 28px;
}

.tech-stack-launch {
  margin-bottom: 22px;
}

.tech-stack-button {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 24px;
  border: 1px solid rgba(117, 157, 233, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 241, 255, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(61, 182, 255, 0.2), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(82, 117, 255, 0.14), transparent 30%);
  box-shadow:
    0 22px 42px rgba(20, 38, 82, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tech-stack-button::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 56%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.tech-stack-button:hover,
.tech-stack-button:focus-visible,
.tech-stack-button[aria-expanded="true"] {
  transform: translateY(-2px);
  border-color: rgba(61, 114, 255, 0.34);
  box-shadow:
    0 28px 48px rgba(20, 38, 82, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.tech-stack-button-art {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  object-fit: contain;
  padding: 8px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.98)),
    radial-gradient(circle at 30% 20%, rgba(61, 182, 255, 0.14), transparent 34%);
  border: 1px solid rgba(13, 33, 66, 0.06);
  box-shadow:
    0 10px 24px rgba(20, 38, 82, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tech-stack-button-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.tech-stack-button-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(61, 114, 255, 0.08);
  color: #3159d9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-stack-button-copy strong {
  color: var(--color-primary-dark);
  font-size: 1.34rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.tech-stack-button-copy span {
  color: var(--color-text-soft);
  line-height: 1.55;
}

.tech-stack-button-copy > span:last-child {
  max-width: 720px;
}

.tech-stack-button-action {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.tech-stack-button-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 33, 66, 0.08);
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.tech-stack-button-arrow {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3c72ff, #5cbcff);
  box-shadow:
    0 14px 24px rgba(44, 102, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.tech-stack-button-arrow::before,
.tech-stack-button-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2.5px;
  border-radius: 999px;
  background: #fff;
  transform-origin: right center;
}

.tech-stack-button-arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.tech-stack-button-arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tech-stack-button[aria-expanded="true"] .tech-stack-button-arrow::before,
.tech-stack-button[aria-expanded="true"] .tech-stack-button-arrow::after {
  transform-origin: center center;
}

.tech-stack-button[aria-expanded="true"] .tech-stack-button-arrow::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.tech-stack-button[aria-expanded="true"] .tech-stack-button-arrow::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.tech-stack-panel[hidden] {
  display: none;
}

.tech-stack-panel {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 255, 0.97)),
    radial-gradient(circle at 100% 0%, rgba(61, 182, 255, 0.16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(88, 128, 255, 0.08), transparent 30%);
  border: 1px solid rgba(70, 114, 210, 0.14);
  box-shadow:
    0 18px 38px rgba(20, 38, 82, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.tech-stack-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 78px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.tech-stack-panel-header {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.tech-stack-panel-header h3 {
  margin: 0 0 8px;
  font-size: 1.72rem;
  color: var(--color-primary-dark);
  letter-spacing: -0.03em;
}

.tech-stack-panel-header p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.tech-stack-panel-intro {
  min-width: 0;
  max-width: 640px;
}

.tech-stack-panel-count {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(70, 114, 210, 0.12);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.tech-accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.tech-accordion-card {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.96));
  border: 1px solid rgba(70, 114, 210, 0.08);
  box-shadow: 0 10px 22px rgba(20, 38, 82, 0.06);
  overflow: hidden;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease, background 0.28s ease;
}

.tech-accordion-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(20, 38, 82, 0.08);
}

.tech-accordion-card.is-open {
  border-color: rgba(61, 114, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 255, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(79, 149, 255, 0.08), transparent 28%);
  box-shadow: 0 18px 32px rgba(20, 38, 82, 0.1);
}

.tech-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.tech-accordion-icon {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.tech-accordion-icon::before,
.tech-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: translateY(-50%);
}

.tech-accordion-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.tech-accordion-card.is-open .tech-accordion-icon::after {
  opacity: 0;
}

.tech-accordion-content {
  padding: 2px 20px 20px;
}

.tech-stack-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-stack-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--color-primary-dark);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.35;
}

.tech-stack-item img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.tech-section-title {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.tech-carousel + .tech-section-title {
  margin-top: 26px;
}

.tech-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(230, 239, 255, 0.72)),
    radial-gradient(circle at 85% 20%, rgba(61, 182, 255, 0.14), transparent 24%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.tech-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 176px;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 12px 14px;
}

.tech-logo {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  min-height: 126px;
  padding: 16px 14px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #edf4ff);
  border: 1px solid rgba(13, 33, 66, 0.06);
  text-align: center;
}

.tech-logo img,
.tech-logo svg {
  max-width: 100%;
  width: auto;
  height: 35px;
  object-fit: contain;
  object-position: center;
}

.tech-logo span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary-dark);
}

.tech-carousel.is-marquee .tech-carousel-track {
  animation: tech-marquee 110s linear infinite;
}

.tech-carousel.is-marquee:hover .tech-carousel-track {
  animation-play-state: paused;
}

@keyframes tech-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 100%;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
  border: 1px solid rgba(13, 33, 66, 0.08);
  box-shadow: 0 12px 30px rgba(22, 45, 92, 0.1);
}

.service-card h3 {
  margin: 0 0 22px;
  color: #3044c8;
  font-size: 1.06rem;
  font-weight: 500;
}

.service-card ul {
  margin: 0;
  padding-left: 20px;
}

.service-card li {
  margin-bottom: 8px;
  color: #111111;
  font-size: 1rem;
  line-height: 1.4;
}

.stats-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.stats-bar::before {
  content: none;
}

.stat-chip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 86px;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(13, 33, 66, 0.05);
  box-shadow: 0 8px 18px rgba(20, 38, 82, 0.04);
}

.stat-copy {
  min-width: 0;
}

.stat-copy strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.stat-copy span {
  display: block;
  margin-top: 6px;
  color: var(--color-text-soft);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.24;
  white-space: nowrap;
}

.stat-arrow {
  display: none;
}

.stat-figure {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(180deg, #edf4ff, #dce8ff);
  box-shadow: none;
}

.stat-figure::before,
.stat-figure::after {
  content: "";
  position: absolute;
}

.stat-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.stat-figure-headset::before {
  inset: 10px 14px 20px;
  border: 4px solid #6b92dc;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.stat-figure-headset::after {
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2c66d8, #73a6ff);
}

.stat-figure-glasses::before {
  left: 8px;
  right: 8px;
  top: 12px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 26% 50%, transparent 9px, #4d72bc 9px 11px, transparent 11px),
    radial-gradient(circle at 74% 50%, transparent 9px, #4d72bc 9px 11px, transparent 11px),
    linear-gradient(#4d72bc, #4d72bc) center 50% / 12px 2px no-repeat;
}

.stat-figure-glasses::after {
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 18px;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, #3f6fd7, #7ca8ff);
}

.stat-figure-shield::before {
  left: 13px;
  right: 13px;
  top: 8px;
  bottom: 10px;
  background: linear-gradient(180deg, #2d67dc, #7aa4ff);
  clip-path: polygon(50% 0%, 100% 18%, 100% 55%, 50% 100%, 0% 55%, 0% 18%);
}

.stat-figure-shield::after {
  left: 23px;
  top: 20px;
  width: 8px;
  height: 16px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.stat-figure-badge::before {
  left: 11px;
  top: 9px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #9dc1ff, #356fe1);
}

.stat-figure-badge::after {
  left: 18px;
  bottom: 7px;
  width: 18px;
  height: 16px;
  background: linear-gradient(180deg, #2e6ddc, #6c99fa);
  clip-path: polygon(0 0, 50% 35%, 100% 0, 84% 100%, 50% 72%, 16% 100%);
}

.stat-figure-certificate::before {
  left: 10px;
  right: 10px;
  top: 9px;
  bottom: 9px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7fbff, #dce8ff);
  border: 2px solid #5b84d8;
}

.stat-figure-certificate::after {
  left: 19px;
  top: 17px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7fb1ff, #2c63d5);
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-panel span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.feature-panel span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
  border: 1px solid rgba(13, 33, 66, 0.08);
  box-shadow: 0 12px 30px rgba(22, 45, 92, 0.1);
}

.feature-card::before {
  display: none;
}

.feature-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.3;
  color: #3044c8;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: #111111;
  line-height: 1.5;
}

.industry-section {
  margin-top: 14px;
  padding: 22px 0 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(234, 242, 255, 0.64)),
    radial-gradient(circle at 15% 0%, rgba(61, 182, 255, 0.08), transparent 22%);
  border-top: 1px solid rgba(13, 33, 66, 0.05);
  border-bottom: 1px solid rgba(13, 33, 66, 0.05);
}

.industry-hero {
  padding: 48px 0 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.92));
}

.industry-grid,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
}

.industry-chip {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 18px 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(13, 33, 66, 0.08);
  box-shadow: 0 10px 26px rgba(20, 38, 82, 0.1);
  color: #111111;
  font-size: 1rem;
  line-height: 1.35;
}

.industry-deliverables {
  margin-top: 0;
  padding: 48px 0 40px;
  background:
    linear-gradient(180deg, rgba(232, 241, 255, 0.9), rgba(255, 255, 255, 0.96));
}

.industry-tabs-section {
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.94), rgba(235, 243, 255, 0.96));
}

.industry-tabs-shell {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 255, 0.96)),
    radial-gradient(circle at top right, rgba(61, 182, 255, 0.08), transparent 24%);
  border: 1px solid rgba(13, 33, 66, 0.06);
  box-shadow: 0 22px 42px rgba(14, 45, 108, 0.08);
}

.industry-tabs-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(222, 233, 255, 0.72);
}

.industry-tab-button {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-soft);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.industry-tab-button.is-active {
  background: linear-gradient(135deg, var(--color-primary), #4e88ff);
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 100, 255, 0.22);
}

.industry-tab-button:focus-visible,
.case-tab-button:focus-visible,
.tech-accordion-trigger:focus-visible,
.case-readmore:focus-visible,
.case-arrow:focus-visible,
.nav-toggle:focus-visible,
.case-modal-close:focus-visible,
.offshore-footer-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 100, 255, 0.18);
}

.industry-tab-panel[hidden] {
  display: none !important;
}

.industry-tab-panel .section-heading {
  margin-bottom: 22px;
}

.platform-card {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fefefe);
  border: 1px solid rgba(13, 33, 66, 0.08);
  box-shadow: 0 10px 26px rgba(20, 38, 82, 0.1);
  color: #111111;
  font-size: 0.98rem;
  line-height: 1.4;
}

.case-studies-section {
  padding-top: 56px;
}

.case-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(222, 233, 255, 0.72);
}

.case-tab-button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-soft);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.case-tab-button.is-active {
  background: linear-gradient(135deg, var(--color-primary), #4e88ff);
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 100, 255, 0.22);
}

.case-tab-panel[hidden] {
  display: none !important;
}

.case-tab-panel .case-category-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 18px;
}

.case-tab-panel .case-category-header h3 {
  display: none;
}

.case-category + .case-category {
  margin-top: 34px;
}

.case-category-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.case-category-label {
  margin: 0 0 8px;
  color: var(--color-text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-category-header h3 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  justify-self: start;
}

.case-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}

.case-arrow {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(79, 127, 220, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 242, 255, 0.96)),
    radial-gradient(circle at 30% 20%, rgba(97, 184, 255, 0.18), transparent 34%);
  color: transparent;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 12px 24px rgba(20, 38, 82, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.case-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2.25px solid #153a86;
  border-right: 2.25px solid #153a86;
  transform-origin: center;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.case-arrow-prev::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

.case-arrow-next::before {
  transform: translate(-58%, -50%) rotate(45deg);
}

.case-arrow:hover:not(:disabled),
.case-arrow:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(61, 114, 255, 0.34);
  box-shadow:
    0 16px 28px rgba(20, 38, 82, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.case-arrow:hover:not(:disabled)::before,
.case-arrow:focus-visible:not(:disabled)::before {
  border-color: #0f2f6d;
}

.case-arrow:disabled {
  opacity: 0.38;
  cursor: default;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 244, 252, 0.82));
}

.case-arrow:disabled::before {
  border-color: rgba(21, 58, 134, 0.42);
}

.case-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.case-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 420px);
  gap: 22px;
  width: max-content;
  padding: 4px 6px 10px 2px;
  scroll-snap-type: x proximity;
}

.case-grid-compact {
  grid-auto-columns: minmax(360px, 420px);
}

.case-card {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  border: 1px solid rgba(13, 33, 66, 0.08);
  scroll-snap-align: start;
}

.case-number {
  display: none;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(31, 100, 255, 0.08);
  color: var(--color-primary);
  font-size: 0.83rem;
  font-weight: 700;
}

.case-card h4 {
  margin: 14px 0 8px;
  font-size: 1.14rem;
  line-height: 1.3;
  color: var(--color-text);
}

.case-summary {
  margin: 0 0 16px;
  color: var(--color-primary-dark);
  font-weight: 600;
}

.case-card p {
  margin: 0 0 10px;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.case-card p:nth-of-type(2),
.case-card p:nth-of-type(3),
.case-card p:nth-of-type(4) {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(13, 33, 66, 0.08);
}

.case-card p strong {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 8px;
  color: var(--color-text);
}

.case-card p strong::before {
  content: "";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid rgba(74, 124, 255, 0.12);
  border-radius: 8px;
  background-color: rgba(74, 124, 255, 0.06);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.case-card p:nth-of-type(2) strong::before {
  background-image: url("assets/icons/custom/overview.png") !important;
}

.case-card p:nth-of-type(3) strong::before {
  background-image: url("assets/icons/custom/challenge.png") !important;
}

.case-card p:nth-of-type(4) strong::before {
  background-image: url("assets/icons/custom/approach.png") !important;
}

.case-card p:nth-of-type(5) strong::before {
  background-image: url("assets/icons/custom/outcome.png") !important;
}

.case-readmore {
  margin-top: auto;
  align-self: flex-start;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #4d8dff);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 100, 255, 0.2);
}

.case-modal[hidden] {
  display: none;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 70, 0.58);
  backdrop-filter: blur(6px);
}

.case-modal-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: min(calc(100vh - 48px), 860px);
  margin: 0;
  padding: 32px 30px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  box-shadow: 0 28px 64px rgba(12, 33, 84, 0.24);
  overflow: hidden;
  outline: none;
}

.case-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 33, 66, 0.06);
  color: var(--color-text);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  font-family: 'Noto Sans', sans-serif;	
}

.case-modal-close:hover,
.case-modal-close:focus-visible {
  background: rgba(13, 33, 66, 0.12);
  transform: scale(1.04);
}

.case-modal-dialog h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--color-text);
}

.case-modal-dialog p {
  margin: 0;
  color: var(--color-text-soft);
}

.case-modal-gate {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.case-modal-gate[hidden],
.case-modal-detail[hidden] {
  display: none;
}

.case-modal-eyebrow {
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-modal-intro {
  max-width: 620px;
  margin: 0;
  text-align: left;
  line-height: 1.5;
  font-size: 1rem;
}

.case-email-form,
.case-shortcode-wrap .wpcf7 form {
  display: grid;
  gap: 18px;
  margin-top: 8px;
  align-items: start;
}

.case-shortcode-wrap .wpcf7 {
  margin-top: 8px;
}

.case-shortcode-wrap .wpcf7 p {
  margin: 0;
}

.case-shortcode-wrap .wpcf7-form-control-wrap {
  display: block;
}

.case-email-form input,
.case-shortcode-wrap .wpcf7 input[type="text"],
.case-shortcode-wrap .wpcf7 input[type="email"],
.case-shortcode-wrap .wpcf7 input[type="tel"],
.case-shortcode-wrap .wpcf7 textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(13, 33, 66, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.case-shortcode-wrap .wpcf7 textarea {
  min-height: 132px;
  padding-top: 16px;
  resize: vertical;
}

.case-email-form input::placeholder,
.case-shortcode-wrap .wpcf7 input::placeholder,
.case-shortcode-wrap .wpcf7 textarea::placeholder {
  color: rgba(13, 33, 66, 0.48);
}

.case-email-form input:focus,
.case-shortcode-wrap .wpcf7 input:focus,
.case-shortcode-wrap .wpcf7 textarea:focus {
  border-color: rgba(31, 100, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(31, 100, 255, 0.12);
  background: #fff;
  outline: none;
}

.case-form-error {
  margin: -4px 0 0;
  color: #c63c45;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.case-email-form button,
.case-shortcode-wrap .wpcf7 input[type="submit"] {
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), #4d8dff);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(31, 100, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.case-email-form button:hover,
.case-email-form button:focus-visible,
.case-shortcode-wrap .wpcf7 input[type="submit"]:hover,
.case-shortcode-wrap .wpcf7 input[type="submit"]:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(31, 100, 255, 0.26);
  filter: brightness(1.02);
  outline: none;
}

.case-shortcode-wrap .wpcf7-response-output,
.case-shortcode-wrap .wpcf7-not-valid-tip {
  margin: 0;
  font-size: 0.92rem;
}

.case-modal-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: min(calc(100vh - 124px), 720px);
  overflow-y: auto;
  padding-right: 8px;
}

.case-modal-detail-header {
  padding-right: 30px;
}

.case-modal-detail-title {
  margin-bottom: 8px;
}

.case-modal-detail-subtitle {
  margin-bottom: 0;
  color: var(--color-primary-dark);
  font-weight: 600;
  text-align: left;
}

.case-modal-detail-body {
  display: grid;
  gap: 16px;
}

.case-detail-content {
  display: grid;
  gap: 16px;
}

.case-detail-block {
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(13, 33, 66, 0.08);
}

.case-detail-block h5 {
  margin: 0 0 10px;
  color: var(--color-primary-dark);
  font-size: 1rem;
}

.case-detail-block p {
  text-align: left;
  line-height: 1.65;
}

.case-detail-block p:last-child {
  margin-bottom: 0;
}

.case-carousel::-webkit-scrollbar {
  display: none;
}

body.case-modal-open {
  overflow: hidden;
}

.cta-section {
  position: relative;
  padding: 34px 0 40px;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: -20px 0 0;
  background:
    radial-gradient(60% 120px at 15% 10%, rgba(31, 100, 255, 0.09), transparent 60%),
    radial-gradient(60% 120px at 85% 10%, rgba(61, 182, 255, 0.09), transparent 60%);
  pointer-events: none;
}

.cta-box {
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
  padding: 54px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% -20%, rgba(61, 182, 255, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 239, 255, 0.92));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.05em;
}

.cta-box p {
  margin: 0;
  color: var(--color-text-soft);
}

.cta-subtitle {
  max-width: 520px;
  text-align: center;
}

.offshore-footer-bar {
  top: 0;
  padding: 0;
  border-top: 1px solid rgba(13, 33, 66, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(236, 243, 255, 0.9));
}

.offshore-footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
}

.offshore-footer-copy {
  flex: 0 1 auto;
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.94rem;
  text-align: left;
}

.offshore-footer-social {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.offshore-footer-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(13, 33, 66, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary-dark);
  box-shadow: 0 8px 18px rgba(20, 38, 82, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.offshore-footer-link:hover,
.offshore-footer-link:focus-visible {
  transform: translateY(-2px);
  color: var(--color-primary);
  box-shadow: 0 14px 24px rgba(20, 38, 82, 0.14);
}

.offshore-footer-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .card-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tech-accordion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    align-items: start;
  }

  .tech-carousel-track {
    grid-auto-columns: 162px;
  }
}

@media (max-width: 860px) {
  .tech-stack-button {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    padding: 18px;
  }

  .tech-stack-button-art {
    width: 68px;
    height: 68px;
  }

  .tech-stack-button-copy strong {
    font-size: 1.14rem;
  }

  .tech-stack-button-action {
    grid-column: 1 / -1;
    width: 100%;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    justify-items: stretch;
  }

  .tech-stack-panel {
    padding: 22px 18px 20px;
  }

  .tech-stack-panel-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .tech-accordion-grid {
    grid-template-columns: 1fr;
  }

  .offshore-footer-shell {
    flex-direction: column;
    row-gap: 16px;
    padding: 18px 0 22px;
  }

  .offshore-footer-copy,
  .offshore-footer-social {
    align-self: center;
  }

  .nav-shell {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
    position: relative;
    z-index: 31;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    z-index: 30;
    width: auto;
    height: auto;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(8, 26, 70, 0.98), rgba(12, 39, 95, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu,
  .nav-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .menu li {
    width: 100%;
  }

  .menu a,
  .button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-grid,
  .split-layout,
  .card-grid-three,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-chip {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  .hero-section {
    padding-top: 48px;
  }

  .team-board {
    min-height: 420px;
  }

  .hero-stack-carousel {
    inset: 28px 24px 82px;
  }

  .hero-stack-slide {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 24px 22px 22px;
  }

  .hero-stack-copy p {
    max-width: none;
  }

  .hero-pill {
    right: 16px;
    left: 16px;
    justify-content: center;
  }

  .pill-top { top: 246px; }
  .pill-middle { top: 308px; }
  .pill-bottom { top: 370px; }

  .subtitle-line {
    align-items: flex-start;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid,
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-tabs-shell {
    padding: 18px;
  }

  .case-grid,
  .case-grid-compact {
    grid-auto-columns: minmax(320px, 82vw);
  }
}

@media (max-width: 560px) {
  .offshore-container {
    width: min(calc(100% - 24px), var(--offshore-container));
  }

  .content-section {
    padding: 40px 0;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .hero-text,
  .section-heading p,
  .info-card p,
  .project-copy p {
    font-size: 0.98rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .industry-hero,
  .industry-deliverables {
    padding-top: 48px;
  }

  .industry-tabs-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .industry-tab-button {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    border: 1px solid rgba(13, 33, 66, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.98));
    box-shadow: 0 10px 22px rgba(20, 38, 82, 0.06);
  }

  .tech-carousel-track {
    grid-auto-columns: 148px;
  }

  .tech-carousel.is-marquee .tech-carousel-track {
    animation-duration: 92s;
  }

  .industry-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .case-category-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-tabs-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .case-tab-button {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    border: 1px solid rgba(13, 33, 66, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.98));
    box-shadow: 0 10px 22px rgba(20, 38, 82, 0.06);
  }

  .case-carousel-controls {
    justify-self: center;
  }

  .case-grid,
  .case-grid-compact {
    grid-auto-columns: minmax(300px, 88vw);
  }

  .case-modal-dialog {
    width: min(100%, 860px);
    max-height: calc(100vh - 20px);
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .case-modal-detail {
    max-height: calc(100vh - 130px);
    padding-right: 2px;
  }

  .case-modal-close {
    top: 12px;
    right: 12px;
  }

  .case-modal-intro {
    max-width: none;
    font-size: 0.98rem;
  }

  .case-email-form {
    gap: 14px;
    margin-top: 4px;
  }

  .case-email-form input {
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.98rem;
  }

  .case-email-form button {
    min-height: 50px;
  }

  .team-board {
    min-height: 460px;
  }

  .hero-stack-carousel {
    inset: 22px 18px 90px;
  }

  .hero-stack-slide {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 18px 20px;
  }

  .hero-stack-icon {
    width: 52px;
    height: 52px;
  }

  .hero-stack-copy h3 {
    font-size: 1.12rem;
  }

  .hero-stack-copy p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-stack-labels {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .cta-box {
    padding: 46px 18px;
  }

  .stat-chip {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
}

.hero-image-board {
  min-height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-image-board::before,
.hero-image-board::after {
  content: none;
}

.hero-image-board .hero-banner-art {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 26px 42px rgba(8, 31, 86, 0.22));
}

.hero-stack-media {
  min-height: 320px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-stack-media .hero-stack-carousel {
  inset: 0;
}

.hero-stack-media .hero-stack-slide {
  display: block;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform-origin: 50% 50%;
}

@media (max-width: 520px) {
  .case-modal {
    padding: 12px;
  }

  .case-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 22px 16px 18px;
    border-radius: 20px;
  }

  .case-modal-dialog h3 {
    font-size: 1.4rem;
    line-height: 1.15;
    padding-right: 44px;
  }

  .case-modal-gate {
    gap: 16px;
  }

  .case-modal-intro {
    line-height: 1.55;
  }

  .case-email-form {
    gap: 12px;
  }

  .case-email-form input,
  .case-email-form button {
    min-height: 50px;
  }
}

.hero-stack-media .hero-stack-slide::before {
  content: none;
}

.hero-stack-figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-stack-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(126, 255, 239, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(7, 20, 56, 0.01), rgba(7, 20, 56, 0.03) 34%, rgba(7, 20, 56, 0.14) 58%, rgba(4, 12, 32, 0.54) 100%);
  pointer-events: none;
}

.hero-stack-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(1.03) contrast(1.02);
}

.hero-stack-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-stack-kicker,
.hero-stack-index {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stack-kicker {
  padding: 0 12px;
  background: rgba(77, 239, 223, 0.1);
  border: 1px solid rgba(119, 255, 242, 0.18);
  color: #9bece7;
}

.hero-stack-index {
  min-width: 38px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(157, 205, 255, 0.16);
  color: rgba(225, 236, 255, 0.84);
}

.hero-stack-media .hero-stack-copy {
  position: absolute;
  left: auto;
  right: 18px;
  bottom: 18px;
  transform: none;
  z-index: 2;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-stack-media .hero-stack-copy h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1vw, 1.72rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(2, 6, 20, 0.5);
  text-align: right;
}

.hero-stack-slide:not(.is-active) .hero-stack-copy {
  opacity: 0;
  transform: translateY(10px);
}

.hero-stack-slide.is-active .hero-stack-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-stack-media .hero-stack-copy p {
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(228, 238, 255, 0.9);
  text-shadow: 0 5px 16px rgba(2, 6, 20, 0.22);
}

.hero-stack-media .hero-stack-labels {
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stack-media .hero-stack-label {
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(154, 200, 255, 0.08);
}

.hero-stack-media .hero-stack-label.is-active {
  background: linear-gradient(180deg, rgba(66, 121, 255, 0.18), rgba(27, 72, 191, 0.16));
  border-color: rgba(127, 186, 255, 0.16);
}

@media (max-width: 980px) {
  .hero-image-board {
    min-height: auto;
  }

  .hero-stack-media {
    min-height: 292px;
  }

  .hero-stack-media .hero-stack-carousel {
    inset: 0;
  }

  .hero-stack-media .hero-stack-copy {
    right: 16px;
    bottom: 16px;
    min-width: 0;
    max-width: none;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .hero-image-board {
    min-height: auto;
  }

  .hero-stack-media {
    min-height: 228px;
  }

  .hero-stack-media .hero-stack-carousel {
    inset: 0;
  }

  .hero-stack-media .hero-stack-figure {
    border-radius: 16px;
  }

  .hero-stack-media .hero-stack-copy {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    max-width: none;
    padding: 0;
  }

  .hero-stack-media .hero-stack-copy h3 {
    font-size: 0.94rem;
  }

  .hero-stack-media .hero-stack-copy p {
    font-size: 0.92rem;
    line-height: 1.52;
  }
	
  .stat-copy {
    flex: 1 1 0;
    overflow: hidden;
  }

  .stat-label-ellipsis-mobile {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .stat-label-ellipsis-mobile br {
    display: none;
  }	
}
