:root {
  --primary-color: #223d92;
  --primary-white: #3498db;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-display: "Work Sans", sans-serif;
  --section-divider: rgba(31, 60, 136, 0.08);
  --card-lift: -2px;
  --subtitle-color: #222;
  --cta-border-radius: 999px;
  --button-border-radius: 4px;
  --outer-border-radius: 8px;
  --inner-border-radius: 4px;
  --primary-box-shadow:
    rgba(50, 50, 93, 0.1) 0px 6px 12px -2px, rgba(0, 0, 0, 0.1) 0px 3px 7px -3px;
  --secondary-box-shadow:
    rgba(50, 50, 93, 0.1) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.1) 0px 18px 36px -18px;
  --surface: #ffffff;
  --surface-muted: #e9edf3;
  --text-dark: #333333;
  --border-subtle: #e4e6ec;
  --border-strong: #d7dbe5;
  --map-bg: #d4dadc;
  --legend-active-bg: #f0f4ff;
  --focus-ring: #223d92;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-body);
  scrollbar-gutter: stable;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#home {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background:
    url("/src/img/home/hero-fallback.webp") center / cover no-repeat,
    #000;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  will-change: opacity, transform;
}

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

.scroll-reveal[data-sr-delay="1"] {
  transition-delay: 0.05s;
}
.scroll-reveal[data-sr-delay="2"] {
  transition-delay: 0.1s;
}
.scroll-reveal[data-sr-delay="3"] {
  transition-delay: 0.15s;
}
.scroll-reveal[data-sr-delay="4"] {
  transition-delay: 0.2s;
}
.scroll-reveal[data-sr-delay="5"] {
  transition-delay: 0.25s;
}
.scroll-reveal[data-sr-delay="6"] {
  transition-delay: 0.3s;
}
.scroll-reveal[data-sr-delay="7"] {
  transition-delay: 0.35s;
}
.scroll-reveal[data-sr-delay="8"] {
  transition-delay: 0.4s;
}
.scroll-reveal[data-sr-delay="9"] {
  transition-delay: 0.45s;
}
.scroll-reveal[data-sr-delay="10"] {
  transition-delay: 0.5s;
}
.section-locations {
  background: var(--surface-muted);
}
.map-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}
#map {
  width: 100%;
  max-width: 1000px;
  height: 520px;
  border-radius: var(--outer-border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--primary-box-shadow);
  z-index: 0;
  background: var(--map-bg);
}
.map-touch-hint {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.78);
  color: #f8fafc;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 999px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  pointer-events: none;
  z-index: 500;
}
.map-touch-hint.is-hidden {
  opacity: 0;
  transform: translateY(6px);
}
.map-touch-active .map-touch-hint {
  opacity: 0;
  transform: translateY(6px);
}
@media (max-width: 600px) {
  #map {
    height: 440px;
  }
}
.map-legend {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  padding: 16px 18px;
  border-radius: var(--outer-border-radius);
  min-width: 180px;
  font-size: 0.95rem;
  color: var(--text-dark);
  box-shadow: var(--primary-box-shadow);
}
.map-legend-select {
  display: none;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--outer-border-radius);
  font: inherit;
  color: inherit;
  background: var(--surface);
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}
.map-legend-select:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.popup-photo {
  width: 100%;
  height: 180px;
  margin: 8px 0;
  overflow: hidden;
}
.popup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--inner-border-radius);
}
.popup-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
.popup-line {
  margin-top: 4px;
}
.popup-title + .popup-line {
  margin-top: 8px;
}
.popup-line--spaced {
  margin-top: 10px;
}
.popup-flag {
  width: 17px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.map-legend .legend-item.active {
  background: var(--legend-active-bg);
  border-radius: var(--outer-border-radius);
}

.leaflet-marker-icon.is-highlighted .dps-marker-inner {
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(45, 43, 202, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.map-legend h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  background: none;
  border: 0;
  padding: 6px 8px;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border-radius: var(--outer-border-radius);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.legend-group {
  margin-bottom: 6px;
}
.legend-children {
  padding-left: 18px;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 0.3s ease,
    opacity 0.22s ease,
    transform 0.22s ease,
    margin-top 0.22s ease;
}
.legend-group.is-expanded .legend-children {
  margin-top: 6px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.legend-item--parent {
  font-weight: 600;
}
.legend-item--child {
  font-size: 0.93rem;
}
.legend-caret {
  width: 14px;
  text-align: center;
  color: #5b6476;
  font-weight: 700;
}
.legend-item:hover {
  background: rgba(31, 60, 136, 0.08);
}
.legend-item:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.legend-dot.europe {
  background: #3e6ac8;
}
.legend-dot.belgium {
  background: #3e6ac8;
}
.legend-dot.netherlands {
  background: #3e6ac8;
}
.legend-dot.france {
  background: #3e6ac8;
}
.legend-dot.spain {
  background: #3e6ac8;
}
.legend-dot.africa {
  background: #82296e;
}
.legend-dot.china {
  background: #c2343b;
}
.legend-dot.unitedstates {
  background: #313682;
}
@media (max-width: 900px) {
  .map-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .map-legend {
    order: 2;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .map-legend-select {
    display: block;
  }
  .map-legend .legend-item {
    display: none;
  }
}
.leaflet-popup-content-wrapper {
  width: auto !important;
  max-width: none !important;
}
.leaflet-popup-content {
  width: 220px !important;
  max-width: none !important;
  margin-right: 20px !important;
}
.leaflet-container a.leaflet-popup-close-button {
  font-size: 24px !important;
  right: 0px !important;
  top: 0px !important;
  text-decoration: none !important;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  right: -2px !important;
  top: 1px !important;
  color: red !important;
  text-decoration: none !important;
  -webkit-animation: rotate-90-cw 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: rotate-90-cw 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.leaflet-container a {
  text-decoration: none !important;
}
.leaflet-container a:hover {
  text-decoration: underline !important;
}

@-webkit-keyframes rotate-90-cw {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotate-90-cw {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.leaflet-popup {
  max-width: none !important;
}
.popup-text {
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 220px;
}
.leaflet-control-attribution {
  display: none !important;
}
.dps-marker-inner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.dps-europe .dps-marker-inner {
  background: #3e6ac8;
}
.dps-africa .dps-marker-inner {
  background: #82296e;
}
.dps-china .dps-marker-inner {
  background: #c2343b;
}
.dps-unitedstates .dps-marker-inner {
  background: #313682;
}

.leaflet-marker-icon.dps-marker:hover .dps-marker-inner {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.landing-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}
.section {
  background: #ffffff;
  color: #222;
}
.section-about,
.section-careers,
.section-contact,
.section-locations {
  border-top: 1px solid var(--section-divider);
}
.timeline-parallax {
  border-top: 1px solid var(--section-divider);
}
.section .intro,
.section-about > p,
.section-locations > p,
.careers-header p,
.contact-header p,
.insights-hero p {
  line-height: 1.8;
  letter-spacing: 0;
}
.section-about,
.section-locations {
  position: relative;
  border-top: 1px solid rgba(31, 60, 136, 0.08);
}
.section:nth-of-type(even) {
  background: var(--surface-muted);
}
.section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.section p {
  max-width: 760px;
  line-height: 1.7;
  letter-spacing: -0.1px;
}
.section-about .about-lead {
  max-width: 960px;
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 600;
  color: #444;
  margin-bottom: 16px;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}
.about-copy p {
  max-width: 960px;
}
.about-partners {
  margin-top: 92px;
  width: 340px;
  height: 330px;
  transform: translateX(-20px);
  overflow: visible;
}
.about-partners-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-partners-viewport {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.about-partners-grid {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-partners-grid a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  aspect-ratio: 16 / 5;
  transition: transform 0.2s ease;
}
.about-partners-grid a:hover {
  transform: translateY(-2px);
}
.about-partners-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.about-partners-grid a:hover img {
  transform: scale(1.06);
}
.partner-logo--1 {
  top: 0;
  left: 0;
  animation: partnerFloat 5.6s ease-in-out infinite;
}
.partner-logo--2 {
  top: 76px;
  right: 0;
  animation: partnerFloat 6.2s ease-in-out infinite 0.5s;
}
.partner-logo--3 {
  top: 154px;
  left: 20px;
  animation: partnerFloat 5.8s ease-in-out infinite 0.9s;
}
.partner-logo--4 {
  top: 232px;
  right: 12px;
  animation: partnerFloat 6s ease-in-out infinite 1.2s;
}
@keyframes partnerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .partner-logo--1,
  .partner-logo--2,
  .partner-logo--3,
  .partner-logo--4 {
    animation: none;
  }
}
.mv-header .mv-about-lead {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 600;
  color: #444;
  margin-bottom: 16px;
}
.section-locations .locations-lead {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 600;
  color: #444;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-partners {
    margin-top: 20px;
    width: 100vw;
    height: auto;
    transform: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .about-partners-viewport {
    overflow: hidden;
  }

  .about-partners-grid {
    display: flex;
    gap: 14px;
    height: auto;
    width: max-content;
    transition: none;
  }

  .about-partners-grid a {
    position: relative;
    flex: 0 0 auto;
    width: 176px;
    height: 86px;
    min-height: 86px;
    max-width: 176px;
    padding: 6px 0;
    box-sizing: border-box;
    aspect-ratio: auto;
    animation: none !important;
  }

  .partner-logo--1,
  .partner-logo--2,
  .partner-logo--3,
  .partner-logo--4 {
    top: auto;
    right: auto;
    left: auto;
  }

  .about-partners-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .about-partners-grid a:hover,
  .about-partners-grid a:hover img {
    transform: none;
  }
}

.section-services,
.section-about,
.section-careers,
.section-contact,
.section-locations,
.section-policy,
.section-insights,
.section-mv,
.team-page {
  padding: 0 12vw 120px;
  padding-top: 16px;
}
.section-policy,
.section-insights,
.team-page {
  padding-top: 100px;
}
.section-mv {
  padding-top: 120px;
}
.section-policy {
  background: var(--surface-muted);
}
@media (max-width: 1900px) {
  .section-services,
  .section-about,
  .section-careers,
  .section-contact,
  .section-locations,
  .section-policy,
  .section-insights,
  .team-page {
    padding: 0 8vw 120px;
    padding-top: 16px;
  }
  .section-policy,
  .section-insights,
  .team-page {
    padding-top: 100px;
  }
}
@media (max-width: 700px) {
  .section h2,
  .careers-header h2,
  .contact-header h2 {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-partners {
    margin-top: 10px;
    width: 100vw;
    height: auto;
    transform: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }
  .about-partners-carousel {
    padding-inline: 0;
  }
  .about-partners-viewport {
    overflow: hidden;
  }
  .about-partners-grid {
    display: flex;
    gap: 10px;
    height: auto;
    width: max-content;
    transition: none;
  }
  .about-partners-grid a {
    position: relative;
    flex: 0 0 auto;
    width: clamp(128px, 42vw, 156px);
    height: clamp(66px, 22vw, 84px);
    min-height: 66px;
    max-width: 156px;
    padding: 6px 0;
    box-sizing: border-box;
    aspect-ratio: auto;
    animation: none !important;
  }
  .partner-logo--1,
  .partner-logo--2,
  .partner-logo--3,
  .partner-logo--4 {
    top: auto;
    right: auto;
    left: auto;
  }
  .about-partners-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .service-hero {
    margin-bottom: 12px;
    gap: 18px;
  }
  .service-copy {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .service-copy h3 {
    margin-bottom: 6px;
  }
  .service-band-split {
    gap: 16px;
    margin-bottom: 22px;
  }
  .section-services,
  .section-about,
  .section-careers,
  .section-contact,
  .section-locations,
  .section-policy,
  .section-insights,
  .section-mv,
  .team-page {
    padding: 0 4vw 120px;
    padding-top: 4px;
  }
  .section-policy,
  .section-insights,
  .section-mv,
  .team-page {
    padding-top: 100px;
  }
  .section-mv {
    padding-top: 120px;
  }
}
.section-about {
  padding-bottom: 60px;
}
.section-insights {
  margin-top: 14px;
}
.team-page {
  margin-top: 14px;
  background-color: var(--surface-muted);
}
.section-policy {
  margin-top: 64px;
  padding: 80px 0;
}
.section-insights {
  background-color: var(--surface-muted);
}

.bg-video {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.bg-video.is-active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left, rgba(8, 12, 31, 0.918), transparent),
    linear-gradient(
      to bottom,
      rgba(135, 175, 250, 0.28),
      rgba(255, 255, 255, 0.22)
    );
  z-index: 1;
}
.overlay-2 {
  position: absolute;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  opacity: 0.12;
  inset: 0;
  background-image: url(/src/img/home/rrdiagonal-line.png);
  background-repeat: repeat;
  background-size: 18px 18px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
  z-index: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.2rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0);
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(230, 230, 230, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease;
}
.nav.nav--hidden {
  transform: translateY(-100%);
}
.logo {
  position: relative;
  height: 80px;
  width: 80px;
  cursor: pointer;
}

.logo img {
  will-change: transform;
  position: absolute;
  top: 0;
  left: -10px;
  height: 80px;
  width: 80px;
  object-fit: contain;
  transform-origin: center;
  transition:
    transform 0.7s ease,
    opacity 0.1s ease 0.2s;
}

.logo-default {
  opacity: 1;
  z-index: 2;
}
@property --hole-size {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}
.logo-hover {
  opacity: 0;
  z-index: 1;
  --hole-size: 0%;
  -webkit-mask-image: radial-gradient(
    circle,
    transparent var(--hole-size),
    black calc(var(--hole-size) + 1%)
  );
  mask-image: radial-gradient(
    circle,
    transparent var(--hole-size),
    black calc(var(--hole-size) + 1%)
  );
  transition:
    transform 1s ease,
    opacity 0.4s ease;
}
.logo:hover .logo-hover {
  opacity: 1;
  transform: rotate(360deg);
  animation: holePulse 1s ease-in-out;
}
@keyframes holePulse {
  0% {
    --hole-size: 0%;
  }
  50% {
    --hole-size: 60%;
  }
  100% {
    --hole-size: 0%;
  }
}

.logo:hover .logo-default {
  transform: scale(1.24) translateY(4px);
  opacity: 0;
}

.logo:hover .logo-hover {
  opacity: 1;
  transform: rotate(360deg);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 1.25rem;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--primary-color);
  opacity: 0.85;
  padding-bottom: 4px;
}

.nav-links a:hover {
  opacity: 1;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 6px;
  border-radius: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 0.8rem 1.4rem;
  border-radius: var(--cta-border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  margin-left: 1.5rem;
  background: var(--primary-color);
  border: 2px solid transparent;
  border-color: transparent;
  color: #ffffff;
  z-index: 20;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease;
}
.nav-cta:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.nav-cta:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: #fbfbfc;
}

.nav-toggle,
.nav-mobile-menu,
.nav-overlay {
  display: none;
}
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
    width: 32px;
    height: 32px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
  }
  .nav-toggle:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 3px;
    border-radius: 6px;
  }
  .nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1f3c88;
    border-radius: 2px;
    transition: all 0.3s ease;
    z-index: 2001;
    transform: translateZ(0);
  }
  .nav-toggle span:nth-child(1) {
    top: 6px;
  }
  .nav-toggle span:nth-child(2) {
    top: 14px;
  }
  .nav-toggle span:nth-child(3) {
    top: 22px;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 200vh;
    background: #fff;
    padding: 80px 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    transition: right 0.3s ease;
    z-index: 2000;
  }
  .nav-mobile-menu.open {
    right: 0;
  }
  .nav-mobile-menu nav a {
    font-size: 1.4rem;
    padding: 10px 0;
    display: block;
    color: #1f3c88;
    text-decoration: none;
  }

  .nav-mobile-menu nav a:hover {
    text-decoration: underline;
  }
  .nav-mobile-cta {
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    border: 2px solid transparent;
    padding: 0.8rem 1.4rem;
    border-radius: var(--cta-border-radius);
    cursor: pointer;
    background: var(--primary-color);
    border-color: transparent;
    color: #ffffff;
    transition:
      background 0.4s ease,
      color 0.4s ease,
      border-color 0.4s ease,
      transform 0.35s ease;
  }
  .nav-mobile-cta:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 3px;
  }
  .nav-mobile-cta:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: #fbfbfc;
  }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    height: 10000%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1500;
  }
  .nav-overlay.show {
    opacity: 1;
    pointer-events: all;
  }
}

.hero {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 4rem);
  min-height: calc(100svh - 4rem);
  display: flex;
  padding: 120px 8vw 18vh;

  align-items: flex-end;
}
.hero-title {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(10px);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-carousel {
  position: relative;
  max-width: 40rem;
  min-height: 5rem;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 0.9s ease,
    opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}

.hero-slide.exit-right {
  transform: translateX(100%);
  opacity: 0;
}

.hero-slide.enter-right {
  transform: translateX(100%);
  opacity: 0;
}

.hero-slide.enter-left {
  transform: translateX(-100%);
  opacity: 0;
}
.hero-slide p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-indicators {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.hero-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.hero-dot.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.15);
}
.hero-content {
  max-width: 800px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
  word-spacing: -0.4px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}
