@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap");

:root {
  --color-primary: #005eb8;
  --color-primary-dark: #001233;
  --color-primary-light: #e8f1fa;
  --color-accent: #0d82d1;
  --color-ink: #001233;
  --color-muted: #686f76;
  --color-surface: #f3f6f8;
  --color-white: #ffffff;
  --color-footer-bar: #001233;
  --font-brand: "Montserrat", "Inter", system-ui, sans-serif;
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --font-policy: "Georgia", "Times New Roman", Times, serif;
  --max: 1120px;
  --header-h: 118px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --radius-sm: 4px;
  --border: 1px solid rgba(0, 18, 51, 0.1);
  --shadow: 0 8px 28px rgba(0, 18, 51, 0.07);
  --shadow-hover: 0 14px 36px rgba(0, 94, 184, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--color-ink);
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--ghost:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
}

.btn--light:hover {
  background: transparent;
  color: var(--color-white);
}

.section {
  padding: 4.5rem 0;
}

.section--surface {
  background: var(--color-surface);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 0.75rem;
  border-radius: var(--radius-sm);
}

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}

.accent-rule {
  width: 48px;
  height: 3px;
  background: var(--color-primary);
  margin-bottom: 1rem;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.2s;
}

.doc-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.doc-link svg {
  flex-shrink: 0;
}

/* ?? Header ?? */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(26, 35, 50, 0.08);
}

.site-header--fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 4px 20px rgba(0, 18, 51, 0.1);
}

body.has-fixed-header {
  padding-top: 124px;
}

.brand-font {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.topbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 36px;
  padding-block: 0.35rem;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
}

.topbar__links a:hover {
  color: var(--color-white);
}

.topbar__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.lang-switch button {
  padding: 0.2rem 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-switch button.is-active {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
  padding-block: 0.35rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  max-width: min(420px, 52vw);
}

.logo__mark {
  height: 64px;
  width: auto;
  max-width: min(160px, 28vw);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(0, 94, 184, 0.22);
}

.logo__name {
  display: none;
}

.logo__legal {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.55vw, 1.2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-primary-dark);
  max-width: 16.5rem;
}

.logo__tr {
  display: none;
}

.brand-font {
  font-family: var(--font-brand);
}

@media (max-width: 720px) {
  .logo__legal {
    max-width: 11rem;
    font-size: 0.85rem;
  }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav-main > a,
.nav-dropdown > summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-ink);
  list-style: none;
  cursor: pointer;
}

.nav-main > a:hover,
.nav-dropdown > summary:hover {
  color: var(--color-primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.65;
  vertical-align: middle;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 0.5rem 0;
  display: none;
  overflow: hidden;
}

.nav-dropdown[open] .nav-dropdown__menu {
  display: block;
  animation: fadeDown 0.25s var(--ease);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  color: var(--color-ink);
}

.nav-dropdown__menu a.nav-dropdown__sub {
  padding-left: 1.75rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.nav-dropdown__menu a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: var(--border);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
}

/* ?? Hero ?? */
.hero {
  position: relative;
  min-height: min(78vh, 620px);
  display: grid;
  align-items: stretch;
  color: var(--color-white);
  overflow: hidden;
  background-color: #0d82d1;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 18, 51, 0.72) 0%, rgba(0, 94, 184, 0.35) 48%, rgba(0, 18, 51, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 640px;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
  animation: fadeUp 0.8s var(--ease) both;
}

.hero__brand {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 0.5rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
}

.hero__tr {
  font-weight: 700;
  font-size: 0.55em;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__headline {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
  animation: fadeIn 1.2s var(--ease) both;
}

/* ?? Mission ?? */
.mission {
  padding: 4rem 0 2rem;
}

.mission__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}

.mission h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

/* �� Services 3D coverflow menu �� */
.services-section {
  position: relative;
  overflow: hidden;
  padding-block: 4.5rem;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(13, 130, 209, 0.35), transparent 55%),
    linear-gradient(165deg, #000b1f 0%, #001233 40%, #002a5c 100%);
  z-index: 0;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.015) 48px,
      rgba(255, 255, 255, 0.015) 49px
    ),
    radial-gradient(circle at 70% 80%, rgba(0, 94, 184, 0.35), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.services-section .section-title,
.services-section .eyebrow {
  color: #fff;
}

.services-section .section-title::after {
  background: #7dd0ff;
}

.services-head {
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.services-lead {
  margin: 0.85rem auto 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
}

.svc-3d-menu {
  display: grid;
  gap: 1.5rem;
}

.svc-coverflow {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 360px;
}

.svc-coverflow__scene {
  perspective: 1600px;
  perspective-origin: 50% 45%;
  height: 340px;
  touch-action: none;
  cursor: grab;
  overflow: visible;
  user-select: none;
}

.svc-coverflow__scene:active,
.svc-coverflow__scene.is-dragging {
  cursor: grabbing;
}

.svc-coverflow__hint {
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  white-space: nowrap;
}

.svc-coverflow__ring {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.svc-card3d {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(260px, 72vw);
  height: 300px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transform-style: preserve-3d;
  transform:
    translate(-50%, -50%)
    translateX(var(--ox, 0%))
    translateZ(var(--oz, 0px))
    rotateY(var(--ry, 0deg))
    scale(var(--sc, 1));
  opacity: var(--op, 1);
  z-index: var(--z, 1);
  transition: opacity 0.15s linear;
  will-change: transform, opacity;
}

.svc-coverflow__scene:not(.is-dragging) .svc-card3d {
  transition:
    transform 0.12s linear,
    opacity 0.12s linear;
}

.svc-coverflow__scene.is-dragging .svc-card3d {
  transition: none;
}

.svc-card3d__face {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.35rem;
  width: 100%;
  height: 100%;
  padding: 1.25rem 1.2rem 1.35rem;
  text-align: left;
  border-radius: 14px;
  color: #fff;
  background: #001233;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.5),
    0 8px 18px rgba(0, 18, 51, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateZ(0);
  isolation: isolate;
}

.svc-card3d__media {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.9) contrast(1.05) brightness(0.95);
  transform: scale(1.04);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.svc-card3d__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: background 0.45s var(--ease);
  background:
    linear-gradient(180deg, rgba(0, 18, 51, 0.28) 0%, rgba(0, 18, 51, 0.15) 38%, rgba(0, 18, 51, 0.78) 72%, rgba(0, 18, 51, 0.92) 100%),
    linear-gradient(145deg, rgba(10, 79, 150, 0.55) 0%, rgba(0, 94, 184, 0.45) 45%, rgba(0, 18, 51, 0.72) 100%);
}

.svc-card3d.is-active .svc-card3d__face {
  border-color: rgba(125, 208, 255, 0.4);
  box-shadow:
    0 32px 64px rgba(0, 94, 184, 0.5),
    0 0 0 1px rgba(125, 208, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.svc-card3d.is-active .svc-card3d__media {
  filter: saturate(1) contrast(1.08) brightness(1.02);
  transform: scale(1.07);
}

.svc-card3d.is-active .svc-card3d__wash {
  background:
    linear-gradient(180deg, rgba(0, 40, 90, 0.18) 0%, rgba(0, 40, 90, 0.08) 36%, rgba(0, 30, 70, 0.68) 70%, rgba(0, 18, 51, 0.88) 100%),
    linear-gradient(145deg, rgba(26, 127, 212, 0.42) 0%, rgba(13, 130, 209, 0.38) 40%, rgba(0, 94, 184, 0.55) 100%);
}

.svc-card3d__shine {
  position: absolute;
  inset: -40% -30%;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 60%
  );
  transform: translateX(-30%) rotate(8deg);
  pointer-events: none;
}

.svc-card3d.is-active .svc-card3d__shine {
  animation: svcShine 2.8s ease-in-out infinite;
}

@keyframes svcShine {
  0%, 100% { transform: translateX(-40%) rotate(8deg); }
  50% { transform: translateX(20%) rotate(8deg); }
}

.svc-card3d__num {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 3;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0, 18, 51, 0.65);
}

.svc-card3d__icon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 70px;
  height: 70px;
  z-index: 3;
  pointer-events: none;
}

.svc-card3d__pic {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 4px 10px rgba(0, 18, 51, 0.45));
  animation: svcFloat 4.5s ease-in-out infinite;
  user-select: none;
  -webkit-user-drag: none;
}

.svc-card3d.is-active .svc-card3d__pic {
  opacity: 1;
}

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

.svc-card3d__cat {
  position: relative;
  z-index: 3;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
  text-shadow: 0 1px 10px rgba(0, 18, 51, 0.7);
}

.svc-card3d__face strong {
  position: relative;
  z-index: 3;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 18, 51, 0.75);
}

