:root {
  --bg: #050d18;
  --bg-soft: #0a1628;
  --bg-panel: rgba(9, 19, 34, 0.84);
  --bg-panel-strong: rgba(8, 17, 31, 0.96);
  --text: #f7f4ed;
  --text-soft: rgba(247, 244, 237, 0.78);
  --text-faint: rgba(247, 244, 237, 0.48);
  --gold: #1b75d9;
  --gold-bright: #73c4ff;
  --gold-ink: #061326;
  --gold-line: rgba(27, 117, 217, 0.28);
  --blue: #17385f;
  --blue-soft: rgba(43, 95, 170, 0.32);
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(27, 117, 217, 0.26);
  --section-frame: rgba(27, 117, 217, 0.12);
  --section-frame-soft: rgba(115, 196, 255, 0.08);
  --section-divider: rgba(115, 196, 255, 0.68);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.36);
  --shadow-gold: 0 20px 56px rgba(27, 117, 217, 0.22);
  --max: 1240px;
  --header-height: 94px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 109, 190, 0.22), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(27, 117, 217, 0.1), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(30, 82, 145, 0.14), transparent 24%),
    linear-gradient(180deg, #040c17 0%, #07111f 38%, #091629 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page-noise,
.site-aura {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.page-noise {
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.18)' stroke-width='0.4'%3E%3Cpath d='M0 90h180M90 0v180'/%3E%3Cpath d='M30 0v180M60 0v180M120 0v180M150 0v180M0 30h180M0 60h180M0 120h180M0 150h180' opacity='0.3'/%3E%3C/g%3E%3C/svg%3E");
}

.site-aura {
  filter: blur(32px);
}

.site-aura-one {
  top: 90px;
  left: -140px;
  width: 320px;
  height: 320px;
  background: rgba(27, 117, 217, 0.08);
}

.site-aura-two {
  inset: auto -160px 12% auto;
  width: 420px;
  height: 420px;
  background: rgba(25, 83, 152, 0.18);
}

.site-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 13, 24, 0.96);
  z-index: 120;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.is-ready .site-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-shell {
  display: grid;
  gap: 22px;
  width: min(380px, calc(100% - 48px));
}

.loader-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.loader-word {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.loader-dot,
.brand-pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(27, 117, 217, 0.12);
}

.loader-bars {
  display: grid;
  gap: 12px;
}

.loader-bars span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(27, 117, 217, 0.1), rgba(27, 117, 217, 0.42), rgba(27, 117, 217, 0.1));
  background-size: 220% 100%;
  animation: goldPulse 1.4s ease-in-out infinite;
}

.loader-bars span:nth-child(2) {
  width: 82%;
  justify-self: center;
  animation-delay: 0.15s;
}

.loader-bars span:nth-child(3) {
  width: 64%;
  justify-self: end;
  animation-delay: 0.3s;
}

@keyframes goldPulse {
  0% {
    background-position: 0 0;
    opacity: 0.55;
  }
  50% {
    background-position: 100% 0;
    opacity: 1;
  }
  100% {
    background-position: 0 0;
    opacity: 0.55;
  }
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

.site-main {
  padding-top: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 12, 22, 0.62);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 12, 22, 0.92);
  border-color: rgba(27, 117, 217, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(240px, 42vw);
  object-fit: contain;
}