.hero p {
  font-size: 1rem;
  letter-spacing: -0.1px;
  line-height: 1.55;
  max-width: 42rem;
  opacity: 0.9;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2.8rem 0 0.8rem;
}

.btn {
  border-radius: var(--cta-border-radius);
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-weight: 600;
}
.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}
.btn.primary {
  background: #ffffff;
  color: #000;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease;
}
.btn.primary:hover {
  color: white;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}
.btn.ghost {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease;
}
.btn.ghost:hover {
  border-color: #223d92;
  background: rgba(255, 255, 255, 0.15);
}
.scroll-hint-bar {
  position: absolute;
  background-color: white;
  height: 36px;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.card-fade-in {
  opacity: 0;
  animation: cardFadeIn 0.35s ease forwards;
}
@keyframes cardFadeIn {
  to {
    opacity: 1;
  }
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  margin-bottom: 40px;
  background: #ffffff;
}
.logo-track {
  display: flex;
  align-items: center;
  --logo-gap: 64px;
  gap: var(--logo-gap);
  will-change: transform;
  width: max-content;
}

.logo-box {
  flex: 0 0 auto;

  width: clamp(90px, 12vw, 100px);

  height: clamp(45px, 6vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    filter 0.2s ease,
    opacity 0.2s ease,
    transform 0.1s ease;
}

.logo-box:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.05);
}