.svc-card3d__face small {
  position: relative;
  z-index: 3;
  font-size: 0.78rem;
  line-height: 1.35;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 10px rgba(0, 18, 51, 0.7);
}

.svc-coverflow__nav {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 5;
}

.svc-coverflow__nav:hover {
  background: var(--color-primary);
  transform: scale(1.06);
}

.svc-detail3d {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.svc-detail3d.is-refresh .svc-detail3d__inner {
  animation: svcDetailIn 0.35s var(--ease);
}

@keyframes svcDetailIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.svc-detail3d__inner {
  padding: 1.4rem 1.5rem 1.55rem;
}

.svc-detail3d__cat {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.svc-detail3d__inner h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  color: var(--color-primary-dark);
}

.svc-detail3d__desc {
  margin: 0 0 1rem;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 52rem;
}

.svc-detail3d__scope > span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.svc-detail3d__scope ul {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
}

.svc-detail3d__scope li {
  position: relative;
  padding: 0 0 0 1.15rem;
  background: none;
  border: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-ink);
}

.svc-detail3d__scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.42rem;
  height: 0.42rem;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  box-sizing: border-box;
}

.svc-detail3d__scope li strong {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.svc-detail3d__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 800px) {
  .svc-coverflow {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .svc-coverflow__nav {
    position: absolute;
    top: 42%;
    z-index: 6;
  }

  .svc-coverflow__nav--prev { left: 0.25rem; }
  .svc-coverflow__nav--next { right: 0.25rem; }

  .svc-coverflow__scene {
    height: 300px;
  }

  .svc-card3d {
    width: min(220px, 68vw);
    height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-card3d,
  .svc-card3d__pic,
  .svc-card3d.is-active .svc-card3d__shine,
  .svc-detail3d {
    animation: none;
    transition: none;
  }
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  min-height: 3.2em;
}

/* �� Operating Code �� */
.oc-section {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.oc-head {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.oc-rev {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

.oc-intro {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.oc-intro p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.oc-lead {
  margin-top: 1rem !important;
  padding: 0.95rem 1.1rem;
  background: var(--color-white);
  border: var(--border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
  color: var(--color-ink) !important;
  font-weight: 600;
}

.oc-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: stretch;
}

.oc-panel__copy {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.oc-panel__copy h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.35rem;
}

.oc-roadmap {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-ink);
}

.oc-panel__visual {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(13, 130, 209, 0.35), transparent 55%),
    linear-gradient(145deg, var(--color-primary-dark), var(--color-primary) 65%, #0a6eb0);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.oc-panel__visual.has-photo {
  background-size: cover;
  animation: oc-kenburns 18s ease-in-out infinite alternate;
}

.oc-panel__visual.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 18, 51, 0.35), transparent 55%);
  pointer-events: none;
}

@keyframes oc-kenburns {
  from {
    background-position: 30% 40%;
    transform: scale(1);
  }
  to {
    background-position: 70% 55%;
    transform: scale(1.06);
  }
}

.oc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.oc-card {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  opacity: 0;
  transform: translateY(14px);
}

.oc-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    box-shadow 0.25s var(--ease);
}

.oc-card.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.oc-card:nth-child(7) {
  grid-column: 2;
}

.oc-card__media {
  position: relative;
  height: 148px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  overflow: hidden;
  transform: scale(1.001);
  transition: transform 0.7s var(--ease);
}

.oc-card.is-visible:hover .oc-card__media {
  transform: scale(1.07);
}

.oc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 18, 51, 0.28));
  pointer-events: none;
}

.oc-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.oc-card.is-visible:hover .oc-card__media::before {
  animation: oc-sheen 0.9s ease forwards;
}