.brand-mark {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-meta {
  color: var(--text-faint);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-toggle,
.nav-scrim {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

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

.button-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.button-gold:hover {
  filter: brightness(1.1);
}

.button-alt {
  background: linear-gradient(135deg, rgba(27, 117, 217, 0.9), rgba(115, 196, 255, 0.96));
}

.button-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-outline:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border-color: transparent;
  color: #ffffff;
}

.button-sm {
  min-height: 44px;
  padding: 0 18px;
}

.button-block {
  width: 100%;
}

.nav-banner-strip {
  position: relative;
  padding: 18px 0 8px;
}

.nav-banner-card {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(27, 117, 217, 0.18);
  background:
    linear-gradient(180deg, rgba(27, 117, 217, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 17, 31, 0.94);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(115, 196, 255, 0.1);
}

.nav-banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(5, 12, 22, 0.18), rgba(27, 117, 217, 0.18) 28%, rgba(5, 12, 22, 0.05) 54%, rgba(246, 211, 123, 0.08) 100%);
  pointer-events: none;
}

.nav-banner-card::after {
  content: "";
  position: absolute;
  inset: -12% -18%;
  z-index: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(115, 196, 255, 0.05) 26%, rgba(115, 196, 255, 0.24) 47%, rgba(246, 211, 123, 0.14) 50%, rgba(115, 196, 255, 0.24) 53%, rgba(115, 196, 255, 0.05) 74%, transparent 100%);
  transform: translateX(-68%) skewX(-22deg);
  opacity: 0;
  pointer-events: none;
  animation: navBannerSweep 9.5s ease-in-out infinite;
}

.nav-banner-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vw, 520px);
  object-fit: contain;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.nav-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.nav-banner-routes {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
}

.nav-route-blue {
  stroke: url(#nav-banner-blue);
  stroke-width: 2.2;
  stroke-dasharray: 10 16;
  filter: drop-shadow(0 0 9px rgba(115, 196, 255, 0.38));
  animation: navRouteDash 15s linear infinite;
}

.nav-route-gold {
  stroke: url(#nav-banner-gold);
  stroke-width: 2;
  stroke-dasharray: 12 18;
  filter: drop-shadow(0 0 9px rgba(246, 211, 123, 0.28));
  animation: navRouteDashReverse 18s linear infinite;
}

.nav-route-faint {
  opacity: 0.58;
  stroke-width: 1.6;
}

.nav-route-node {
  transform-origin: center;
  animation: navRouteNodePulse 3.8s ease-in-out infinite;
}

.nav-route-node-blue {
  fill: #73c4ff;
  filter: drop-shadow(0 0 10px rgba(115, 196, 255, 0.8));
}

.nav-route-node-gold {
  fill: #f6d37b;
  filter: drop-shadow(0 0 10px rgba(246, 211, 123, 0.68));
}

.nav-route-run {
  opacity: 0.95;
}

.nav-route-run-blue {
  fill: url(#nav-banner-pulse-blue);
  filter: drop-shadow(0 0 14px rgba(115, 196, 255, 0.92));
}

.nav-route-run-gold {
  fill: url(#nav-banner-pulse-gold);
  filter: drop-shadow(0 0 14px rgba(246, 211, 123, 0.76));
}

.nav-route-run-delayed {
  animation-delay: 1.2s;
}

@keyframes navBannerSweep {
  0%,
  14% {
    transform: translateX(-68%) skewX(-22deg);
    opacity: 0;
  }
  28% {
    opacity: 0.38;
  }
  52% {
    transform: translateX(68%) skewX(-22deg);
    opacity: 0.84;
  }
  100% {
    transform: translateX(68%) skewX(-22deg);
    opacity: 0;
  }
}

@keyframes navRouteDash {
  to {
    stroke-dashoffset: -260;
  }
}

@keyframes navRouteDashReverse {
  to {
    stroke-dashoffset: 260;
  }
}

@keyframes navRouteNodePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

.hero-section,
.section,
.page-hero {
  position: relative;
}

.hero-home,
.section,
.page-hero {
  isolation: isolate;
}

.hero-home > .container,
.section > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.hero-home::before,
.section::before,
.page-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(calc(var(--max) + 44px), calc(100% - 18px));
  height: calc(100% - 36px);
  border-radius: 34px;
  border: 1px solid var(--section-frame);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(27, 117, 217, 0.05) 18%, rgba(255, 255, 255, 0.012) 52%, transparent 100%);
  box-shadow:
    inset 0 1px 0 rgba(115, 196, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  pointer-events: none;
  z-index: 0;
}

.hero-home::after,
.section::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: min(260px, 36vw);
  height: 28px;
  border: 1px solid rgba(27, 117, 217, 0.24);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(115, 196, 255, 0.18), rgba(27, 117, 217, 0) 72%);
  box-shadow: 0 0 24px rgba(27, 117, 217, 0.12);
  pointer-events: none;
  z-index: 0;
}

.hero-home {
  min-height: auto;
  padding: 18px 0 22px;
}

.hero-map,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-map {
  opacity: 0.46;
  background:
    radial-gradient(circle at center, rgba(26, 70, 125, 0.2), transparent 42%),
    url("../images/world-map.svg") center 42% / min(1100px, 82%) auto no-repeat;
}

.hero-map-subpage {
  opacity: 0.22;
  background-position: center 32%;
  background-size: min(1050px, 78%) auto;
}

.hero-canvas {
  opacity: 0.95;
}

.hero-grid,
.about-grid,
.about-story-grid,
.culture-grid,
.contact-page-grid,
.service-focus-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 172px);
}