@media (max-width: 700px) {
  .logo-track {
    --logo-gap: 24px;
  }
}

.footer-icon svg {
  padding-top: 2.6px;
  opacity: 0.9;
  stroke: rgba(255, 255, 255, 0.75);
}
.footer-col h4 {
  text-transform: none;
  letter-spacing: 0.02em;
}
.footer {
  background: #0f1c3f;
  color: #ffffff;
  padding: 60px 8vw 40px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
  justify-content: space-between;
  padding-bottom: 20px;
}
.footer-col {
  flex: 1 1 160px;
}
.footer h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer h4 {
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}
.footer p {
  opacity: 0.85;
  max-width: 300px;
  letter-spacing: -0.1px;
  line-height: 1.6;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin: 0.35rem 0;
  opacity: 0.85;
}
.footer ul li a {
  letter-spacing: -0.1px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
}
.footer ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  opacity: 0.8;
  padding-top: 8px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  letter-spacing: -0.1px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}
.footer-bottom-links a:hover {
  color: white;
  opacity: 1;
  text-decoration: underline;
}
.footer-bottom p {
  opacity: 0.85;
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.6;
}
@media (min-width: 1100px) {
  .footer-container {
    flex-wrap: nowrap;
  }
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 640px) {
  .footer-bottom {
    align-items: flex-start;
  }
  .footer-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-bottom-links a {
    font-size: 0.9rem;
  }
}
.services {
  padding: 60px 20px;
  background: #f7f8fb;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.services .container {
  max-width: 1100px;
  margin: 0 auto;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.services .intro {
  max-width: 650px;
  margin-bottom: 2.5rem;
  color: #555;
}
.service-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 40px;
  margin-bottom: 32px;
}
.section-services .intro {
  margin-bottom: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--outer-border-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--primary-box-shadow);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: left;
  cursor: pointer;
}
.service-content {
  flex-grow: 1;
}
.service-bullets {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  padding-left: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.service-bullets li {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 4px;
}
.service-card:hover .service-bullets {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 600px) {
  .service-bullets {
    display: none;
  }
}

.service-card img {
  position: relative;
  width: 100%;
  height: 260px;
  object-fit: cover;

  display: block;
  transition:
    height 0.3s ease-in-out,
    filter 0.3s ease;
}

.service-card .image-wrap {
  position: relative;
  overflow: hidden;
}

.service-card .image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: grayscale(40%);
  backdrop-filter: grayscale(40%);
  background: rgba(176, 203, 255, 0.28);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-card:hover .image-wrap::after {
  opacity: 0.32;
}
.service-card h3 {
  font-size: 1.05rem;
  padding: 6px 20px 4px;
  margin-top: 22px;
  margin-bottom: 4px;
  color: var(--subtitle-color);
}
.service-card p {
  display: block;
  padding: 0 20px 18px;
  margin: 0 0 16px;
  font-size: 0.94rem;
  color: #555;
  position: relative;
  line-height: 1.68;
  overflow: visible;
}
.service-lead {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #1f3c88;
}

.service-card:hover {
  transform: translateY(var(--card-lift));
  box-shadow: var(--secondary-box-shadow);
}
.service-card:hover img {
  filter: brightness(1) contrast(1.05);
}
.more-services {
  margin-top: 60px;
}
.more-services h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
}
.more-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-links li {
  display: flex;
  align-items: center;
}
.more-services li + li:before {
  content: "•";
  display: inline-block;
  margin: 0 1rem;
  color: #999;
  line-height: 1;
}
@media (max-width: 900px) {
  .more-services li + li::before {
    content: none;
  }
  .more-services ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.more-services a {
  font-size: 0.95rem;
  text-decoration: none;
  color: #2563eb;
}
.more-services a:hover {
  text-decoration: underline;
}
.service-btn {
  align-self: flex-end;
  margin-top: 16px;
  padding: 10px 18px;
  margin-right: 18px;
  margin-bottom: 18px;
  width: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  background-color: #1f3c88;
  border: 1px solid transparent;
  border-radius: var(--button-border-radius);
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
.service-btn:hover {
  background-color: #fbfbfc;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.service-card:hover .service-btn {
  background-color: #fbfbfc;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

@media (max-width: 1400px) {
  .service-grid {
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    gap: 24px;
  }
}
@media (max-width: 780px) {
  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
}
.timeline-parallax {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.timeline-parallax::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  background: linear-gradient(
    to bottom,
    rgb(255, 255, 255),
    rgba(15, 23, 42, 0)
  );
  z-index: 2;
  pointer-events: none;
}

.timeline-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url("/src/img/about/parallax.webp");
  filter: saturate(90%) contrast(92%) brightness(0.96) grayscale(15%);
  background-size: cover;
  background-position: 50% 40%;
  background-attachment: fixed;
  z-index: 0;
  opacity: 1;
}
@media (max-width: 900px) {
  .timeline-parallax-bg {
    background-attachment: scroll;
    background-position: center;
  }
}
.timeline-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.48) 0%,
    rgba(0, 0, 0, 0.34) 40%,
    rgba(0, 0, 0, 0.18) 65%,
    rgba(0, 0, 0, 0) 100%
  );
}
.section-timeline {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}
.section-timeline h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--subtitle-color);
}
.timeline {
  position: relative;
  display: grid;
  background-color: white;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.5);
  opacity: 0.95;
  padding: 20px;
  border-radius: var(--outer-border-radius);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