@keyframes oc-sheen {
  to {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .oc-panel__visual.has-photo {
    animation: none;
  }

  .oc-card,
  .oc-card.is-visible,
  .oc-card__media,
  .oc-card.is-visible:hover .oc-card__media::before {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.oc-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.oc-card__mark {
  width: 2.4rem;
  height: 2.1rem;
  margin-bottom: 0.75rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--color-primary);
  display: grid;
  place-items: end center;
  padding-bottom: 0.25rem;
}

.oc-card:nth-child(even) .oc-card__mark {
  background: #6f8ea8;
}

.oc-card__mark span {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.oc-card h4 {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.oc-card > .oc-card__body > p,
.oc-card__body > p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.oc-card__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.28rem;
  margin-top: auto;
}

.oc-card__points li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.8rem;
  color: var(--color-ink);
  line-height: 1.35;
}

.oc-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

@media (max-width: 960px) {
  .oc-panel,
  .oc-grid {
    grid-template-columns: 1fr;
  }
  .oc-card:nth-child(7) {
    grid-column: auto;
  }
}

/* �� Vision / Global �� */
.split-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ?? Feature rows ?? */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: var(--border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row--reverse .feature-row__media {
  order: 2;
}

.feature-row__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-accent) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-row__media.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 18, 51, 0.12));
  pointer-events: none;
}

.feature-row__media:not(.has-photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 32px 32px;
}

.feature-row h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.feature-row p {
  color: var(--color-muted);
}

/* �� Cards �� */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.info-card p,
.info-card address {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-style: normal;
  margin-bottom: 0.75rem;
}

.info-card .btn {
  margin-top: 0.5rem;
  width: 100%;
}

.info-card .btn + .btn {
  margin-top: 0.5rem;
}

/* �� Contact �� */
.contact-section {
  position: relative;
}

.contact-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.contact-head__lead {
  margin: 0.85rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact-head__lead strong {
  color: var(--color-primary);
  font-weight: 700;
}

.contact-primary {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  align-items: stretch;
}

.contact-featured {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(13, 130, 209, 0.18), transparent 55%),
    linear-gradient(145deg, var(--color-primary-dark) 0%, var(--color-primary) 70%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 28px;
  opacity: 0.25;
  pointer-events: none;
}

.contact-featured__badge {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 1rem;
}

.contact-featured h3 {
  position: relative;
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin: 0 0 1.25rem;
  max-width: 28ch;
}

.contact-lines {
  position: relative;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  flex: 1;
}

.contact-lines li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.contact-lines a {
  color: #fff;
  font-weight: 600;
}

.contact-lines a:hover {
  text-decoration: underline;
}

.contact-ico {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-ico svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-email {
  word-break: break-all;
}

.contact-featured__cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.contact-featured .btn:not(.btn--ghost) {
  background: #fff;
  color: var(--color-primary);
}

.contact-featured .btn:not(.btn--ghost):hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.contact-featured .btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.contact-featured .btn--ghost:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.contact-quick {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.85rem;
}

.contact-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.contact-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 94, 184, 0.3);
}

.contact-tile__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-tile__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-tile__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-tile__body strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--color-ink);
}

.contact-tile__body > .i18n {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.35;
}

.contact-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.45rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.contact-card__note {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--color-ink);
  line-height: 1.4;
}

.contact-card__note a {
  color: var(--color-primary);
  font-weight: 700;
}

.contact-lines--compact {
  margin: 0;
  gap: 0.55rem;
}

.contact-lines--compact li {
  display: block;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-lines--compact a {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 960px) {
  .contact-primary,
  .contact-secondary {
    grid-template-columns: 1fr;
  }

  .contact-quick {
    grid-template-rows: none;
  }
}

/* ?? ISO docs ?? */
.page-hero {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  padding: 3.5rem 0 3rem;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.35rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
  margin: 0;
}

.docs-list {
  display: grid;
  gap: 0.85rem;
}

.doc-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.35rem;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.doc-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(0, 87, 168, 0.08);
}

.doc-reveal {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.doc-reveal > summary {
  list-style: none;
  cursor: pointer;
}

.doc-reveal > summary::-webkit-details-marker {
  display: none;
}

.doc-item--summary {
  width: 100%;
}

.doc-reveal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.2s;
}

.doc-reveal__hide {
  display: none !important;
}

.doc-reveal[open] .doc-reveal__show {
  display: none !important;
}

.doc-reveal[open] .doc-reveal__hide {
  display: inline !important;
}

.doc-reveal[open] .doc-reveal__action {
  background: var(--color-primary-dark);
}

.policy-doc--reveal {
  margin-top: 0.75rem;
  animation: fadeUp 0.45s var(--ease) both;
}

.doc-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.doc-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* �� Quality policy document �� */
.policy-doc {
  position: relative;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 820px;
  margin: 0 auto 0.5rem;
  overflow: hidden;
}

.policy-doc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.doc-control {
  margin: 1.15rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 18, 51, 0.08);
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--color-muted);
  font-weight: 500;
}

.doc-control:empty {
  display: none;
}

.policy-doc .doc-control {
  margin-top: 1.35rem;
}

.doc-item .doc-control {
  margin-top: 0.55rem;
  padding-top: 0;
  border-top: 0;
}

.policy-doc__head {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 18, 51, 0.08);
}

.policy-doc__eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
}

.policy-doc__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-policy);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.policy-doc__subtitle {
  margin: 0;
  font-family: var(--font-policy);
  font-size: 0.95rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.policy-doc__body {
  font-family: var(--font-policy);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-ink);
  text-align: justify;
  hyphens: auto;
}

.policy-doc__body p {
  margin: 0 0 1.15rem;
}

.policy-doc__body p:last-child {
  margin-bottom: 0;
}

.policy-doc__body h3 {
  margin: 1.5rem 0 0.65rem;
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-ink);
  text-align: left;
}

.policy-doc__body h3:first-child {
  margin-top: 0;
}