.hero-grid.hero-grid-bannered {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 18px;
  min-height: auto;
}

.hero-copy,
.hero-panel,
.trust-card,
.service-card,
.workflow-step,
.rich-panel,
.timeline-panel,
.video-frame,
.media-card,
.testimonial-card,
.manager-card,
.faq-item,
.final-cta,
.contact-card,
.region-card,
.metric-card,
.stats-chip,
.service-detail-card,
.service-side-panel,
.generic-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(115, 196, 255, 0.06),
    0 0 0 1px rgba(27, 117, 217, 0.04);
}

.hero-copy,
.hero-panel {
  padding: clamp(28px, 4vw, 50px);
}

.hero-grid-bannered {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(27, 117, 217, 0.16);
  background-color: #09111d;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(115, 196, 255, 0.08);
}

.hero-grid-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  filter: saturate(0.94) brightness(0.86);
  pointer-events: none;
}

.hero-flow-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}

.hero-flow-overlay .nav-banner-routes {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-flow-overlay .nav-route-blue {
  stroke-width: 2.7;
  stroke-dasharray: 12 14;
  opacity: 0.98;
  filter: drop-shadow(0 0 12px rgba(115, 196, 255, 0.52));
}

.hero-flow-overlay .nav-route-gold {
  stroke-width: 2.45;
  stroke-dasharray: 12 16;
  opacity: 0.96;
  filter: drop-shadow(0 0 11px rgba(246, 211, 123, 0.42));
}

.hero-flow-overlay .nav-route-faint {
  stroke-width: 1.9;
  opacity: 0.74;
}

.hero-flow-overlay .nav-route-node {
  animation-duration: 3.2s;
}

.hero-flow-overlay .nav-route-comet {
  opacity: 1;
}

.hero-flow-overlay .nav-route-comet-blue {
  filter: drop-shadow(0 0 16px rgba(115, 196, 255, 0.82));
}

.hero-flow-overlay .nav-route-comet-gold {
  filter: drop-shadow(0 0 16px rgba(246, 211, 123, 0.76));
}

.hero-flow-overlay .nav-route-tail {
  opacity: 0.94;
}

.hero-flow-overlay .nav-route-head {
  opacity: 1;
}

.hero-grid-bannered::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(88, 92, 98, 0.16), rgba(88, 92, 98, 0.16)),
    linear-gradient(135deg, rgba(5, 12, 22, 0.44), rgba(10, 22, 38, 0.18));
  pointer-events: none;
}

.hero-grid-bannered > :not(.hero-grid-backdrop):not(.hero-flow-overlay) {
  position: relative;
  z-index: 2;
}

.hero-copy {
  background:
    linear-gradient(180deg, rgba(27, 117, 217, 0.06), transparent 22%),
    linear-gradient(140deg, rgba(5, 12, 22, 0.98), rgba(14, 30, 53, 0.92));
}

.hero-grid-bannered .hero-copy {
  background:
    linear-gradient(180deg, rgba(27, 117, 217, 0.1), rgba(27, 117, 217, 0.02) 22%),
    linear-gradient(140deg, rgba(5, 12, 22, 0.44), rgba(14, 30, 53, 0.28));
  padding: clamp(28px, 4vw, 50px);
  backdrop-filter: blur(4px);
}