#timeline-splide {
  background: rgba(255, 255, 255, 0);
  border-radius: var(--outer-border-radius);
  padding-top: 20px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
#timeline-splide .splide__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  height: 1px;
  background: #e5e7eb;
  z-index: 0;
  opacity: 0.8;
}
.timeline-item {
  position: relative;
  padding-top: 42px;
  z-index: 1;
}
.timeline-year {
  position: absolute;
  top: 10px;
  left: 50%;
  letter-spacing: 0.02em;
  text-align: center;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1f3c88, #2c4ea3);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.1);
}
.timeline-card {
  position: relative;
  background: #fff;
  border-radius: var(--outer-border-radius);
  border: 1px solid rgba(31, 60, 136, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 42px 18px 18px;
  height: 260px;
  text-align: left;
  cursor: grab !important;
}
.timeline-card h4 {
  margin: 10px 0 8px;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 8px;
}
.timeline-card p {
  margin: 0;
  color: #555;
  line-height: 1.55;
  font-size: 0.9rem;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

.splide__arrow {
  border: 1px solid #e5e7eb;
  opacity: 0.8 !important;
  transition: opacity 0.1s ease-in;
}
.splide__arrow:hover {
  opacity: 1 !important;
}
.splide__arrow svg {
  fill: white !important;
}
.splide__pagination__page:hover {
  background: white !important;
}
.splide__pagination__page.is-active {
  background: #1f3c88 !important;
  opacity: 1 !important;
}
#timeline-splide .splide__slide .timeline-card {
  opacity: 0.92;
  transform: scale(0.98);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}
.timeline-icon {
  opacity: 0.6;
  filter: invert(22%) sepia(72%) saturate(2200%) hue-rotate(210deg)
    brightness(90%) contrast(95%);
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 2px;
}

#timeline-splide .splide__slide.is-active .timeline-card {
  opacity: 1;
  transform: scale(1);
}

.timeline-card:hover {
  opacity: 1 !important;
  transform: scale(1) !important;
}
.timeline-card {
  border: 1px solid rgba(31, 60, 136, 0.08) !important;
}
.splide__arrow--prev {
  left: -8px !important;
}
.splide__arrow--next {
  right: -8px !important;
}
@media (max-width: 900px) {
  #timeline-splide {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 32px;
  }
  #timeline-splide .splide__arrow {
    width: 2rem;
    height: 2rem;
  }
  #timeline-splide .splide__arrow svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .timeline-card {
    height: auto;
    min-height: 300px;
    padding: 36px 18px 20px;
  }
  .timeline-card h4 {
    font-size: 1rem;
  }
  .timeline-card p {
    font-size: 0.95rem;
  }
  .timeline-year {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
}
.about-timeline-extras {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 24px 0 10px;
  color: var(--text);
}

.kpi-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--surface-muted);
  border: 1px solid rgba(31, 60, 136, 0.14);
  border-radius: var(--outer-border-radius);
  padding: 14px;
  margin-top: 32px;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .kpi-wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
.kpi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transform: scale(1);
  transition: transform 0.2s ease;
}
.kpi:hover {
  transform: scale(1.1);
}
.kpi-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.kpi-value {
  display: inline-block;
  min-height: 1.35em;
  min-width: 11ch;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--primary-white);
}

@media (max-width: 700px) {
  .kpi-value {
    min-width: 10ch;
    font-size: 1rem;
  }
}
.chip--active {
  cursor: default !important;
  pointer-events: none;
}

.chip--active:hover {
  background: #1f3c88 !important;
  color: #ffffff !important;
  border-color: #1f3c88 !important;
}
.careers-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.careers-header p {
  max-width: 720px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}

.career-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.career-filters-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
}
.career-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.chip:hover {
  border-color: #2563eb;
  color: #1d4ed8;
}
.chip:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.chip--active {
  background: #1f3c88;
  border-color: #1f3c88;
  color: #ffffff;
}

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

.career-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--outer-border-radius);
  overflow: hidden;
  box-shadow: var(--primary-box-shadow);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.career-card:hover {
  transform: translateY(var(--card-lift));
  box-shadow: var(--secondary-box-shadow);
}

.career-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: grayscale(100) brightness(1) contrast(1.05);
}

.career-content {
  flex-grow: 1;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
}
.career-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--subtitle-color);
}
.flag-icon {
  width: 17px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  margin: 0 6px 0 6px;
}
@media (max-width: 600px) {
  .flag-icon {
    width: 14px;
    height: 10px;
  }
}
.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 10px;
  line-height: 1.4;
}
.career-meta span::before {
  content: "• ";
}
.career-meta span:first-child::before {
  content: "";
}
.career-card p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 12px;
}