.policy-doc__body ul {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.policy-doc__body li {
  margin: 0 0 0.75rem;
}

.policy-doc__body li:last-child {
  margin-bottom: 0;
}

.policy-doc__body > *:last-child {
  margin-bottom: 0;
}

.policy-doc__sign {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(0, 18, 51, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  text-align: right;
}

.policy-doc__sign strong {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}

.policy-doc__sign span {
  font-family: var(--font-policy);
  font-size: 0.92rem;
  color: var(--color-muted);
  font-style: italic;
}

.quality-card .btn + .btn {
  margin-top: 0.55rem;
}

.quality-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.quality-card {
  padding: 1.75rem;
  background: var(--color-white);
  border: var(--border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quality-card h3 {
  color: var(--color-primary);
}

/* �� Locations explorer �� */
.loc-explorer {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 5rem);
  padding: 4.5rem 0 3.5rem;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(13, 130, 209, 0.45), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 78%, rgba(0, 94, 184, 0.5), transparent 55%),
    linear-gradient(155deg, #001233 0%, #003a75 42%, #005eb8 100%);
}

.loc-explorer__glow {
  position: absolute;
  inset: auto -20% -30% 35%;
  height: 70%;
  background: radial-gradient(circle, rgba(125, 208, 255, 0.18), transparent 62%);
  pointer-events: none;
}

.loc-explorer__shell {
  position: relative;
  z-index: 1;
}

.loc-explorer__intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.loc-explorer__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.loc-explorer__intro h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-brand);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
}

.loc-explorer__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  max-width: 42rem;
}

.loc-coverage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}

.loc-coverage__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.loc-coverage__item strong {
  font-family: var(--font-brand);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.loc-coverage__item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.loc-explorer__stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.loc-explorer__canvas {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 208, 255, 0.12), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), transparent 50%),
    rgba(0, 18, 51, 0.32);
  overflow: hidden;
}

.loc-net {
  position: absolute;
  inset: 0;
}

.loc-net__svg {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  margin: auto;
}

.loc-net__ring {
  fill: none;
  stroke: rgba(125, 208, 255, 0.22);
  stroke-width: 0.35;
}

.loc-net__ring--outer {
  stroke-dasharray: 2.2 1.6;
  animation: locOrbit 28s linear infinite;
}

.loc-net__ring--mid {
  stroke: rgba(125, 208, 255, 0.28);
}

.loc-net__ring--inner {
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 0.45;
}

.loc-net__spoke {
  stroke: rgba(125, 208, 255, 0.28);
  stroke-width: 0.4;
  transition: stroke 0.25s ease, stroke-width 0.25s ease;
}

.loc-net__spoke.is-active {
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 0.7;
}

@keyframes locOrbit {
  to { stroke-dashoffset: -80; }
}

.loc-net__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #1a7fd4, #005eb8 55%, #001233);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 10px rgba(125, 208, 255, 0.08), 0 18px 40px rgba(0, 18, 51, 0.35);
  pointer-events: none;
}

.loc-net__core strong {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.loc-net__core span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.loc-net__nodes {
  position: absolute;
  inset: 0;
}

.loc-net__node {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 7.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 30, 70, 0.72);
  color: #fff;
  cursor: pointer;
  padding: 0.7rem 0.55rem 0.65rem;
  text-align: center;
  font: inherit;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.loc-net__dot {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  background: #7dd0ff;
  box-shadow: 0 0 0 4px rgba(125, 208, 255, 0.18);
}

.loc-net__node strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.loc-net__node small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.65);
}

.loc-net__node:hover,
.loc-net__node.is-active {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 94, 184, 0.88);
  transform: translate(-50%, -50%) scale(1.04);
}

.loc-net__node.is-active .loc-net__dot {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
}