.hero-grid-bannered .hero-copy,
.hero-grid-bannered .hero-panel {
  min-height: auto;
  display: block;
}

.hero-copy-body,
.hero-panel-copy {
  display: grid;
  gap: 12px;
}

.section-kicker,
.hero-panel-label,
.service-kicker,
.metric-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before,
.hero-panel-label::before,
.service-kicker::before,
.metric-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.hero-copy h1,
.page-hero h1,
.section-head h2,
.final-cta h2,
.service-detail-card h2,
.service-focus-grid h1 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 20ch;
  margin: 18px 0 16px;
  font-size: clamp(2.35rem, 2.9vw, 3rem);
  line-height: 0.98;
  background: linear-gradient(180deg, #ffffff 0%, #d7ecff 48%, #73c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-grid-bannered .hero-copy h1 {
  max-width: 20ch;
  margin: 18px 0 16px;
  font-size: clamp(2.35rem, 2.9vw, 3rem);
  line-height: 0.98;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p,
.hero-panel p,
.section-head p,
.testimonial-copy,
.manager-card p,
.faq-body,
.final-cta p,
.rich-text,
.contact-card p,
.region-card a,
.metric-card p,
.service-detail-lead,
.generic-card p {
  color: var(--text-soft);
}

.hero-grid-bannered .hero-copy p,
.hero-grid-bannered .hero-panel p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.96rem;
  line-height: 1.62;
}

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

.hero-grid-bannered .hero-actions {
  margin-top: 0;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(27, 117, 217, 0.08), transparent 26%),
    linear-gradient(160deg, rgba(8, 17, 31, 0.96), rgba(12, 27, 47, 0.94));
}

.hero-grid-bannered .hero-panel {
  background:
    linear-gradient(180deg, rgba(27, 117, 217, 0.12), rgba(27, 117, 217, 0.03) 26%),
    linear-gradient(160deg, rgba(8, 17, 31, 0.38), rgba(12, 27, 47, 0.24));
  padding: clamp(24px, 3vw, 34px);
  backdrop-filter: blur(4px);
}

.hero-panel h2 {
  margin: 16px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.02;
}

.hero-grid-bannered .hero-panel h2 {
  max-width: none;
  margin: 16px 0 14px;
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
  line-height: 1.12;
}

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

.hero-grid-bannered .hero-locations {
  margin-top: 0;
}

.hero-locations div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(27, 117, 217, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-grid-bannered .hero-locations div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 14px;
  background: rgba(5, 12, 22, 0.18);
  border-color: rgba(115, 196, 255, 0.16);
  backdrop-filter: blur(3px);
}

.hero-locations div:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 117, 217, 0.24);
  background: rgba(27, 117, 217, 0.07);
}

.hero-grid-bannered .hero-locations div:hover {
  background: rgba(27, 117, 217, 0.18);
}

.hero-grid-bannered .hero-locations strong {
  font-size: 1rem;
}

.hero-locations strong,
.trust-card strong,
.stats-chip strong,
.fact-pill strong,
.metric-card strong,
.timeline-item strong,
.stat-card-visual strong {
  display: block;
  color: var(--gold-bright);
  font-family: "Sora", sans-serif;
}

.hero-locations span,
.trust-card small,
.trust-card span,
.stats-chip span,
.timeline-item p,
.metric-card span,
.testimonial-card small,
.manager-role,
.manager-meta,
.generic-card-subtitle,
.footer-bottom,
.footer-links a,
.footer-contact,
.footer-social a {
  color: var(--text-faint);
}

.trust-strip,
.service-grid,
.workflow-grid,
.about-facts,
.culture-cards,
.manager-grid,
.footer-grid,
.stats-bar,
.service-stack,
.generic-grid {
  display: grid;
  gap: 18px;
}

.trust-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
}

