:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef4f9;
  --surface-strong: #dce8f1;
  --ink: #10182b;
  --ink-soft: #516078;
  --navy: #0b235f;
  --navy-deep: #061638;
  --blue: #173f9b;
  --cyan: #08a6cb;
  --cyan-bright: #21c8ee;
  --line: #d9e1ea;
  --success: #007d72;
  --shadow-sm: 0 10px 35px rgba(17, 39, 73, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 29, 70, 0.18);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --page: min(1180px, calc(100% - 2.5rem));
  --header-height: 4.5rem;
  --transition: 180ms ease;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #06101f;
  --surface: #0c192d;
  --surface-soft: #101f35;
  --surface-strong: #172b45;
  --ink: #f1f6fb;
  --ink-soft: #afbed0;
  --navy: #82dbef;
  --navy-deep: #030a14;
  --blue: #78a4ff;
  --cyan: #4bd6f5;
  --cyan-bright: #6fe4fc;
  --line: #253851;
  --success: #6be4d1;
  --shadow-sm: 0 10px 35px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.38);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.25rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--cyan-bright);
  color: #061638;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--page);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 164px;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

[data-theme="dark"] .brand-logo-light {
  display: none;
}

[data-theme="dark"] .brand-logo-dark {
  display: block;
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link[aria-current="true"] {
  background: var(--surface-strong);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-button,
.language-link,
.menu-button {
  display: inline-grid;
  min-width: 2.65rem;
  min-height: 2.65rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 3px 12px rgba(8, 29, 63, 0.05);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.icon-button:hover,
.language-link:hover,
.menu-button:hover {
  transform: translateY(-1px);
  border-color: var(--cyan);
  background: var(--surface-soft);
}

.language-link {
  padding-inline: 0.75rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.icon-button svg,
.menu-button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-sun,
[data-theme="dark"] .theme-moon {
  display: none;
}

[data-theme="dark"] .theme-sun {
  display: block;
}

.menu-button {
  display: none;
}

.no-js .theme-toggle,
.no-js .menu-button,
.no-js .product-filters {
  display: none;
}

.section {
  position: relative;
  padding-block: clamp(2rem, 2.2vw, 2.25rem);
}

.section-tight {
  padding-block: clamp(2rem, 2.2vw, 2.25rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.8rem, 5.2vw, 4.9rem);
}

h2 {
  max-width: 16ch;
  margin-bottom: 1.1rem;
  font-size: clamp(1.95rem, 3.3vw, 3.3rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin-top: 0;
}

.lead {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
}

.section-heading h2,
.section-heading .lead {
  margin-bottom: 0;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: clip;
  padding-block: clamp(2.25rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 75% 18%, color-mix(in srgb, var(--cyan-bright) 13%, transparent), transparent 25rem),
    linear-gradient(150deg, color-mix(in srgb, var(--surface-soft) 80%, transparent), transparent 55%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 32%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 32%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(21rem, 0.84fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-copy {
  padding-block: 1rem;
}

.hero-copy .lead {
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.15rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button::after {
  font-size: 1.15em;
  content: "\2197";
}

.button-anchor::after {
  content: "\2193";
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px color-mix(in srgb, var(--blue) 25%, transparent);
  color: #ffffff;
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--blue) 20%, transparent);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 0.1rem;
}

.hero-facts strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  max-width: 31rem;
  justify-self: end;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid color-mix(in srgb, var(--cyan) 35%, var(--line));
  border-radius: clamp(1.5rem, 3vw, 2.7rem);
  background: #b8e2f4;
  box-shadow: var(--shadow-lg);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 20, 52, 0.36), transparent 45%);
  content: "";
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-label {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 1.25rem;
  max-width: 16rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1rem;
  background: rgba(5, 24, 59, 0.88);
  box-shadow: var(--shadow-sm);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-label span,
.hero-label strong {
  display: block;
}

.hero-label span {
  margin-bottom: 0.2rem;
  color: #a9eaf7;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-label strong {
  line-height: 1.35;
}

.hero-orbit {
  position: absolute;
  top: -2rem;
  left: -2.5rem;
  width: 8rem;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--cyan) 40%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--cyan) 35%, transparent);
  border-radius: inherit;
  content: "";
}

.hero-orbit::before {
  inset: 1.1rem;
}

.hero-orbit::after {
  inset: 2.2rem;
  background: var(--cyan-bright);
  box-shadow: 0 0 30px var(--cyan);
}

.capability-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  min-height: 7.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem;
  border-left: 1px solid var(--line);
}

.capability-list li:last-child {
  border-right: 1px solid var(--line);
}

.capability-index {
  margin-bottom: 0.35rem;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.capability-list strong {
  font-size: 1.02rem;
  line-height: 1.35;
}

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

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.filter-button {
  min-height: 2.8rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--navy);
  background: var(--navy-deep);
  color: #ffffff;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--cyan) 55%, var(--line));
  box-shadow: 0 22px 55px rgba(12, 38, 73, 0.14);
}

.product-card[hidden] {
  display: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background: #dce9f1;
}

.product-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(3, 20, 52, 0.15), transparent 55%);
  content: "";
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-image-contain img {
  object-fit: contain;
  padding: 1rem;
}

.product-body {
  padding: 1.25rem 1.25rem 1.35rem;
}

.product-type {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-body p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.product-details {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  list-style: none;
}

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

.product-details summary::after {
  font-size: 1.2rem;
  font-weight: 500;
  content: "+";
}

.product-details[open] summary::after {
  content: "\2212";
}

.spec-list {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 1rem;
}

.spec-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.about-sticky {
  align-self: start;
}

.about-sticky h2 {
  max-width: 11ch;
}

.about-copy {
  display: grid;
  gap: 2rem;
}

.about-intro {
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
}

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

.service-item {
  min-height: 8.5rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.service-item svg {
  width: 1.5rem;
  margin-bottom: 1rem;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item strong,
.service-item span {
  display: block;
}

.service-item span {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.process-band {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--navy-deep);
  color: #ffffff;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 3rem;
}

.process-layout h2 {
  margin-bottom: 0;
  color: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 8rem;
  padding: 1.3rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  counter-increment: process;
}

.process-steps li::before {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--cyan-bright);
  font-size: 0.75rem;
  font-weight: 850;
  content: "0" counter(process);
}

.process-steps strong {
  display: block;
  line-height: 1.4;
}

.history-section {
  overflow: clip;
  background: var(--surface-soft);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 1.1rem;
  right: 8%;
  left: calc(1rem + 0.41rem);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.timeline-item {
  position: relative;
  padding-top: 3.3rem;
}

.timeline-item::before {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  left: 1rem;
  width: 0.82rem;
  height: 0.82rem;
  border: 4px solid var(--surface-soft);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 2px var(--cyan);
  content: "";
}

.timeline-card {
  min-height: 12rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.timeline-year {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--cyan);
  font-size: 1.25rem;
  font-weight: 900;
}

.timeline-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
}

.contact-section {
  overflow: hidden;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.contact-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.contact-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list > li > span {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-address {
  display: block;
}

.contact-list a {
  width: fit-content;
  color: var(--navy);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.contact-icon {
  flex: 0 0 auto;
  width: 1.15rem;
  margin-top: 0.25rem;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-card {
  position: relative;
  min-height: 30rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
  background-color: #dceaf0;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(42, 116, 143, 0.18) 49%, rgba(42, 116, 143, 0.18) 51%, transparent 52%),
    linear-gradient(120deg, transparent 48%, rgba(42, 116, 143, 0.14) 49%, rgba(42, 116, 143, 0.14) 51%, transparent 52%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 95px 95px, 125px 125px, 38px 38px, 38px 38px;
}

[data-theme="dark"] .map-card {
  background-color: #10243a;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(79, 205, 230, 0.14) 49%, rgba(79, 205, 230, 0.14) 51%, transparent 52%),
    linear-gradient(120deg, transparent 48%, rgba(79, 205, 230, 0.11) 49%, rgba(79, 205, 230, 0.11) 51%, transparent 52%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.map-card::before,
.map-card::after {
  position: absolute;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  content: "";
  transform: rotate(-26deg);
}

.map-card::before {
  top: 21%;
  left: -8%;
  width: 92%;
}

.map-card::after {
  right: -15%;
  bottom: 20%;
  width: 75%;
  transform: rotate(21deg);
}

.map-marker {
  position: relative;
  z-index: 2;
  max-width: 22rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.2rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow-lg);
  text-align: center;
  backdrop-filter: blur(12px);
}

.map-pin {
  width: 3rem;
  height: 3rem;
  display: grid;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 28px rgba(9, 84, 155, 0.3);
  transform: rotate(-45deg);
}

.map-pin::after {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.map-marker strong,
.map-marker span {
  display: block;
}

.map-marker span {
  margin: 0.35rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.map-note {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.legal-section {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.legal-layout h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.legal-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.legal-block {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.legal-block h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.legal-block p,
.legal-block address {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: normal;
}

.legal-block a {
  color: var(--navy);
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  background: var(--navy-deep);
  color: #dce8f6;
}

.footer-inner {
  width: var(--page);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  margin: 0;
  color: #aebdd1;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #edf6ff;
  font-size: 0.85rem;
  font-weight: 750;
  text-underline-offset: 0.25em;
}

.to-top {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
}

.legal-page {
  min-height: calc(100svh - var(--header-height));
}

.legal-hero {
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  white-space: nowrap;
}

.legal-hero .lead {
  max-width: 58ch;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.privacy-nav {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  list-style: none;
}

.privacy-nav a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.privacy-nav a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.privacy-copy section + section {
  margin-top: 3.2rem;
  padding-top: 3.2rem;
  border-top: 1px solid var(--line);
}

.privacy-copy h2 {
  max-width: none;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.privacy-copy h3 {
  margin-top: 1.8rem;
  font-size: 1.12rem;
}

.privacy-copy p,
.privacy-copy li {
  color: var(--ink-soft);
}

.privacy-copy a {
  color: var(--navy);
  text-underline-offset: 0.2em;
}

.notice {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface-soft);
}

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

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 70% 25%, color-mix(in srgb, var(--cyan) 18%, transparent), transparent 25rem),
    var(--bg);
}

.error-card {
  max-width: 44rem;
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: clamp(4rem, 16vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.error-card h1 {
  max-width: none;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.error-card .button {
  margin-top: 1rem;
}

@media (min-width: 901px) {
  .about-sticky {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

@media (max-width: 1080px) {
  .nav-link {
    padding-inline: 0.55rem;
    font-size: 0.84rem;
  }

  .brand img {
    width: 160px;
  }

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

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

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding-top: 1.5rem;
  }

  .timeline-item::before {
    top: 0.2rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.5rem;
    --page: min(100% - 2rem, 44rem);
  }

  .header-inner {
    position: relative;
  }

  .site-header {
    background: var(--bg);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand img {
    width: 152px;
  }

  .js .menu-button {
    display: inline-grid;
  }

  .js .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    display: grid;
    align-content: start;
    overflow: auto;
    padding: 1.3rem max(1rem, calc((100vw - 44rem) / 2));
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity var(--transition), transform var(--transition);
  }

  .js .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 0.25rem;
  }

  .nav-link {
    min-height: 3.6rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.08rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .section-heading,
  .about-layout,
  .process-layout,
  .contact-card,
  .legal-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 31rem);
    justify-self: center;
  }

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

  .capability-list li:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .capability-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .process-steps li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .map-card {
    min-height: 24rem;
  }

  .privacy-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 1.4rem);
  }

  .header-inner {
    gap: 0.55rem;
  }

  .brand img {
    width: 135px;
  }

  .header-actions {
    margin-left: auto;
  }

  .icon-button,
  .language-link,
  .menu-button {
    min-width: 2.45rem;
    min-height: 2.45rem;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .legal-hero h1 {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-grid {
    gap: 3.5rem;
  }

  .hero-facts {
    gap: 1rem 1.5rem;
  }

  .hero-label {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: none;
  }

  .hero-orbit {
    display: none;
  }

  .capability-list,
  .product-grid,
  .service-grid,
  .process-steps,
  .timeline,
  .legal-copy {
    grid-template-columns: 1fr;
  }

  .capability-list li,
  .capability-list li:nth-child(2),
  .capability-list li:last-child {
    min-height: 6rem;
    padding: 1.2rem 1rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .product-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scrollbar-width: thin;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .process-steps li {
    min-height: auto;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .process-steps li::before {
    margin-bottom: 0.4rem;
  }

  .timeline-item {
    padding-top: 0;
    padding-left: 1.9rem;
  }

  .timeline-item::before {
    top: 1rem;
    left: 0.2rem;
  }

  .contact-copy {
    padding: 1.7rem 1.2rem;
  }

  .map-card {
    min-height: 21rem;
    padding: 1rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .product-filters,
  .map-card,
  .site-footer {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .section {
    padding-block: 2rem;
  }

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