.loc-explorer__spotlight {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.loc-explorer__spotlight.is-swap {
  opacity: 0;
  transform: translateY(12px);
}

.loc-explorer__spotlight.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.loc-spot {
  position: relative;
  height: 100%;
  padding: 1.75rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.loc-spot__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.loc-spot__badge {
  align-self: flex-start;
  padding: 0.28rem 0.55rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #fff;
  color: #005eb8;
}

.loc-spot__region {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd0ff;
}

.loc-spot__city {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.95;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.loc-spot__role {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.loc-spot__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  max-width: 28rem;
}

.loc-spot__cover {
  margin: 0.15rem 0 0;
  padding: 0.7rem 0.8rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(125, 208, 255, 0.1);
  border-left: 3px solid #7dd0ff;
  max-width: 30rem;
}

.loc-spot__address {
  margin: 0.55rem 0 0;
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 28rem;
}

.loc-spot__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
}

.loc-spot__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.loc-spot__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.loc-spot__btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.loc-spot__btn--call {
  background: #fff;
  color: #005eb8;
  border-color: #fff;
}

.loc-spot__btn--call:hover {
  background: #e8f4ff;
  color: #003a75;
}

.loc-spot__switch {
  display: flex;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
}

.loc-spot__nav {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.loc-spot__nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.loc-explorer__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.loc-rail__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.loc-rail__tab strong {
  font-family: var(--font-brand);
  font-size: 0.98rem;
}

.loc-rail__tab span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.3;
}

.loc-rail__tab:hover,
.loc-rail__tab.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.loc-explorer__footnote {
  margin: 0 0 1.35rem;
  max-width: 42rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.loc-explorer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.loc-explorer .btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.loc-explorer .btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 960px) {
  .loc-coverage {
    grid-template-columns: 1fr;
  }

  .loc-explorer__stage {
    grid-template-columns: 1fr;
  }

  .loc-explorer__canvas,
  .loc-explorer__spotlight {
    min-height: 360px;
  }

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

@media (max-width: 560px) {
  .loc-explorer {
    padding: 3.5rem 0 2.5rem;
  }

  .loc-explorer__rail {
    grid-template-columns: 1fr;
  }

  .loc-spot__city {
    font-size: 2.4rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Turkey map command center —— */
.tr-map {
  --tr-ink: #e8f4ff;
  --tr-muted: rgba(232, 244, 255, 0.68);
  --tr-glass: rgba(8, 28, 58, 0.55);
  --tr-line: rgba(125, 208, 255, 0.35);
  --tr-accent: #7dd0ff;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 4rem);
  padding: 4.5rem 0 3.5rem;
  color: var(--tr-ink);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(13, 130, 209, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(0, 94, 184, 0.45), transparent 50%),
    linear-gradient(160deg, #000b1c 0%, #001233 38%, #002a5c 100%);
}

.tr-map__aurora {
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(125, 208, 255, 0.16), transparent 65%);
  pointer-events: none;
  animation: trAurora 12s ease-in-out infinite alternate;
}

.tr-map__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.tr-map__shell {
  position: relative;
  z-index: 1;
}

.tr-map__intro {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.tr-map__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tr-accent);
}

.tr-map__intro h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  color: #fff;
}

.tr-map__lead {
  margin: 0 0 1.5rem;
  color: var(--tr-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 38rem;
}

.tr-map__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 34rem;
}

.tr-map__stat {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(125, 208, 255, 0.16);
  backdrop-filter: blur(12px);
}

.tr-map__stat strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.tr-map__stat span {
  font-size: 0.78rem;
  color: var(--tr-muted);
}

.tr-map__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin: 1.75rem 0 1.25rem;
}

.tr-map__search {
  flex: 1 1 220px;
  max-width: 320px;
}

.tr-map__search input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 208, 255, 0.28);
  background: rgba(0, 18, 51, 0.45);
  color: #fff;
  outline: none;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tr-map__search input::placeholder {
  color: rgba(232, 244, 255, 0.45);
}

.tr-map__search input:focus {
  border-color: var(--tr-accent);
  box-shadow: 0 0 0 3px rgba(125, 208, 255, 0.18);
}

.tr-map__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tr-map__chip {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 208, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--tr-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.tr-map__chip:hover,
.tr-map__chip.is-active {
  color: #fff;
  border-color: rgba(125, 208, 255, 0.55);
  background: rgba(13, 130, 209, 0.35);
}

.tr-map__stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  min-height: 520px;
}

.tr-map__viewport {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(125, 208, 255, 0.18);
  background:
    radial-gradient(circle at 30% 40%, rgba(13, 130, 209, 0.2), transparent 45%),
    rgba(0, 12, 32, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  aspect-ratio: 1080 / 607;
  min-height: 380px;
  touch-action: pan-y;
}

.tr-map__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.tr-map__camera {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tr-map__outline,
.tr-map__land {
  opacity: 1;
}

.tr-map__land path {
  fill: #0a3d73;
  stroke: rgba(125, 208, 255, 0.28);
  stroke-width: 0.45;
}

.tr-map__cover {
  pointer-events: none;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.tr-map__cover.is-animated {
  animation: trCoverIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--pin-i, 0) * 70ms);
}

.tr-map__cover-dot {
  fill: #9ad7ff;
  filter: drop-shadow(0 0 5px rgba(125, 208, 255, 0.7));
}

.tr-map__cover.is-animated .tr-map__cover-dot {
  animation: trCoverGlow 2.8s ease-in-out infinite;
  animation-delay: calc(0.9s + var(--pin-i, 0) * 120ms);
}

.tr-map__cover-ring {
  fill: none;
  stroke: rgba(125, 208, 255, 0.4);
  stroke-width: 1;
  opacity: 0.55;
  transform-box: fill-box;
  transform-origin: center;
}

.tr-map__cover.is-animated .tr-map__cover-ring {
  animation: trPulse 3.2s ease-out infinite;
  animation-delay: calc(0.85s + var(--pin-i, 0) * 90ms);
}

.tr-map__cover-ring--late {
  stroke: rgba(125, 208, 255, 0.22);
}

.tr-map__cover.is-animated .tr-map__cover-ring--late {
  animation-delay: calc(1.2s + var(--pin-i, 0) * 90ms);
}

.tr-map__cover.is-hub .tr-map__cover-dot {
  fill: #fff;
  filter: drop-shadow(0 0 10px rgba(125, 208, 255, 0.95));
}

.tr-map__cover.is-hub .tr-map__cover-ring {
  stroke: rgba(125, 208, 255, 0.7);
}

.tr-map__cover.is-animated.is-hub .tr-map__cover-ring {
  animation: trPulseFast 2s ease-out infinite;
}

.tr-map__cover-label {
  fill: rgba(200, 230, 255, 0.55);
  font-family: var(--font-brand);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  pointer-events: none;
  opacity: 0;
}

.tr-map__cover.is-animated .tr-map__cover-label {
  animation: trCoverLabelIn 0.55s var(--ease) forwards;
  animation-delay: calc(0.4s + var(--pin-i, 0) * 70ms);
}

.tr-map__cover.is-hub .tr-map__cover-label {
  fill: rgba(255, 255, 255, 0.8);
  font-size: 10px;
}

.tr-map__link--cover {
  stroke: rgba(125, 208, 255, 0.22);
  stroke-width: 1;
  stroke-dasharray: 3 10;
  opacity: 0;
}

.tr-map__link--cover.is-animated {
  animation: trCoverLinkIn 1.1s var(--ease) forwards, trFlow 14s linear infinite;
  animation-delay: calc(0.08s + var(--pin-i, 0) * 45ms), calc(1.1s + var(--pin-i, 0) * 45ms);
}

@keyframes trCoverIn {
  from {
    opacity: 0;
    transform: scale(0.35);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes trCoverGlow {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@keyframes trCoverLabelIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes trCoverLinkIn {
  from {
    opacity: 0;
    stroke-dashoffset: 90;
  }
  to {
    opacity: 0.55;
    stroke-dashoffset: 0;
  }
}

.tr-map__link {
  stroke: var(--tr-line);
  stroke-width: 1.2;
  stroke-dasharray: 5 9;
  opacity: 0.4;
  animation: trFlow 9s linear infinite;
  transition: opacity 0.4s var(--ease), stroke 0.4s var(--ease), stroke-width 0.4s var(--ease);
}

.tr-map__link--hub {
  stroke: rgba(125, 208, 255, 0.45);
  stroke-width: 1.5;
  opacity: 0.7;
}

.tr-map__link--office {
  stroke: rgba(125, 208, 255, 0.55);
  stroke-width: 1.8;
  opacity: 0.85;
}

.tr-map__link.is-hot {
  stroke: var(--tr-accent);
  stroke-width: 2.4;
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(125, 208, 255, 0.55));
}

.tr-map__link.is-hidden,
.tr-map__pin.is-hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.tr-map__pin {
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}

.tr-map.is-revealed .tr-map__pin {
  opacity: 1;
  transition-delay: calc(var(--pin-i, 0) * 90ms);
}

.tr-map__pin.is-dim {
  opacity: 0.38;
}

.tr-map__pin-core {
  filter: drop-shadow(0 0 8px rgba(125, 208, 255, 0.75));
  transition: r 0.35s var(--ease);
}

.tr-map__pin-ring {
  fill: none;
  stroke: rgba(125, 208, 255, 0.45);
  stroke-width: 1.5;
  opacity: 0.35;
  transform-origin: center;
}

.tr-map__pin-ring--outer {
  animation: trPulse 2.8s ease-out infinite;
}

.tr-map__pin.is-active .tr-map__pin-ring,
.tr-map__pin.is-hover .tr-map__pin-ring {
  opacity: 1;
  stroke: var(--tr-accent);
}

.tr-map__pin.is-active .tr-map__pin-ring--outer {
  animation: trPulseFast 1.6s ease-out infinite;
}

.tr-map__pin.is-active .tr-map__pin-core {
  filter: drop-shadow(0 0 14px rgba(125, 208, 255, 0.95));
}

.tr-map__pin-label {
  fill: rgba(255, 255, 255, 0.92);
  font-family: var(--font-brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0.85;
  paint-order: stroke;
  stroke: rgba(0, 12, 32, 0.65);
  stroke-width: 3px;
  stroke-linejoin: round;
  transition: opacity 0.3s var(--ease), fill 0.3s var(--ease);
}

.tr-map__pin.is-active .tr-map__pin-label,
.tr-map__pin.is-hover .tr-map__pin-label {
  opacity: 1;
  fill: #fff;
}

.tr-map__hint {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--tr-muted);
  background: rgba(0, 12, 32, 0.55);
  border: 1px solid rgba(125, 208, 255, 0.18);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.tr-map__panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--tr-glass);
  border: 1px solid rgba(125, 208, 255, 0.2);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  min-height: 0;
  max-width: 720px;
  width: 100%;
  justify-self: center;
  opacity: 0.92;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.45s var(--ease), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.tr-map__panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tr-map__panel.is-swap {
  opacity: 0.55;
  transform: translateY(8px) scale(0.985);
}

.tr-map__panel-empty {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 280px;
  padding: 2rem;
  color: var(--tr-muted);
  text-align: center;
}

.tr-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
}

.tr-panel__media {
  position: relative;
  height: 140px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.tr-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 12, 32, 0.85) 100%);
}

.tr-panel__badge {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #001233;
  background: var(--tr-accent);
}

.tr-panel__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.tr-panel__country {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tr-accent);
}