.hero-scroll-cue {
  display: none;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: var(--text-faint);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  width: 18px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(27, 117, 217, 0.24);
  position: relative;
}

.hero-scroll-cue i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

.trust-card {
  padding: 22px 18px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.trust-card::before,
.stats-chip::before,
.metric-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 117, 217, 0.42), transparent);
}

.trust-card strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
}

.trust-card span {
  display: block;
  margin-top: 8px;
  color: var(--gold-bright);
  font-weight: 700;
}

.section,
.page-hero {
  padding: 92px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, transparent, rgba(27, 117, 217, 0.05) 16%, rgba(27, 117, 217, 0.08) 50%, rgba(27, 117, 217, 0.05) 84%, transparent);
}

.section-dark::before {
  border-color: rgba(27, 117, 217, 0.18);
  background:
    linear-gradient(180deg, rgba(27, 117, 217, 0.08), rgba(255, 255, 255, 0.02) 44%, rgba(27, 117, 217, 0.03) 100%);
}

.hero-home > .container::before,
.hero-home > .container::after,
.section > .container::before,
.section > .container::after,
.page-hero > .container::before,
.page-hero > .container::after {
  content: "";
  position: absolute;
  top: -26px;
  width: 64px;
  height: 14px;
  border-top: 1px solid var(--section-divider);
  opacity: 0.9;
  pointer-events: none;
}

.hero-home > .container::before,
.section > .container::before,
.page-hero > .container::before {
  left: clamp(12px, 2vw, 26px);
  border-left: 1px solid var(--section-divider);
  border-top-left-radius: 10px;
}

.hero-home > .container::after,
.section > .container::after,
.page-hero > .container::after {
  right: clamp(12px, 2vw, 26px);
  border-right: 1px solid var(--section-divider);
  border-top-right-radius: 10px;
}

.page-hero {
  padding: 34px 0 40px;
}

.page-hero-inner {
  position: relative;
}

.page-hero h1 {
  max-width: 14ch;
  margin: 16px 0 14px;
  font-size: clamp(2.85rem, 4.8vw, 4.8rem);
  line-height: 0.97;
}

.page-hero p {
  max-width: 64ch;
  color: var(--text-soft);
}

.breadcrumb {
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 0.92rem;
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head.section-head-managers {
  max-width: 100%;
}

.section-head.section-head-managers h2 {
  max-width: 44ch;
  text-wrap: balance;
}

.section-head.section-head-managers p {
  max-width: 64ch;
}

.section-head h2,
.final-cta h2 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 117, 217, 0.38), transparent);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.42), 0 0 44px rgba(27, 117, 217, 0.1);
}

.service-icon {
  width: 66px;
  height: 66px;
  display: inline-grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(27, 117, 217, 0.16), rgba(27, 117, 217, 0.04));
  border: 1px solid rgba(27, 117, 217, 0.14);
  color: var(--gold-bright);
}

.service-icon span {
  display: block;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-card-1 .service-icon span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2373c4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16v10H4zM8 7V5h8v2M7 12h10'/%3E%3C/svg%3E");
}

.service-card-2 .service-icon span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2373c4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 18V8l4-2 4 2 4-2 4 2v10'/%3E%3Cpath d='M4 15h16'/%3E%3C/svg%3E");
}

.service-card-3 .service-icon span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2373c4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17l4-4 3 3 7-8'/%3E%3Cpath d='M15 8h4v4'/%3E%3C/svg%3E");
}

.service-card-4 .service-icon span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2373c4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
}

.service-card h3,
.workflow-step h3,
.testimonial-card h3,
.manager-card h3,
.rich-panel h2,
.contact-card h3,
.service-detail-card h2,
.generic-card h3 {
  margin: 16px 0 12px;
  font-size: 1.45rem;
}

.service-meta-line {
  display: inline-flex;
  margin-top: auto;
  align-self: flex-start;
  margin-bottom: 4px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(27, 117, 217, 0.08);
  border: 1px solid rgba(27, 117, 217, 0.12);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-bright);
  font-weight: 700;
}