.career-apply-btn {
  align-self: flex-end;
  margin-top: 12px;
  padding: 10px 18px;
  margin-right: 20px;
  margin-bottom: 18px;
  width: 108px;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  background-color: #1f3c88;
  border: 1px solid transparent;
  border-radius: var(--button-border-radius);
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.career-apply-btn:hover {
  background-color: #fbfbfc;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.careers-load-more-wrap {
  margin-top: 32px;
  text-align: center;
}
.careers-load-more {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f3c88;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.careers-load-more:hover {
  background: #1f3c88;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.career-card--extra {
  display: none;
}

.career-search {
  margin: 16px 0 24px;
}
.career-search input {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: var(--outer-border-radius);
  font-size: 0.9rem;
  color: #333;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  padding-left: 42px;
  background-image: url("/src/img/icons/search.svg");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px;
}
.career-search input:focus {
  background-position: -100px center;
  padding-left: 14px;
}
@media (max-width: 600px) {
  .career-search input {
    max-width: 600px;
  }
}
.career-search input:focus {
  outline: none;
  border-color: #1f3c88;
  box-shadow: 0 0 0 3px rgba(31, 60, 136, 0.15);
}
.career-link {
  font-size: 0.82rem;
  text-decoration: none;
  color: #3b5b9a;
  font-weight: 500;
}
.career-content p {
  flex: 1;
  min-height: 7rem;
}
.career-link {
  margin-top: auto;
}
.career-card:hover .career-link {
  text-decoration: underline;
}
.careers-no-results {
  padding-top: 50px;
  height: 100px;
  font-size: 0.95rem;
  color: #6b7280;
  background-color: var(--surface-muted);
  text-align: center;
}

@media (max-width: 960px) {
  .career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .career-grid {
    grid-template-columns: 1fr;
  }
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.contact-header p {
  max-width: 640px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 40px;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--subtitle-color);
}
.contact-info p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-info p svg {
  vertical-align: middle;
  opacity: 0.6;
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 0;
  user-select: none;
}
.contact-info a {
  color: #2563eb;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.contact-map {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-map iframe {
  width: 100%;
  min-height: 260px;
  height: clamp(240px, 34vw, 320px);
  border: 0;
  border-radius: 12px;
  display: block;
}
.map-route-btn {
  width: 101px;
}

.contact-form {
  border: 1px solid rgba(31, 60, 136, 0.14);
  background: var(--surface-muted);
  border-radius: var(--outer-border-radius);
  box-shadow: var(--primary-box-shadow);
  padding: 24px 24px 26px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #374151;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: var(--inner-border-radius);
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  color: #111827;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  font-family: inherit;
  background-color: #f9fafb;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1f3c88;
  box-shadow: 0 0 0 3px rgba(31, 60, 136, 0.15);
  background-color: #ffffff;
}
.form-field input:required:invalid:focus,
.form-field select:required:invalid:focus,
.form-field textarea:required:invalid:focus {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.18);
}
.form-field textarea {
  resize: vertical;
}

.form-field-inline {
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: #4b5563;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
}
.checkbox-label a {
  color: #1f3c88;
  text-decoration: none;
}
.checkbox-label a:hover {
  text-decoration: underline;
}

.contact-submit-btn {
  margin-top: 8px;
  padding: 10px 22px;
  border-radius: var(--button-border-radius);
  border: 1px solid transparent;
  background: #1f3c88;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.contact-submit-btn:hover {
  background-color: #fbfbfc;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.contact-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.95;
}
.contact-submit-btn.is-sent,
.contact-submit-btn.is-sent:hover {
  background: #198754;
  border-color: #198754;
  color: #ffffff;
}
.contact-submit-btn.is-error,
.contact-submit-btn.is-error:hover {
  background: #c62828;
  border-color: #c62828;
  color: #ffffff;
}
.service-btn:focus-visible,
.career-apply-btn:focus-visible,
.contact-submit-btn:focus-visible,
.careers-load-more:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.file-upload-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.file-upload-meta {
  margin: 0;
  font-size: 0.78rem;
  color: #6b7280;
}
.file-upload-warning {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: #5b6473;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #d8dee9;
  border-radius: 8px;
  background: #f3f6fb;
  width: fit-content;
  max-width: 100%;
}
.file-upload-warning-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #8fa2c8;
  color: #3f5f9a;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
}
.file-upload-error {
  margin: 2px 0 0;
  min-height: 1.1em;
  font-size: 0.82rem;
  color: #b42318;
}
.file-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f2;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  width: fit-content;
}
.file-remove-x {
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #888;
  padding: 0;
  line-height: 1;
}
.file-remove-x:hover {
  color: #e63946;
}
.hidden {
  display: none !important;
}

.form-consent {
  margin-top: 10px;
  padding-left: 2px;
}
.consent-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #4b5563;
  cursor: pointer;
}
.consent-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.consent-container a {
  color: #1f3c88;
  text-decoration: none;
}
.consent-container a:hover {
  text-decoration: underline;
}
.consent-container span {
  position: relative;
  top: -4px;
  bottom: 2px;
  color: #777;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 20px 18px 22px;
  }
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 320px;
    height: clamp(320px, 62vw, 400px);
  }
}

@media (max-width: 700px) {
  .careers-header h2,
  .contact-header h2 {
    font-size: 1.55rem;
    line-height: 1.2;
  }
}