.tr-panel__body h2 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  color: #fff;
}

.tr-panel__role,
.tr-panel__note,
.tr-panel__coverage {
  margin: 0;
  color: var(--tr-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.tr-panel__address {
  margin: 0.55rem 0 0;
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.tr-panel__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.85rem 0 0.5rem;
}

.tr-panel__meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 244, 255, 0.5);
  margin: 0 0 0.2rem;
}

.tr-panel__meta dd {
  margin: 0;
  font-size: 0.88rem;
  color: #fff;
}

.tr-panel__meta a {
  color: var(--tr-accent);
}

.tr-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1rem;
}

.tr-map .btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.tr-map .btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tr-panel__nav {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.tr-panel__dir {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(125, 208, 255, 0.3);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.25s var(--ease);
}

.tr-panel__dir:hover {
  background: rgba(125, 208, 255, 0.2);
}

.tr-map__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 1rem;
}

.tr-map__tab {
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(125, 208, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--tr-muted);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.tr-map__tab strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.tr-map__tab span {
  font-size: 0.75rem;
  line-height: 1.3;
}

.tr-map__tab:hover,
.tr-map__tab.is-active {
  border-color: rgba(125, 208, 255, 0.5);
  background: rgba(13, 130, 209, 0.28);
  transform: translateY(-2px);
}

.tr-map__footnote {
  margin: 0;
  max-width: 44rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--tr-muted);
}