.text-link::after {
  content: "->";
  transition: transform 0.2s ease;
}

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

.workflow-line {
  position: relative;
  height: 2px;
  margin: 0 40px 22px;
  background: linear-gradient(90deg, rgba(27, 117, 217, 0.04), rgba(27, 117, 217, 0.3), rgba(27, 117, 217, 0.04));
  overflow: hidden;
}

.workflow-line::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -16%;
  width: 18%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: flowLine 4.6s linear infinite;
}

@keyframes flowLine {
  to {
    left: 100%;
  }
}

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

.workflow-step {
  padding: 26px;
}

.workflow-step.is-highlighted {
  border-color: rgba(27, 117, 217, 0.24);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36), 0 0 42px rgba(27, 117, 217, 0.1);
  background:
    linear-gradient(180deg, rgba(27, 117, 217, 0.08), transparent 34%),
    var(--bg-panel);
}

.workflow-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(27, 117, 217, 0.08);
  border: 1px solid rgba(27, 117, 217, 0.16);
}

.workflow-icon svg {
  width: 24px;
  height: 24px;
}

.about-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
}

.about-story-grid,
.service-focus-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.about-copy,
.culture-copy {
  align-self: center;
}

.about-lead {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text);
}

.rich-panel {
  padding: 32px;
}

.rich-text p,
.rich-text li {
  line-height: 1.85;
  color: var(--text-soft);
}

.rich-text p:first-child,
.testimonial-copy p:first-child {
  margin-top: 0;
}

.testimonial-copy p:last-child {
  margin-bottom: 0;
}

.about-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  margin-bottom: 28px;
}

.fact-pill,
.stats-chip,
.region-card,
.timeline-item,
.metric-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(27, 117, 217, 0.1);
}

.about-media {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.video-frame {
  overflow: hidden;
  background: var(--bg-panel-strong);
  aspect-ratio: 16 / 10;
  position: relative;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
}

.video-play-ring,
.video-play-core {
  position: absolute;
  border-radius: 999px;
}

.video-play-ring {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(27, 117, 217, 0.08);
  animation: pulseRing 2.4s ease-in-out infinite;
}

.video-play-core {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  box-shadow: var(--shadow-gold);
}

.video-play-core::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--gold-ink);
}

.video-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.84);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid rgba(27, 117, 217, 0.18);
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.62;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.media-stack,
.culture-visuals {
  display: grid;
  gap: 18px;
}

.media-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.media-card,
.visual-card {
  overflow: hidden;
  background: var(--bg-panel-strong);
}

.media-card img,
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media .media-stack {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100%;
  margin: 0;
  justify-self: stretch;
}

.about-media .media-card {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

.about-media .about-media-single {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.about-media .offset-card {
  transform: none;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-bright);
  cursor: pointer;
}

.carousel-arrow:hover {
  background: rgba(27, 117, 217, 0.12);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--gold);
}

.testimonial-card {
  padding: 24px;
  min-height: 100%;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar,
.manager-photo,
.generic-card-media {
  object-fit: cover;
}

.testimonial-avatar {
  width: 66px;
  height: 66px;
  border-radius: 18px;
}

.testimonial-metric {
  margin: 16px 0 12px;
  font-size: 1.18rem;
}

.testimonial-copy {
  min-height: 114px;
}

.manager-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.manager-card {
  padding: 14px 12px 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.manager-photo {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  border-radius: 16px;
  margin-bottom: 12px;
}

.manager-card h3 {
  margin: 12px 0 6px;
  font-size: 1.06rem;
  line-height: 1.15;
}

.manager-role {
  font-size: 0.88rem;
  line-height: 1.55;
}

.manager-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(27, 117, 217, 0.08);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
}

.manager-meta {
  margin: 10px 0 12px;
  font-size: 0.82rem;
}

.manager-card .button {
  margin-top: auto;
  padding: 12px 10px;
  font-size: 0.82rem;
}

.manager-qr {
  position: absolute;
  right: 10px;
  bottom: 66px;
  width: 92px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(8, 17, 31, 0.94);
  border: 1px solid rgba(27, 117, 217, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.manager-qr img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.manager-qr span {
  display: none;
  margin-top: 0;
  color: var(--text-faint);
  font-size: 0.72rem;
  text-align: center;
}

.manager-card:hover .manager-qr {
  opacity: 1;
  transform: translateY(0);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
}

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

.faq-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.faq-category-row span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(27, 117, 217, 0.08);
  border: 1px solid rgba(27, 117, 217, 0.14);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq-item summary small {
  color: var(--gold-bright);
}

.faq-body {
  padding: 0 0 22px;
}

.final-cta {
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(27, 117, 217, 0.08), rgba(27, 117, 217, 0.02)),
    linear-gradient(140deg, rgba(9, 19, 34, 0.98), rgba(14, 35, 60, 0.94));
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 117, 217, 0.65), transparent);
}