.section-service-detail {
  padding-top: 140px;
  background: #ffffff;
  padding-bottom: 0;
}
.service-detail-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 6vw;
  box-sizing: border-box;
}
.service-copy {
  max-width: 820px;
  margin-top: 0;
  margin-bottom: 32px;
}
.service-copy h3 {
  margin: 0 0 8px;
  color: #1f3c88;
}
.service-copy p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 12px;
}
.service-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 44px 0;
}
.service-band {
  background: transparent;
  padding: 0;
  margin-bottom: 28px;
}
.service-band h3 {
  margin-bottom: 10px;
  color: #1f3c88;
}
.service-band p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}
.service-band-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.service-band-media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.service-band-media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--outer-border-radius);
  object-fit: cover;
  box-shadow: var(--primary-box-shadow);
  margin: 0;
}
.service-detail-grid {
  margin-top: 16px;
}
.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
  padding: 0;
}
.service-hero-content h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
  color: #1f3c88;
  line-height: 1.2;
}
.service-hero-content p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 60, 136, 0.1);
  color: #1f3c88;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.service-hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.service-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #1f3c88;
  border: 1px solid transparent;
  border-radius: var(--button-border-radius);
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
.service-action-btn:hover {
  background-color: #fbfbfc;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.service-hero-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.service-hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--outer-border-radius);
  object-fit: cover;
  max-width: 520px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.service-cards-band {
  margin: 36px 0 32px;
  padding: 24px 0;
  box-sizing: border-box;
  background: var(--surface-muted);
}
.service-cards-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 6vw;
  box-sizing: border-box;
}
.service-detail-card {
  background: #ffffff;
  border-radius: var(--outer-border-radius);
  border: 1px solid rgba(31, 60, 136, 0.08);
  padding: 18px 22px 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.service-detail-card h3 {
  margin-bottom: 12px;
  color: #1f3c88;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.service-list li {
  display: flex;
  gap: 10px;
  color: #4b5563;
  line-height: 1.6;
}
.service-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f3c88;
  margin-top: 8px;
  flex-shrink: 0;
}
.service-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.service-step {
  background: var(--surface-muted);
  border-radius: var(--outer-border-radius);
  padding: 20px 18px;
  border: 1px solid rgba(31, 60, 136, 0.08);
}
.service-step h4 {
  margin: 8px 0;
  color: #1f3c88;
}
.service-step p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
}
.service-proof {
  background: transparent;
  padding: 0;
  border: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 40px;
  box-shadow: none;
}
.service-proof h3 {
  margin-bottom: 10px;
  color: #1f3c88;
}
.service-proof p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}
.service-proof-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #1f3c88;
  font-size: 0.85rem;
  margin: 16px 0 0;
  line-height: 1.4;
  background: #f1f5fb;
  border: 1px solid rgba(31, 60, 136, 0.12);
  border-radius: 999px;
  padding: 4px 12px;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
}
.service-proof-metric span {
  display: inline;
  font-size: 0.9rem;
}
.service-proof-metric small {
  display: inline;
  color: #64748b;
  font-weight: 500;
  font-size: 0.85rem;
}
.service-proof-metric small::before {
  content: "·";
  margin: 0 6px;
  color: #94a3b8;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 32px;
}
.service-tag {
  border: 1px solid rgba(31, 60, 136, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1f3c88;
  background: #f8f9ff;
}
.service-cta-band {
  background: linear-gradient(135deg, #1f3c88, #2c4ea3);
  margin-top: 48px;
}
.service-cta {
  color: #fff;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 6vw;
  padding-right: 6vw;
}
.service-cta p {
  margin: 0;
  max-width: 720px;
  color: #e2e8f0;
}
.service-cta .btn {
  background: #fff;
  color: #1f3c88;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
.service-cta .btn:hover {
  background: #e0e7ff;
  color: #1f3c88;
}
.service-cta .btn:focus-visible {
  outline: 2px solid #e0e7ff;
  outline-offset: 3px;
}
@media (max-width: 1100px) {
  .service-hero,
  .service-band-split,
  .service-proof {
    grid-template-columns: 1fr;
  }
  .service-band-split {
    gap: 18px;
    margin-bottom: 24px;
  }
  .service-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-hero-media {
    width: 100%;
  }
  .service-hero-media img {
    max-width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 700px) {
  .service-hero-content h2 {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .service-copy h3,
  .service-band h3,
  .service-detail-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .service-step h4 {
    font-size: 1rem;
    line-height: 1.35;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-steps {
    grid-template-columns: 1fr;
  }
  .service-detail-wrap {
    padding: 0 4vw;
  }
  .service-detail-card {
    padding: 20px 18px;
  }
  .service-cards-band {
    margin: 16px 0 14px;
    padding: 14px 0;
    box-sizing: border-box;
  }
  .service-cards-inner {
    padding: 0 4vw;
  }
  .service-cta {
    padding: 22px 0;
    padding-left: 4vw;
    padding-right: 4vw;
    justify-content: center;
    text-align: center;
  }
  .service-tags {
    gap: 8px;
    margin-bottom: 28px;
  }
  .service-tag {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  .service-cta .btn {
    margin-top: 12px;
  }
}
@media (min-width: 1600px) {
  .service-detail-wrap {
    max-width: 1480px;
    padding: 0 4vw;
  }
  .service-cards-inner {
    max-width: 1480px;
    padding: 0 4vw;
  }
  .service-copy {
    max-width: 900px;
  }
  .service-cta {
    max-width: 1480px;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.policy-text p {
  max-width: 1100px;
}
.policy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.policy-text h2 {
  margin: 0 0 18px;
  color: #1f3c88;
  letter-spacing: -0.02em;
}
.policy-text h3 {
  margin-top: 34px;
  margin-bottom: -10px;
  padding-top: 18px;

  font-size: 20px;
  color: var(--subtitle-color);
}
.policy-text h4 {
  color: #222;
  margin-top: 24px;
  margin-bottom: -14px;
  font-size: 16px;
  text-transform: none;
}
.policy-text p,
.policy-text li {
  line-height: 1.7;
  font-size: 15.5px;
  color: rgba(0, 0, 0, 0.82);
}
.policy-hero {
  margin: 18px 0 22px;
  padding: 18px 18px;
  background: rgba(31, 60, 136, 0.06);
  border: 1px solid rgba(31, 60, 136, 0.12);
  border-radius: var(--outer-border-radius);
}
.policy-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.policy-inner .btn-primary,
.policy-inner .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--button-border-radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background-color: #1f3c88;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}
.policy-inner .btn-primary {
  background: #223d92;
  color: #fff;
}
.policy-inner .btn-secondary {
  background: #223d92;
  color: #fff;
}
.policy-inner .btn-primary:hover {
  background-color: #d2d2d2;
  color: #000;
}
.policy-inner .btn-secondary:hover {
  background-color: #d2d2d2;
  color: #000;
}
.policy-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 16px 0 10px;
}
.policy-card {
  padding: 14px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--outer-border-radius);
  background: #fff;
}
.policy-card-title {
  font-weight: 600;
  color: #1f3c88;
  margin-bottom: 6px;
}
.policy-card-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.78);
}
.policy-toc {
  background: #f7f9fc;
  border: 1px solid #e2e6ef;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0 32px;
  font-size: 0.95rem;
}
.policy-toc strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.policy-toc ul {
  list-style: none;
  margin: 0;
  padding-left: 18px;
}
.policy-toc li {
  margin: 6px 0;
}
.policy-toc a {
  text-decoration: none;
  color: #1f3c88;
}
.policy-toc a:hover {
  text-decoration: underline;
}
@media (max-width: 820px) {
  .policy-highlights {
    grid-template-columns: 1fr;
  }
  .policy-text h2 {
    font-size: 32px;
  }
}

.insights-hero p {
  max-width: 640px;
  color: #4b5563;
  line-height: 1.7;
}

.insights-filters {
  margin: 30px auto 20px;
  max-width: 1440px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px auto 20px;
  max-width: 1440px;
  gap: 24px;
}

.insights-load-more {
  margin-top: 30px;
  text-align: center;
}

.insights-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.insights-chip {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  color: #374151;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.insights-chip:hover:not(.insights-chip--active) {
  border-color: #1f3c88;
  color: #1f3c88;
}
.insights-chip:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.insights-chip--active {
  background: #1f3c88;
  color: #ffffff;
  border-color: #1f3c88;
  cursor: default;
}

.insights-search {
  padding: 8px 12px;
  border-radius: var(--outer-border-radius);
  border: 1px solid #d1d5db;
  width: 340px;
  font-size: 0.9rem;
  color: #333;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;

  padding-left: 42px;
  background-image: url("/src/img/icons/search.svg");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px;
}
.insights-search:focus {
  outline: none;
  border-color: #1f3c88;
  box-shadow: 0 0 0 3px rgba(31, 60, 136, 0.15);
  background: #ffffff;
  padding-left: 14px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 30px auto 20px;
  max-width: 1440px;
}
.section-insight-detail {
  padding: 0 6vw 0;
  padding-top: 140px;
}
.section-404 {
  min-height: calc(100vh - 320px);
  padding: 136px calc(8vw + 8px) 32px;
}
.error-404-card {
  width: min(860px, 100%);
  margin: 0;
  padding: clamp(8px, 1vw, 12px) 0;
}
.error-404-code {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 8.8rem);
  line-height: 0.74;
  color: #111111;
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  letter-spacing: 0;
}
.error-404-digit {
  display: inline-block;
  opacity: 0;
  transform: translateY(-88px);
  animation: error404DigitDrop 760ms cubic-bezier(0.18, 0.85, 0.24, 1) both;
  will-change: transform, opacity;
}
.error-404-digit.digit-2 {
  animation-delay: 0.12s;
}
.error-404-digit.digit-3 {
  animation-delay: 0.24s;
  margin-left: -0.01em;
}
@keyframes error404DigitDrop {
  0% {
    opacity: 0;
    transform: translateY(-88px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .error-404-digit {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.error-404-card h1 {
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.2;
}
.error-404-card p {
  margin: 8px 0 0;
  color: #4b5563;
  line-height: 1.6;
}
.error-404-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.error-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--button-border-radius);
  border: 1px solid transparent;
  background: #1f3c88;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.error-404-btn:hover {
  background: #ffffff;
  border-color: #1f3c88;
  color: #1f3c88;
}
.error-404-btn:hover .back-link-icon {
  transform: translateX(-3px);
}
.error-404-path {
  margin-top: 14px;
  font-size: 0.82rem;
  color: #6b7280;
  word-break: break-all;
}
.insight-detail {
  max-width: 1100px;
  margin: 0 auto;
}
.insight-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: var(--button-border-radius);
  border: 1px solid transparent;
  background: #1f3c88;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
.insight-detail-back:hover {
  background-color: #fbfbfc;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.career-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.back-link-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  opacity: 0.8;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.insight-detail-back:hover .back-link-icon,
.career-detail-back:hover .back-link-icon {
  transform: translateX(-3px);
}
.insight-detail-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.insight-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 0.9rem;
}
.insight-detail-dot {
  opacity: 0.7;
}
.insight-detail-hero {
  margin: 28px 0 30px;
  border-radius: var(--outer-border-radius);
  overflow: hidden;
  box-shadow: var(--primary-box-shadow);
}
.insight-detail-hero img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center;
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.insight-detail-body {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.8;
}
.insight-detail-body p {
  margin-bottom: 16px;
  max-width: none;
}
.insight-detail-body img,
.insight-detail-body picture,
.insight-detail-body figure,
.insight-detail-body iframe {
  max-width: 100%;
  display: block;
}
.insight-detail-body img,
.insight-detail-body picture,
.insight-detail-body figure {
  height: auto;
  margin: 20px 0;
}
.insight-detail-body iframe {
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  margin: 20px 0;
}
.insight-detail-download {
  margin-top: 24px;
}
.insight-detail-download a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--button-border-radius);
  background: #1f3c88;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.insight-detail-download a:hover {
  background-color: #fbfbfc;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.insight-recent {
  margin-top: 48px;
  position: relative;
  padding: 24px 0 80px;
  z-index: 0;
  overflow: visible;
}
.insight-recent::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  background: var(--surface-muted);
  z-index: -1;
  margin-left: -50vw;
  margin-right: -50vw;
}
.insight-recent h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--primary-color);
  margin-bottom: 20px;
}
.insight-recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.insight-recent-nav {
  display: none;
  align-items: center;
  gap: 8px;
}
.insight-recent-nav button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(31, 60, 136, 0.25);
  background: #ffffff;
  color: #1f3c88;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.insight-recent-nav button:hover:not(:disabled),
.insight-recent-nav button:focus-visible:not(:disabled) {
  background: #fbfbfc;
  color: #1f3c88;
  border-color: #1f3c88;
}
.insight-recent-nav button:disabled {
  opacity: 0.4;
  cursor: default;
}
.insight-recent-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.insight-recent-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(31, 60, 136, 0.28);
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}
.insight-recent-dot.is-active {
  background: #1f3c88;
  transform: scale(1.15);
}
.insight-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.insight-recent.is-carousel .insight-recent-nav {
  display: inline-flex;
}
.insight-recent.is-carousel .insight-recent-grid {
  display: flex !important;
  flex-wrap: nowrap;
  --recent-gap: 14px;
  gap: var(--recent-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 28px;
  padding-bottom: 4px;
}
.insight-recent.is-carousel .insight-recent-grid::-webkit-scrollbar {
  display: none;
}
.insight-recent.is-carousel .insight-card {
  flex: 0 0 calc((100% - 14px - 28px) / 2) !important;
  min-width: 0;
  max-width: calc((100% - 14px - 28px) / 2);
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.insight-recent.is-carousel .insight-recent-dots {
  display: flex;
}
.insight-recent .insight-body {
  min-height: 320px;
  height: 100%;
}
.insight-recent .insight-title {
  line-height: 1.3;
  max-height: 2.6em;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insight-recent .insight-excerpt {
  display: block;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.section-career-detail {
  padding: 0 6vw 120px;
  padding-top: 140px;
}
.career-detail {
  max-width: 1000px;
  margin: 0 auto;
}
.career-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: var(--button-border-radius);
  border: 1px solid transparent;
  background: #1f3c88;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}
.career-detail-back:hover {
  background-color: #fbfbfc;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.career-detail-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.career-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 0.9rem;
}
.career-detail-dot {
  opacity: 0.7;
}
.career-detail-hero {
  margin: 28px 0 24px;
  border-radius: var(--outer-border-radius);
  overflow: hidden;
  box-shadow: var(--primary-box-shadow);
}
.career-detail-hero img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(92%) contrast(98%) grayscale(100%);
}
.career-detail-body {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.8;
}
.career-detail-body p {
  margin-bottom: 16px;
  max-width: none;
}
.career-detail-body img,
.career-detail-body picture,
.career-detail-body figure,
.career-detail-body iframe {
  max-width: 100%;
  display: block;
}
.career-detail-body img,
.career-detail-body picture,
.career-detail-body figure {
  height: auto;
  margin: 20px 0;
}
.career-detail-body iframe {
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  margin: 20px 0;
}
.career-detail-cta {
  margin-top: 24px;
}
@media (max-width: 700px) {
  .section-career-detail {
    padding: 0 4vw 120px;
    padding-top: 140px;
  }
}
@media (max-width: 700px) {
  .section-insight-detail {
    padding: 0 4vw 0;
    padding-top: 140px;
  }
  .section-404 {
    min-height: calc(100vh - 280px);
    padding: 118px calc(6vw + 2px) 24px;
  }
  .error-404-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .error-404-btn {
    width: 100%;
  }
}

.insight-card {
  background: #ffffff;
  border-radius: var(--outer-border-radius);
  border: 1px solid rgba(31, 60, 136, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.insight-card:hover {
  transform: translateY(var(--card-lift));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.insight-card:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.insight-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 270px;
}
.insight-card .image-wrap {
  position: relative;
}
.insight-card .insight-image img {
  display: block;
  object-fit: cover;
}

.insight-card .image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: grayscale(40%);
  backdrop-filter: grayscale(40%);
  background: rgba(165, 165, 165, 0.28);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.insight-card:hover .image-wrap::after {
  opacity: 0.32;
}
.insight-image {
  position: relative;
}
.insight-li-badge {
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    scale 0.2s ease;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0a66c2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  scale: 1;
}
.insight-li-badge:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.insight-li-badge svg {
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    scale 0.2s ease;
  width: 18px;
  height: 18px;
  fill: #fdfdfd;
  scale: 1;
}
.insight-li-badge svg:hover {
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    scale 0.2s ease;
  fill: #fdfdfd;
  scale: 1.1;
}
.insight-li-badge:hover {
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    scale 0.2s ease;
  background: #0a66c2;
  scale: 1.1;
}
.insight-card:hover .insight-li-badge {
  background: #0a66c2;
  scale: 1.1;
}
.insight-card:hover .insight-li-badge svg {
  fill: #fdfdfd;
  scale: 1.1;
}
.insight-li-badge:hover svg {
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    scale 0.2s ease;
  fill: #fdfdfd;
  scale: 1.1;
}
.insight-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  height: 100%;
  flex: 1;
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 8px;
}
.insight-tag {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.insight-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.35;
}
.insight-excerpt {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
  flex-grow: 1;
}
.insight-actions {
  margin-top: auto;
}
.insight-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: #3b5b9a;
  text-decoration: none;
}
.insight-link:hover {
  text-decoration: underline;
}
.insight-card:hover .insight-link {
  text-decoration: underline;
}

.insights-load-more {
  margin-top: 30px;
  text-align: center;
}
.insights-load-more-btn {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f3c88;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.insights-load-more-btn:hover {
  background: #1f3c88;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.insights-load-more-btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.insights-no-results {
  height: 100px;
  font-size: 0.95rem;
  color: #6b7280;
  background-color: var(--surface-muted);
  text-align: center;
}

@media (min-width: 1700px) {
  .insight-recent {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .insight-recent-head,
  .insight-recent-grid {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
  }
  .insight-recent-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1251px) and (max-width: 1699px) {
  .insight-recent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .insights-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .insights-search {
    width: 100%;
  }
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .insight-recent:not(.is-carousel) .insight-recent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .insight-recent:not(.is-carousel) .insight-recent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .insight-recent-head {
    align-items: flex-start;
  }
  .insight-recent .insight-body {
    min-height: 280px;
  }
  .insight-recent.is-carousel .insight-recent-nav {
    display: none;
  }
}
@media (max-width: 700px) {
  .insight-recent.is-carousel .insight-recent-grid {
    padding-right: 0;
  }

  .insight-recent.is-carousel .insight-card {
    flex-basis: 100% !important;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .insight-recent:not(.is-carousel) .insight-recent-grid {
    grid-template-columns: 1fr;
  }
  .insights-page {
    margin-top: 40px;
  }
}

.team-container {
  position: sticky;
  margin: 0 auto;

  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.team-sidebar {
  flex: 0 0 280px;
}

@media (min-width: 1024px) and (min-height: 900px) {
  .team-sidebar {
    position: sticky;
    top: 120px;
  }
}
.team-main {
  flex: 1 1 auto;
  margin-top: 30px;
}

.team-title {
  font-size: 2.1rem;
  margin-bottom: 8px;
}
.team-intro {
  color: #4b5563;
  margin-bottom: 24px;
  max-width: 720px;
}

.team-group {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.team-group:last-of-type {
  border-bottom: none;
}
.team-group-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.team-subheading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin: 10px 0 4px;
}
.team-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-chip {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 7px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  color: #374151;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.team-chip:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.team-chip:hover:not(.team-chip--active) {
  border-color: #1f3c88;
  color: #1f3c88;
}
.team-chip--active {
  background: #1f3c88;
  color: #ffffff;
  border-color: #1f3c88;
  cursor: default;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.team-card {
  border: 1px solid #d1d5db;
  background: #ffffff;
  border-radius: var(--outer-border-radius);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.team-photo img {
  width: 80%;
  max-width: 200px;
  aspect-ratio: 1/1;
  height: auto;
  padding: 20px;
  margin: 0 auto;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  filter: grayscale(100%);
  transform: scale(1);
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}
.team-card:hover .team-photo img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.team-card:hover {
  border-color: rgba(31, 60, 136, 0.55);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}
.team-contact {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 28px;
  padding-top: 18px;
}
.team-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--inner-border-radius);
  background: #f1f1f1;
  font-size: 0.85rem;
  text-decoration: none;
  color: #333;
  transition: 0.2s;
  white-space: nowrap;
}
.team-contact-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: invert(18%) sepia(30%) saturate(2900%) hue-rotate(206deg)
    brightness(92%) contrast(95%);
}
.team-contact-btn:hover {
  background: #e2e2e2;
}
.team-contact-icon:hover {
  opacity: 1;
}
.team-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 20px 16px;
  flex: 1;
  width: 100%;
}
.team-card-body h3 {
  display: block;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--subtitle-color);
  overflow-wrap: anywhere;
  word-break: break-word;
  text-wrap: balance;
}
.team-card-body p {
  margin: 0;
}

.team-name {
  font-size: 1rem;
  margin-bottom: 0;
}
.team-role {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0 0 1px;
  line-height: 1.2;
  text-align: center;
}
.team-location {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}
.team-search-wrapper {
  width: 100%;
  margin-bottom: 20px;
}
.team-search {
  width: 100%;
  max-width: 420px;
  padding: 10px 14px;
  border-radius: var(--outer-border-radius);
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  padding-left: 42px;
  background-image: url("/src/img/icons/search.svg");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px;
}
.team-search:focus {
  border-color: #1f3c88;
  background-position: -100px center;
  padding-left: 14px;
  box-shadow: 0 0 0 3px rgba(31, 60, 136, 0.15);
}

@media (max-width: 1400px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1150px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .team-container {
    flex-direction: column;
    gap: 24px;
  }
  .team-sidebar {
    flex: 1 1 auto;
  }
  .team-main {
    margin-top: 0;
    width: 100%;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-photo img {
    width: 170px;
    height: 170px;
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .team-card {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 10px;
  }
  .team-photo img {
    justify-content: left;
    margin: 0 0;
    height: 140px;
    width: 140px;
    padding: 10px;
  }
  .team-card-body {
    padding: 8px 10px;
    align-items: flex-start;
    justify-content: left;
    gap: 0;
  }
  .team-card-body h3 {
    text-align: left;
    margin-bottom: 6px;
  }
  .team-card-body h3 {
    font-size: 16px;
  }
  .team-role {
    font-size: 13px;
    margin: 0 0 1px;
    line-height: 1.1;
    text-align: left;
  }
  .team-location {
    font-size: 12px;
    margin: 0;
    line-height: 1.1;
    text-align: left;
  }
  .team-contact {
    padding-top: 14px;
    flex-wrap: nowrap;
  }
  .team-search {
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .team-contact {
    flex-wrap: wrap;
  }
}
.mv-header {
  margin-bottom: 32px;
}
.mv-header h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 2rem;

  color: var(--primary-color);
}
.mv-header p {
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
  max-width: 920px;
}
.mv-header p + p {
  margin-top: 12px;
}

.mv-block {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin: 0 0 42px;
  max-width: 100%;
  background: #ffffff;
  border-radius: var(--outer-border-radius);
  box-shadow: var(--primary-box-shadow);
  padding: 30px;
  border: 1px solid rgba(2, 80, 198, 0.1);
  transition:
    opacity 0.8s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.mv-block:nth-of-type(even) {
  background: var(--surface-muted);
}

.mv-block--image-left {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
}
.mv-text h3 {
  font-family: "Work Sans", sans-serif;
  margin: 0 0 8px;
  color: var(--subtitle-color);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}
.mv-keywords {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #7c869a;
}
.mv-text {
  padding-top: 4px;
}
.mv-text p {
  color: #5f6b7a;
  line-height: 1.72;
  font-size: 0.95rem;
  margin: 0 0 12px;
  max-width: 640px;
}
.mv-note {
  font-weight: 500;
  font-size: 0.92rem;
  color: #4b5563;
  margin-top: 6px;
  opacity: 0.95;
}

.mv-list {
  margin: 10px 0 0;
  padding-left: 16px;
  color: #3f4a5a;
  margin-bottom: 16px;
}
.mv-list li {
  margin: 6px 0;
  line-height: 1.65;
  font-size: 0.94rem;
}

.mv-media {
  width: 100%;
  overflow: hidden;
  border-radius: var(--outer-border-radius);
}
.mv-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.mv-block:hover .mv-media img {
  transform: scale(1.015);
}

.mv-cta {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.mv-quote {
  display: block;
  max-width: 560px;
  margin-top: 16px;
  padding: 10px 14px;
  border-left: 2px solid rgba(31, 60, 136, 0.3);
  background: rgba(31, 60, 136, 0.04);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.65;
  color: #4b5563;
}

@media (max-width: 1200px) {
  .mv-block,
  .mv-block--image-left {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mv-block--image-left .mv-media {
    order: 2;
  }
  .mv-media img {
    height: 260px;
  }
}
@media (max-width: 700px) {
  .mv-list {
    padding-left: 16px;
  }
  .mv-block {
    padding: 20px;
  }
  .mv-header p {
    max-width: 100%;
  }
  .mv-header p + p {
    margin-top: 10px;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  padding: 18px clamp(18px, 8vw, 120px) 18px clamp(18px, 6vw, 64px);
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(120%);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  will-change: transform, opacity;
}
@supports not (
  (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
  .nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .cookie-banner {
    background: rgba(15, 23, 42, 0.96);
  }
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner__content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-banner__text h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
}
.cookie-banner__text p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.85);
}
.cookie-banner__text a {
  color: #e2e8f0;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #ffffff;
}
flowise-chatbot,
#flowise-chatbot,
.flowise-embed,
.flowise-chatbot,
.chatbot-container,
.chatbot-button {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  will-change: opacity, transform;
  position: relative !important;
  z-index: 9999 !important;
}
iframe[src*="flowise"] {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  will-change: opacity, transform;
  z-index: 9999 !important;
}
body.chatbot-hidden flowise-chatbot,
body.chatbot-hidden #flowise-chatbot,
body.chatbot-hidden .flowise-embed,
body.chatbot-hidden .flowise-chatbot,
body.chatbot-hidden .chatbot-container,
body.chatbot-hidden .chatbot-button,
body.chatbot-hidden iframe[src*="flowise"] {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(6px);
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 7px 16px;
  border-radius: var(--cta-border-radius);
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: #ffffff;
  color: #000000;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease;
}
.cookie-banner__btn:hover {
  color: #ffffff;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}
.cookie-banner__btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
}
.cookie-banner__btn--ghost:hover {
  border-color: #223d92;
  background: rgba(255, 255, 255, 0.15);
}
.cookie-banner__btn:focus-visible {
  outline: 2px solid #f8fafc;
  outline-offset: 3px;
}
@media (max-width: 760px) {
  .cookie-banner {
    padding: 16px 16px 20px;
  }
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 1100px) {
  .cookie-banner {
    padding-right: 80px;
  }
  .cookie-banner__content {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