@keyframes trPulse {
  0% { transform: scale(0.85); opacity: 0.55; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes trPulseFast {
  0% { transform: scale(0.9); opacity: 0.7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@keyframes trFlow {
  to { stroke-dashoffset: -120; }
}

@keyframes trAurora {
  from { transform: translateY(0) scale(1); opacity: 0.7; }
  to { transform: translateY(18px) scale(1.05); opacity: 1; }
}

/* Homepage network teaser */
.tr-teaser {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(13, 130, 209, 0.35), transparent 50%),
    linear-gradient(145deg, #001233, #003a75 70%);
  color: #fff;
  border: 1px solid rgba(125, 208, 255, 0.2);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tr-teaser__map {
  height: 120px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 38%, #7dd0ff 0 4px, transparent 5px),
    radial-gradient(circle at 18% 52%, #7dd0ff 0 3px, transparent 4px),
    radial-gradient(circle at 55% 72%, #7dd0ff 0 3px, transparent 4px),
    radial-gradient(circle at 72% 68%, #7dd0ff 0 3px, transparent 4px),
    linear-gradient(160deg, rgba(13, 130, 209, 0.25), rgba(0, 18, 51, 0.2));
  border: 1px solid rgba(125, 208, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.tr-teaser__map::before {
  content: "";
  position: absolute;
  inset: 18% 12% 22% 10%;
  border-radius: 40% 45% 42% 38%;
  border: 1.5px solid rgba(125, 208, 255, 0.35);
  background: rgba(13, 130, 209, 0.12);
  box-shadow: 0 0 24px rgba(125, 208, 255, 0.15);
}

.tr-teaser h2 {
  margin: 0;
  color: #fff;
}

.tr-teaser p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
}

.tr-teaser .btn {
  align-self: flex-start;
}

@media (max-width: 960px) {
  .tr-map__stage {
    grid-template-columns: 1fr;
  }

  .tr-map__viewport,
  .tr-map__panel,
  .tr-panel,
  .tr-map__svg {
    min-height: 360px;
  }

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

  .tr-map__stats {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .tr-map {
    padding: 3.25rem 0 2.5rem;
  }

  .tr-map__rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }

  .tr-map__tab {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .tr-panel__meta {
    grid-template-columns: 1fr;
  }

  .tr-map__hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tr-map__aurora,
  .tr-map__link,
  .tr-map__pin-ring--outer,
  .tr-map__pin.is-active .tr-map__pin-ring--outer,
  .tr-map__cover,
  .tr-map__cover.is-animated,
  .tr-map__cover.is-animated .tr-map__cover-dot,
  .tr-map__cover.is-animated .tr-map__cover-ring,
  .tr-map__cover.is-animated .tr-map__cover-label,
  .tr-map__link--cover,
  .tr-map__link--cover.is-animated {
    animation: none !important;
  }

  .tr-map__cover,
  .tr-map__cover.is-animated,
  .tr-map__cover-label,
  .tr-map__cover.is-animated .tr-map__cover-label {
    opacity: 1;
  }

  .tr-map__link--cover,
  .tr-map__link--cover.is-animated {
    opacity: 0.55;
  }

  .tr-map__camera,
  .tr-map__panel,
  .tr-map__pin,
  .tr-map__outline {
    transition: none !important;
  }
}

/* —— CTA —— */
.cta-banner {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 2.5rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--color-white);
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ?? Footer ?? */
.site-footer {
  padding-top: 3rem;
  background: var(--color-white);
  border-top: var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-grid h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li + li {
  margin-top: 0.45rem;
}

.footer-grid a:hover {
  color: var(--color-primary);
}

.about-section {
  padding-top: 3.5rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.about-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.about-copy p {
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-intro-media,
.about-split__media {
  min-height: 280px;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, var(--color-primary-dark), var(--color-primary));
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-intro-media.has-photo,
.about-split__media.has-photo {
  background-color: var(--color-primary-light);
}

.about-split__media.has-photo {
  background-position: center 42%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 2.25rem;
}

.about-stat {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-stat strong {
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--color-primary);
  line-height: 1;
}

.about-stat span {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-grid--stack {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.about-grid--stack .info-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.about-grid--stack .info-card .btn {
  margin-top: auto;
  width: auto;
  align-self: flex-start;
}

.about-block {
  margin-bottom: 2.5rem;
}

.about-standards {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.about-standard {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-ink);
  border-top: 3px solid var(--color-primary);
}

.about-certs-lead {
  color: var(--color-muted);
  max-width: 40rem;
  margin: 0.75rem 0 1.25rem;
}

.about-certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.about-cert {
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.about-cert:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.about-cert__mark {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-primary);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
}

.about-cert h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.about-cert p {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  flex: 1;
}

.about-cert .btn {
  align-self: flex-start;
  width: auto;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

@media (max-width: 960px) {
  .about-intro-grid,
  .about-split,
  .about-stats,
  .about-standards,
  .about-certs {
    grid-template-columns: 1fr;
  }

  .about-intro-media,
  .about-split__media {
    min-height: 220px;
  }

  body.has-fixed-header {
    padding-top: 112px;
  }
}

.about-layout {
  max-width: 900px;
}

.footer-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  max-width: 260px;
  margin-left: auto;
}

.footer-note strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.footer-note p {
  margin: 0;
  line-height: 1.45;
  font-size: 0.85rem;
}

.footer-brand-mark {
  display: none;
}

.footer-bar {
  background: var(--color-footer-bar);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.85rem 0;
}

.footer-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.to-top {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  display: grid;
  place-items: center;
}

.to-top:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ?? Animations ?? */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.95;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeUp 0.7s var(--ease) both;
}

/* ?? Responsive ?? */
@media (max-width: 960px) {
  .services-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-panel,
  .feature-row,
  .feature-row--reverse .feature-row__media,
  .quality-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse .feature-row__media {
    order: 0;
  }

  .hero__visual {
    background-position: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0;
    box-shadow: 0 12px 24px rgba(26, 35, 50, 0.12);
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-main > a,
  .nav-dropdown {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(26, 35, 50, 0.08);
  }

  .nav-dropdown__menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 0.5rem;
  }

  .navbar {
    position: relative;
  }

  .topbar__links {
    display: none;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .doc-item {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }
}

/* �� Certificates list page �� */
.certs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.certs-list__item + .certs-list__item {
  border-top: var(--border);
}

.certs-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  color: var(--color-ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.certs-list__link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.certs-list__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
}

.certs-list__action {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-transform: uppercase;
}

/* ?? i18n show/hide ?? */
.i18n { display: none !important; }
html[lang="tr"] .i18n[lang="tr"],
html:not([lang="en"]) .i18n[lang="tr"] { display: revert !important; }
html[lang="en"] .i18n[lang="en"] { display: revert !important; }

/* —— Cookie consent (zorunlu) —— */
body.cookie-locked,
body.renewal-locked {
  overflow: hidden;
}

body.cookie-locked > *:not(#cookie-consent),
body.renewal-locked > *:not(#renewal-notice) {
  pointer-events: none;
  user-select: none;
}

/* —— First-visit renewal notice —— */
.renewal-notice {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: auto;
}

.renewal-notice__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(13, 130, 209, 0.35), transparent 50%),
    rgba(0, 18, 51, 0.72);
  backdrop-filter: blur(8px);
}

.renewal-notice__card {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: 2.25rem 2rem 1.85rem;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 241, 250, 0.96) 100%);
  border: 1px solid rgba(0, 94, 184, 0.18);
  box-shadow:
    0 24px 60px rgba(0, 18, 51, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  overflow: hidden;
  animation: renewalIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.renewal-notice__glow {
  position: absolute;
  width: 16rem;
  height: 16rem;
  right: -5rem;
  top: -6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 130, 209, 0.22), transparent 65%);
  pointer-events: none;
}

.renewal-notice__eyebrow {
  position: relative;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.renewal-notice__title {
  position: relative;
  margin: 0 0 0.85rem;
  font-family: var(--font-brand), var(--font-display), sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--color-primary-dark);
  text-transform: uppercase;
}

.renewal-notice__text {
  position: relative;
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.renewal-notice__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.renewal-notice__lang {
  display: flex;
  gap: 0.35rem;
}

.renewal-notice__lang .lang-btn {
  min-width: 2.5rem;
}

@keyframes renewalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 560px) {
  .renewal-notice__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .renewal-notice__actions .btn {
    width: 100%;
  }
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: end center;
  padding: 1.25rem;
  pointer-events: auto;
}

.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 51, 0.55);
  backdrop-filter: blur(3px);
}

.cookie-consent__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  margin-bottom: 0.5rem;
  padding: 1.35rem 1.4rem 1.45rem;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 18, 51, 0.28);
  animation: cookie-in 0.4s var(--ease);
}

@keyframes cookie-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.cookie-consent__title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  color: var(--color-primary-dark);
}

.cookie-consent__text {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--color-ink);
  line-height: 1.55;
}

.cookie-consent__note {
  margin: 0 0 1.15rem;
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-end;
}

.cookie-consent__lang {
  display: inline-flex;
  gap: 0.25rem;
  margin-right: auto;
}

.cookie-consent__lang .lang-btn {
  pointer-events: auto;
}

.cookie-consent__link {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
}

@media (max-width: 520px) {
  .cookie-consent {
    place-items: end stretch;
    padding: 0.75rem;
  }

  .cookie-consent__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cookie-consent__actions .btn {
    width: 100%;
  }
}


/* ��� Careers ��� */
.careers-hero {
  position: relative;
  padding: 5.5rem 0 3.5rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 18, 51, 0.92) 0%, rgba(0, 94, 184, 0.88) 55%, rgba(13, 130, 209, 0.82) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(125, 208, 255, 0.25), transparent 55%);
  overflow: hidden;
}

.careers-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.careers-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.careers-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.careers-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
}

.careers-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 36rem;
}

.careers-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.careers-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.careers-hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.careers-why h2 {
  margin: 0 0 1.5rem;
  color: var(--color-primary-dark);
}

.careers-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.careers-why__card {
  padding: 1.25rem 1.15rem;
  background: #fff;
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 10px 28px rgba(0, 18, 51, 0.06);
}

.careers-why__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
}

.careers-why__card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.careers-linkedin-band {
  background: linear-gradient(120deg, #0a66c2 0%, #004182 100%);
  color: #fff;
  padding: 2.5rem 0;
}

.careers-linkedin-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.careers-linkedin-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.careers-linkedin-band p {
  margin: 0;
  max-width: 40rem;
  opacity: 0.92;
  line-height: 1.5;
}

.careers-linkedin-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--linkedin {
  background: #0a66c2;
  border-color: #0a66c2;
}

.btn--linkedin:hover {
  background: #004182;
  border-color: #004182;
}

.careers-roles__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.careers-roles__head h2 {
  margin: 0 0 0.35rem;
  color: var(--color-primary-dark);
}

.careers-roles__head p {
  margin: 0;
  color: var(--color-muted);
}

.careers-roles__count {
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.careers-filters {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.careers-filters__group {
  display: grid;
  gap: 0.45rem;
}

.careers-filters__group > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.careers-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.careers-chip {
  border: 1px solid rgba(0, 18, 51, 0.16);
  background: #fff;
  color: var(--color-ink);
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
}

.careers-chip.is-active,
.careers-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.careers-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: start;
}

.careers-list {
  display: grid;
  gap: 0.75rem;
}

.careers-job {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(0, 18, 51, 0.1);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.careers-job:hover,
.careers-job.is-active {
  border-color: var(--color-primary);
  box-shadow: 0 12px 28px rgba(0, 94, 184, 0.12);
}

.careers-job.is-active {
  background: linear-gradient(180deg, #f4f9fd, #fff);
}

.careers-job__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.careers-job__top strong {
  font-size: 1.05rem;
  color: var(--color-primary-dark);
}

.careers-job__meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.careers-job__summary {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.careers-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 94, 184, 0.12);
  color: var(--color-primary);
  white-space: nowrap;
}

.careers-badge--sm {
  font-size: 0.62rem;
}

.careers-detail {
  position: sticky;
  top: 6.5rem;
  min-height: 280px;
}

.careers-detail__card,
.careers-detail__empty,
.careers-empty {
  background: #fff;
  border: 1px solid rgba(0, 18, 51, 0.1);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 16px 40px rgba(0, 18, 51, 0.08);
}

.careers-detail__empty,
.careers-empty {
  color: var(--color-muted);
}

.careers-detail__card h3 {
  margin: 0.5rem 0 0.4rem;
  font-size: 1.45rem;
  color: var(--color-primary-dark);
}

.careers-detail__meta {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
}

.careers-detail__summary {
  margin: 0 0 0.75rem;
  font-weight: 600;
  line-height: 1.5;
}

.careers-detail__desc {
  margin: 0 0 1rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.careers-detail__block {
  margin-bottom: 1rem;
}

.careers-detail__block h4 {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.careers-detail__block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-ink);
  line-height: 1.5;
}

.careers-detail__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.15rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.careers-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.careers-open-apply__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.careers-open-apply h2 {
  margin: 0 0 0.4rem;
  color: var(--color-primary-dark);
}

.careers-open-apply p {
  margin: 0;
  max-width: 40rem;
  color: var(--color-muted);
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .careers-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-board {
    grid-template-columns: 1fr;
  }

  .careers-detail {
    position: static;
  }
}

@media (max-width: 640px) {
  .careers-why__grid {
    grid-template-columns: 1fr;
  }

  .careers-hero {
    padding: 4.5rem 0 2.75rem;
  }
}


.locations-section { position: relative; }
.locations-head { max-width: 40rem; margin-bottom: 2rem; }
.locations-head__lead {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.loc-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 100%;
}
.loc-card__map {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-primary-light);
}
.loc-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.loc-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
}
.loc-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}
.loc-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.loc-card__region { margin: 0; font-size: 0.82rem; color: var(--color-muted); }
.loc-card h3 { margin: 0.15rem 0 0; font-size: 1.35rem; color: var(--color-primary-dark); }
.loc-card__role { margin: 0; font-weight: 600; color: var(--color-primary); font-size: 0.95rem; }
.loc-card__note { margin: 0; font-size: 0.9rem; color: var(--color-muted); }
.loc-card address {
  margin: 0.35rem 0 0;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--color-ink);
  line-height: 1.45;
}
.loc-card__meta {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.loc-card__meta a { color: var(--color-primary); font-weight: 600; }
.loc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1rem;
}
@media (max-width: 800px) {
  .loc-grid { grid-template-columns: 1fr; }
}