.final-cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(27, 117, 217, 0.12), transparent 64%);
  pointer-events: none;
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  margin-bottom: 24px;
}

.timeline-panel,
.service-side-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.culture-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
}

.culture-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.culture-cards article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(27, 117, 217, 0.1);
}

.culture-cards strong {
  display: block;
  margin-bottom: 10px;
}

.culture-visuals {
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 1fr auto;
}

.video-window-card {
  position: relative;
  min-height: 220px;
}

.visual-card {
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.visual-card.large {
  grid-row: span 2;
}

.stat-card-visual {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 6px;
  background:
    linear-gradient(140deg, rgba(27, 117, 217, 0.12), rgba(24, 66, 118, 0.32)),
    rgba(9, 19, 34, 0.92);
}

.contact-page-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
}

.contact-primary {
  display: grid;
  gap: 18px;
}

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

.standard-chip {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(27, 117, 217, 0.1);
}

.standard-chip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.standard-chip span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

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

.region-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.form-head h2 {
  margin: 14px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1;
}

.quote-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

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

.form-grid span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(4, 10, 18, 0.72);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: rgba(27, 117, 217, 0.42);
  box-shadow: 0 0 0 4px rgba(27, 117, 217, 0.08);
}

.full-span {
  grid-column: 1 / -1;
}

.captcha-box img {
  width: 100%;
  max-width: 180px;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.stats-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -18px;
}

.stats-chip strong {
  font-size: 1.45rem;
}

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

.service-stack {
  gap: 22px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, 0.92fr);
  gap: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.service-detail-card:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(27, 117, 217, 0.04), transparent 38%),
    var(--bg-panel);
}

.service-detail-card:nth-child(odd) {
  background:
    linear-gradient(135deg, rgba(28, 80, 145, 0.08), transparent 38%),
    var(--bg-panel);
}

.service-detail-index {
  position: absolute;
  right: 26px;
  top: 22px;
  color: rgba(27, 117, 217, 0.28);
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 117, 217, 0.42), transparent);
}

.service-detail-lead {
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.service-detail-actions .button {
  justify-self: start;
}

.metric-card p {
  margin-bottom: 0;
}

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

.generic-card {
  overflow: hidden;
}

.generic-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.generic-card-body {
  padding: 24px;
}

.narrow-panel {
  width: min(900px, calc(100% - 32px));
}

.site-footer {
  padding: 46px 0 28px;
  background: rgba(4, 10, 19, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.96);
  border: 1px solid rgba(27, 117, 217, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.chat-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(27, 117, 217, 0.06);
  pointer-events: none;
}

.chat-float-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(27, 117, 217, 0.1);
  animation: chatPulse 1.8s ease-in-out infinite;
}

@keyframes chatPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(27, 117, 217, 0.08);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(27, 117, 217, 0.14);
  }
}

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

.chat-float-copy strong {
  color: var(--text);
  font-size: 0.86rem;
}

.chat-float-copy small {
  color: var(--text-faint);
  font-size: 0.72rem;
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, 1fr);
  padding-bottom: 26px;
}

.footer-column h4 {
  margin: 0 0 14px;
}

.footer-brand p {
  max-width: 32ch;
}

.footer-links,
.footer-social,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-social {
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(27, 117, 217, 0.18);
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.02);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: rgba(27, 117, 217, 0.14);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.footer-meta {
  display: grid;
  gap: 4px;
}

.footer-meta p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .about-grid,
  .about-story-grid,
  .culture-grid,
  .contact-page-grid,
  .service-focus-grid,
  .service-detail-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid.hero-grid-bannered {
    min-height: auto;
  }

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

  .carousel-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .generic-grid,
  .footer-grid,
  .culture-cards,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .site-main {
    padding-top: 18px;
  }

  .page-hero {
    padding: 26px 0 32px;
  }

  .nav-banner-strip {
    padding: 14px 0 4px;
  }

  .nav-banner-card {
    border-radius: 22px;
  }

  .nav-banner-image {
    max-height: min(70vw, 320px);
  }

  .nav-route-blue,
  .nav-route-gold {
    stroke-width: 1.8;
  }

  .nav-route-faint {
    stroke-width: 1.3;
  }

  .nav-route-node {
    animation-duration: 4.6s;
  }

  .hero-home::before,
  .section::before,
  .page-hero::before {
    top: 12px;
    width: calc(100% - 14px);
    height: calc(100% - 24px);
    border-radius: 24px;
  }

  .hero-home::after,
  .section::after,
  .page-hero::after {
    width: min(180px, 58vw);
    height: 20px;
  }

  .hero-home > .container::before,
  .hero-home > .container::after,
  .section > .container::before,
  .section > .container::after,
  .page-hero > .container::before,
  .page-hero > .container::after {
    top: -18px;
    width: 44px;
  }

  .brand-logo {
    height: 40px;
    max-width: min(200px, 56vw);
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100dvh;
    padding: 90px 24px 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(5, 12, 22, 0.98);
    border-left: 1px solid rgba(27, 117, 217, 0.12);
    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-button {
    width: 100%;
    margin-top: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 40;
  }

  .nav-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-canvas {
    display: none;
  }

  .site-aura,
  .page-noise {
    display: none;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-grid.hero-grid-bannered {
    gap: 16px;
    padding: 16px;
  }

  .hero-flow-overlay {
    opacity: 0.78;
  }

  .hero-grid-bannered .hero-copy,
  .hero-grid-bannered .hero-panel {
    min-height: auto;
    display: block;
  }

  .hero-grid-bannered .hero-copy {
    padding: 26px 22px;
  }

  .hero-grid-bannered .hero-panel {
    padding: 24px 20px;
  }

  .hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.3rem, 10vw, 3.1rem);
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-grid-bannered .hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.3rem, 10vw, 3.1rem);
  }

  .trust-strip,
  .service-grid,
  .workflow-grid,
  .generic-grid,
  .footer-grid,
  .form-grid,
  .about-facts,
  .culture-cards,
  .region-grid,
  .contact-standards,
  .detail-data-grid,
  .stats-bar,
  .hero-locations {
    grid-template-columns: 1fr;
  }

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

  .manager-card {
    padding: 12px 10px 14px;
  }

  .manager-photo {
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .manager-qr {
    display: none;
  }

  .service-detail-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-stack,
  .culture-visuals {
    grid-template-columns: 1fr;
  }

  .video-play {
    width: 84px;
    height: 84px;
  }

  .video-play-core {
    width: 48px;
    height: 48px;
  }

  .video-play-core::before {
    left: 18px;
    top: 14px;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .offset-card {
    transform: none;
  }

  .carousel-track {
    grid-auto-columns: 100%;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

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

  .chat-float {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-banner-card::after,
  .nav-route-blue,
  .nav-route-gold,
  .nav-route-node {
    animation: none;
  }

  .hero-flow-overlay .nav-route-comet {
    display: none;
  }
}

/* contact-region-fix-20260417 */
.region-card {
  padding: 20px 18px;
  min-width: 0;
}

.region-card a {
  display: block;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}
