:root {
  --bg-dark: #0b0d10;
  --bg-deep: #10141a;
  --bg-light: #eef1f4;
  --bg-paper: #ffffff;
  --bg-soft: #dce2e8;
  --text-main: #11151b;
  --text-light: #f8f6f1;
  --text-muted: #646b73;
  --line-dark: rgba(248, 246, 241, 0.14);
  --line-light: rgba(17, 21, 27, 0.12);
  --accent-red: #d82f2f;
  --accent-blue: #2b74c7;
  --accent-metal: #b9b2a4;
  --shadow: 0 26px 76px rgba(11, 13, 16, 0.18);
  --shadow-soft: 0 18px 54px rgba(11, 13, 16, 0.12);
  --container: 1220px;
  --header-height: 82px;
  --radius: 8px;
  --font-body: 14.5px;
  --leading-body: 1.62;
  --font-label: 12px;
  --font-card-title: 16px;
  --font-section-title: clamp(25px, 1.85vw, 29px);
  --font-hero-title: clamp(34px, 3.2vw, 42px);
  --display-max-width: 920px;
  --hero-title-max-width: 820px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background: var(--bg-light);
  font-family: "Segoe UI", "Noto Sans", "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--font-body);
  line-height: var(--leading-body);
  text-rendering: geometricPrecision;
}

html[lang="ja"] body {
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", "Segoe UI", sans-serif;
}

html[lang="ko"] body {
  font-family: "Noto Sans KR", "Malgun Gothic", "Segoe UI", sans-serif;
}

html[lang="en"],
html[lang="de"],
html[lang="fr"],
html[lang="pl"],
html[lang="ru"] {
  --font-body: 14px;
  --leading-body: 1.58;
  --font-card-title: 15.5px;
  --font-section-title: clamp(24px, 1.72vw, 27px);
  --font-hero-title: clamp(33px, 2.85vw, 38px);
  --display-max-width: 960px;
  --hero-title-max-width: 860px;
}

body.is-media-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(8, 10, 13, 0.9);
  border-bottom: 1px solid rgba(248, 246, 241, 0.1);
  --scroll-progress: 0%;
}

.site-header::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-red), rgba(248, 246, 241, 0.46));
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  opacity: 0.9;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  height: 100%;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 36px;
  border-radius: 8px;
  color: var(--text-light);
  background: linear-gradient(135deg, #f04444 0%, #c72020 100%);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
  max-width: 250px;
  min-width: 0;
  color: var(--text-light);
}

.brand-copy strong {
  max-width: 250px;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy span {
  max-width: 250px;
  overflow: hidden;
  font-size: 12px;
  color: rgba(248, 246, 241, 0.66);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  margin-left: auto;
  color: rgba(248, 246, 241, 0.78);
  font-size: 13.5px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 8px;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--text-light);
  background: rgba(248, 246, 241, 0.06);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 3;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: 8px;
  background: rgba(248, 246, 241, 0.04);
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 148px;
  height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: var(--text-light);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  color: rgba(248, 246, 241, 0.86);
  background: rgba(248, 246, 241, 0.1);
  font-size: 12px;
}

.language-chevron {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid rgba(248, 246, 241, 0.72);
  border-bottom: 2px solid rgba(248, 246, 241, 0.72);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.language-switch.is-open .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 80;
  display: none;
  width: 176px;
  margin-top: 8px;
  padding: 4px;
  border: 1px solid rgba(248, 246, 241, 0.18);
  border-radius: 8px;
  background: rgba(10, 12, 16, 0.98);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

.language-switch.is-open .language-menu {
  display: grid;
}

.language-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 6px;
  color: rgba(248, 246, 241, 0.78);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  color: var(--text-light);
  background: var(--accent-red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text-light);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-height) - 42px));
  overflow: hidden;
  background: var(--bg-dark);
  --pointer-x: 64%;
  --pointer-y: 44%;
}

.hero + .section-light {
  position: relative;
  z-index: 4;
  margin-top: -54px;
  padding-top: 0;
  background: linear-gradient(180deg, transparent 0, transparent 54px, var(--bg-light) 54px, var(--bg-light) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 246, 241, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 246, 241, 0.035) 1px, transparent 1px);
  background-size: 122px 122px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(216, 47, 47, 0.14), transparent 30%);
  transition: opacity 0.3s ease;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #060910;
}

.hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.98) 0%, rgba(9, 12, 17, 0.88) 44%, rgba(9, 12, 17, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 10, 13, 0.08) 0%, rgba(8, 10, 13, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(760px, calc(100svh - var(--header-height) - 42px));
  max-width: 880px;
  padding: 56px 0 58px;
  color: var(--text-light);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(248, 246, 241, 0.18);
  color: rgba(248, 246, 241, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 40px;
  border-radius: 8px;
  color: var(--text-light);
  background: var(--accent-red);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(216, 47, 47, 0.28);
}

.eyebrow {
  margin: 0 0 15px;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.hero .eyebrow,
.section-dark .eyebrow,
.section-accent .eyebrow {
  color: #ff6262;
}

.hero > .container .eyebrow {
  min-height: 19px;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.media-copy h2,
.legal-content h2,
.contact-copy h2,
.subpage-shell h1 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: var(--hero-title-max-width);
  min-height: 98px;
  font-size: var(--font-hero-title);
  line-height: 1.16;
  font-weight: 800;
  text-wrap: balance;
}

.hero-text {
  max-width: 680px;
  min-height: 70px;
  margin: 22px 0 0;
  color: rgba(248, 246, 241, 0.84);
  font-size: var(--font-body);
  line-height: var(--leading-body);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: var(--font-body);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button-primary {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #f23a3a 0%, #c91f1f 54%, #951616 100%);
  box-shadow: 0 18px 38px rgba(216, 47, 47, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-secondary {
  color: var(--text-light);
  border-color: rgba(248, 246, 241, 0.24);
  background: rgba(248, 246, 241, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 930px;
  min-height: 98px;
  margin-top: 30px;
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(248, 246, 241, 0.08), rgba(248, 246, 241, 0.025));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-metric {
  padding: 18px 24px;
  border-right: 1px solid rgba(248, 246, 241, 0.13);
  transition: background-color 0.2s ease;
}

.hero-metric:hover {
  background: rgba(248, 246, 241, 0.045);
}

.hero-metric + .hero-metric {
  padding-left: 24px;
}

.hero-metric:last-child {
  border-right: 0;
}

.hero-metric strong {
  display: block;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 700;
}

.hero-metric span {
  display: block;
  margin-top: 8px;
  color: rgba(248, 246, 241, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 12px 30px;
  max-width: 860px;
  min-height: 58px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(248, 246, 241, 0.82);
  font-size: var(--font-body);
  line-height: var(--leading-body);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.section {
  padding: 82px 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  color: var(--text-light);
  background: var(--bg-dark);
}

.section-accent {
  color: var(--text-light);
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 47, 47, 0.16), rgba(216, 47, 47, 0) 34%),
    linear-gradient(180deg, #151a21 0%, #0c0f13 100%);
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.35fr);
  gap: 44px;
  align-items: start;
  max-width: none;
  margin-bottom: 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(17, 21, 27, 0.12);
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 54px;
  height: 2px;
  background: var(--accent-red);
}

.section-dark .section-heading,
.section-accent .section-heading,
.faq-section .section-heading {
  border-color: rgba(248, 246, 241, 0.14);
}

.section-heading .eyebrow {
  align-self: start;
  margin-top: 8px;
}

.section-heading h2,
.gateway-copy h2,
.split-copy h2,
.media-copy h2,
.contact-copy h2,
.legal-content h2,
.subpage-shell h1 {
  max-width: var(--display-max-width);
  font-size: var(--font-section-title);
  line-height: 1.22;
  font-weight: 800;
  text-wrap: balance;
}

html[lang="en"] .section-heading h2,
html[lang="en"] .gateway-copy h2,
html[lang="en"] .split-copy h2,
html[lang="en"] .media-copy h2,
html[lang="en"] .contact-copy h2,
html[lang="en"] .legal-content h2,
html[lang="en"] .subpage-shell h1,
html[lang="de"] .section-heading h2,
html[lang="de"] .gateway-copy h2,
html[lang="de"] .split-copy h2,
html[lang="de"] .media-copy h2,
html[lang="de"] .contact-copy h2,
html[lang="de"] .legal-content h2,
html[lang="de"] .subpage-shell h1,
html[lang="fr"] .section-heading h2,
html[lang="fr"] .gateway-copy h2,
html[lang="fr"] .split-copy h2,
html[lang="fr"] .media-copy h2,
html[lang="fr"] .contact-copy h2,
html[lang="fr"] .legal-content h2,
html[lang="fr"] .subpage-shell h1,
html[lang="pl"] .section-heading h2,
html[lang="pl"] .gateway-copy h2,
html[lang="pl"] .split-copy h2,
html[lang="pl"] .media-copy h2,
html[lang="pl"] .contact-copy h2,
html[lang="pl"] .legal-content h2,
html[lang="pl"] .subpage-shell h1,
html[lang="ru"] .section-heading h2,
html[lang="ru"] .gateway-copy h2,
html[lang="ru"] .split-copy h2,
html[lang="ru"] .media-copy h2,
html[lang="ru"] .contact-copy h2,
html[lang="ru"] .legal-content h2,
html[lang="ru"] .subpage-shell h1 {
  max-width: var(--display-max-width);
}

.heading-phrase {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

html:lang(zh) .section-heading h2,
html:lang(zh) .gateway-copy h2,
html:lang(zh) .split-copy h2,
html:lang(zh) .media-copy h2,
html:lang(zh) .contact-copy h2,
html:lang(zh) .legal-content h2,
html:lang(zh) .subpage-shell h1,
html:lang(zh) .service-card h3,
html:lang(zh) .gateway-route h3,
html:lang(zh) .standard-card h3,
html:lang(zh) .process-grid h3,
html:lang(zh) .event-card h3,
html:lang(zh) .advantage-item h3,
html:lang(zh) .contact-prep h3,
html:lang(zh) .faq-item summary,
html[lang="ja"] .section-heading h2,
html[lang="ja"] .gateway-copy h2,
html[lang="ja"] .split-copy h2,
html[lang="ja"] .media-copy h2,
html[lang="ja"] .contact-copy h2,
html[lang="ja"] .legal-content h2,
html[lang="ja"] .subpage-shell h1,
html[lang="ja"] .service-card h3,
html[lang="ja"] .gateway-route h3,
html[lang="ja"] .standard-card h3,
html[lang="ja"] .process-grid h3,
html[lang="ja"] .event-card h3,
html[lang="ja"] .advantage-item h3,
html[lang="ja"] .contact-prep h3,
html[lang="ja"] .faq-item summary,
html[lang="ko"] .section-heading h2,
html[lang="ko"] .gateway-copy h2,
html[lang="ko"] .split-copy h2,
html[lang="ko"] .media-copy h2,
html[lang="ko"] .contact-copy h2,
html[lang="ko"] .legal-content h2,
html[lang="ko"] .subpage-shell h1,
html[lang="ko"] .service-card h3,
html[lang="ko"] .gateway-route h3,
html[lang="ko"] .standard-card h3,
html[lang="ko"] .process-grid h3,
html[lang="ko"] .event-card h3,
html[lang="ko"] .advantage-item h3,
html[lang="ko"] .contact-prep h3,
html[lang="ko"] .faq-item summary {
  word-break: normal;
  overflow-wrap: anywhere;
}

.section-heading p:not(.eyebrow),
.gateway-copy p,
.split-copy p,
.media-copy p,
.legal-content p,
.contact-copy p,
.subpage-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: var(--font-body);
  line-height: var(--leading-body);
}

.section-dark .section-heading p:not(.eyebrow),
.section-accent .section-heading p:not(.eyebrow),
.section-dark .gateway-copy p,
.section-dark .split-copy p,
.section-dark .media-copy p,
.section-dark .contact-copy p,
.section-dark .legal-content p {
  color: rgba(248, 246, 241, 0.72);
}

.capabilities {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(210px, 0.92fr) minmax(240px, 1.02fr) minmax(360px, 1.62fr);
  gap: 0;
  position: relative;
  border: 1px solid rgba(17, 21, 27, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 78px rgba(11, 13, 16, 0.14);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.capabilities::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-red), rgba(216, 47, 47, 0.25));
}

.capabilities::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 42%);
}

.capabilities > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  padding: 24px 26px;
  border-right: 1px solid var(--line-light);
  overflow-wrap: anywhere;
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.capabilities > div + div {
  padding-left: 26px;
}

.capabilities > div:last-child {
  border-right: 0;
}

.capabilities > div:hover {
  background: rgba(43, 116, 199, 0.045);
  transform: translateY(-1px);
}

.capability-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: var(--font-label);
  line-height: 1.3;
  font-weight: 700;
}

.capabilities strong {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 800;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.gateway-section {
  background:
    radial-gradient(circle at 78% 8%, rgba(216, 47, 47, 0.16), rgba(216, 47, 47, 0) 34%),
    linear-gradient(180deg, #10151c 0%, #0b0f14 100%);
}

.gateway-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.gateway-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.gateway-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gateway-route {
  display: grid;
  min-height: 260px;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(248, 246, 241, 0.13);
  border-radius: 8px;
  color: var(--text-light);
  background:
    linear-gradient(135deg, rgba(248, 246, 241, 0.07), rgba(248, 246, 241, 0.02)),
    linear-gradient(180deg, rgba(216, 47, 47, 0.05), rgba(216, 47, 47, 0));
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gateway-code,
.gateway-meta {
  color: var(--accent-red);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.gateway-code {
  margin-bottom: 22px;
  font-size: 21px;
}

.gateway-meta {
  margin-bottom: 14px;
}

.gateway-route h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
}

.gateway-route p {
  margin: 14px 0 0;
  color: rgba(248, 246, 241, 0.72);
  font-size: var(--font-body);
  line-height: var(--leading-body);
}

.gateway-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.gateway-route .tag-chip {
  border-color: rgba(248, 246, 241, 0.16);
  color: var(--text-light);
  background: rgba(248, 246, 241, 0.055);
}

.legacy-grid,
.service-grid,
.standard-grid,
.event-grid,
.faq-grid,
.process-grid,
.advantage-list,
.training-grid,
.platform-grid {
  display: grid;
  gap: 22px;
}

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

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

.service-grid {
  counter-reset: service-card;
}

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

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

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

.legacy-card,
.event-card,
.service-card,
.standard-card,
.advantage-item,
.faq-item,
.training-mini-card,
.platform-card {
  border-radius: 8px;
}

.legacy-card,
.event-card {
  overflow: hidden;
  border: 1px solid rgba(248, 246, 241, 0.14);
  background: linear-gradient(180deg, rgba(248, 246, 241, 0.07), rgba(248, 246, 241, 0.035));
}

.event-card {
  border-color: var(--line-light);
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  box-shadow: 0 14px 38px rgba(11, 13, 16, 0.06);
  position: relative;
  cursor: pointer;
}

.event-card:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 4px;
}

.event-media {
  position: relative;
  overflow: hidden;
}

.event-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.04), rgba(8, 10, 13, 0.28));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.event-card:hover .event-media::after {
  opacity: 1;
}

.event-meta {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(248, 246, 241, 0.26);
  border-radius: 8px;
  color: var(--text-light);
  background: rgba(8, 10, 13, 0.68);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
}

.event-open {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(248, 246, 241, 0.22);
  border-radius: 8px;
  color: var(--text-light);
  background: rgba(216, 47, 47, 0.84);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.event-card:hover .event-open,
.event-card:focus-visible .event-open {
  opacity: 1;
  transform: translateY(0);
}

.legacy-card,
.event-card,
.service-card,
.standard-card,
.advantage-item,
.faq-item {
  --card-x: 50%;
  --card-y: 0%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.legacy-card:hover,
.event-card:hover,
.service-card:hover,
.standard-card:hover,
.advantage-item:hover,
.faq-item:hover,
.legacy-card:focus-within,
.event-card:focus-within,
.service-card:focus-within,
.standard-card:focus-within,
.advantage-item:focus-within,
.faq-item:focus-within {
  transform: translateY(-5px);
}

.event-card:hover,
.service-card:hover,
.standard-card:hover,
.advantage-item:hover,
.faq-item:hover {
  box-shadow: var(--shadow);
}

.legacy-card img,
.event-card img {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.legacy-card:hover img,
.event-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.05);
}

.legacy-card div,
.event-card div {
  padding: 26px;
}

.legacy-card h3,
.event-card h3,
.advantage-item h3,
.footer-columns h3,
.service-card h3,
.process-grid h3,
.standard-card h3,
.training-mini-card h3,
.platform-card h3 {
  margin: 0;
  font-size: var(--font-card-title);
  line-height: 1.34;
  font-weight: 800;
}

.legacy-card p,
.event-card p,
.advantage-item p,
.faq-item p,
.service-card p,
.process-grid p,
.standard-card p,
.training-mini-card p,
.platform-card p,
.feature-list li,
.contact-list dd,
.contact-list dt,
.footer-brand p {
  margin: 12px 0 0;
  font-size: var(--font-body);
  line-height: var(--leading-body);
}

.legacy-card p,
.standard-card p,
.faq-item p,
.process-grid p,
.feature-list li {
  color: rgba(248, 246, 241, 0.72);
}

.service-card {
  counter-increment: service-card;
  --card-x: 50%;
  --card-y: 0%;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px 30px;
  border: 1px solid rgba(17, 21, 27, 0.1);
  background:
    linear-gradient(135deg, rgba(43, 116, 199, 0.035), rgba(43, 116, 199, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  box-shadow: 0 12px 38px rgba(11, 13, 16, 0.055);
  position: relative;
  overflow: hidden;
}

.service-card::after,
.advantage-item::after,
.standard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--card-x) var(--card-y), rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(216, 47, 47, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--accent-red), rgba(216, 47, 47, 0.18));
}

.service-card:hover::after,
.advantage-item:hover::after,
.standard-card:hover::after {
  opacity: 1;
}

.service-card h3::before {
  content: "0" counter(service-card);
  display: block;
  margin-bottom: 16px;
  color: var(--accent-red);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.service-card-head {
  display: grid;
  gap: 14px;
}

.service-card-meta {
  color: var(--accent-red);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.service-tags,
.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags {
  margin-top: 24px;
}

.tag-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(17, 21, 27, 0.12);
  border-radius: 8px;
  color: var(--text-main);
  background: rgba(17, 21, 27, 0.035);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.service-card-cta {
  display: inline-flex;
  margin-top: auto;
  padding-top: 26px;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.service-card-cta::after {
  content: " ->";
  color: var(--accent-red);
}

.standard-card {
  min-height: 250px;
  padding: 32px 28px;
  border: 1px solid rgba(248, 246, 241, 0.14);
  background:
    linear-gradient(135deg, rgba(216, 47, 47, 0.12), rgba(216, 47, 47, 0) 34%),
    linear-gradient(180deg, rgba(248, 246, 241, 0.075), rgba(248, 246, 241, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.standard-card span,
.process-index {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--accent-red);
  font-size: 13px;
  font-weight: 800;
}

.advantage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 46px;
  align-items: center;
}

.advantage-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(17, 21, 27, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  box-shadow: 0 12px 32px rgba(11, 13, 16, 0.05);
  position: relative;
  overflow: hidden;
}

.advantage-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--text-light);
  background: linear-gradient(135deg, #ef3a3a, #b91e1e);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(216, 47, 47, 0.2);
}

.advantage-media img,
.split-media img,
.media-item img {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(11, 13, 16, 0.16);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.advantage-media:hover img,
.split-media:hover img,
.media-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
}

.split-layout,
.media-item,
.legal-content,
.contact-layout {
  display: grid;
  gap: 54px;
  align-items: center;
}

.split-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.media-item {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.media-rail {
  display: grid;
  gap: 56px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
}

.training-section .split-layout {
  align-items: stretch;
}

.training-grid {
  margin-top: 34px;
}

.training-mini-card,
.platform-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(248, 246, 241, 0.13);
  background:
    linear-gradient(135deg, rgba(216, 47, 47, 0.1), rgba(216, 47, 47, 0) 36%),
    linear-gradient(180deg, rgba(248, 246, 241, 0.07), rgba(248, 246, 241, 0.028));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.training-mini-card p,
.platform-card p {
  color: rgba(248, 246, 241, 0.72);
}

.platform-section {
  border-top: 1px solid rgba(248, 246, 241, 0.1);
  background:
    radial-gradient(circle at 84% 12%, rgba(216, 47, 47, 0.12), rgba(216, 47, 47, 0) 34%),
    linear-gradient(180deg, #0b0f14 0%, #121820 100%);
}

.platform-chips {
  margin: -18px 0 28px;
  padding: 22px;
  border: 1px solid rgba(248, 246, 241, 0.12);
  border-radius: 8px;
  background: rgba(248, 246, 241, 0.035);
}

.platform-section .tag-chip {
  min-height: 34px;
  border-color: rgba(248, 246, 241, 0.16);
  color: var(--text-light);
  background: rgba(248, 246, 241, 0.055);
}

.process-grid article {
  min-height: 230px;
  padding: 30px 26px;
  border: 1px solid rgba(248, 246, 241, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 246, 241, 0.07), rgba(248, 246, 241, 0.02)),
    linear-gradient(180deg, rgba(216, 47, 47, 0.055), rgba(216, 47, 47, 0));
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.process-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 246, 241, 0.22);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.process-index {
  margin-bottom: 26px;
  font-size: 22px;
}

.legal-band {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(90deg, rgba(43, 116, 199, 0.055), rgba(43, 116, 199, 0) 34%),
    var(--bg-light);
}

.legal-content {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}

.legal-links a,
.footer-links a,
.subpage-back {
  color: var(--accent-blue);
  font-weight: 800;
}

.site-footer .footer-links a {
  color: #5aa7ff;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(43, 116, 199, 0.22);
  border-radius: 8px;
  background: rgba(43, 116, 199, 0.06);
}

.faq-item {
  padding: 0;
  border: 1px solid rgba(248, 246, 241, 0.14);
  background: linear-gradient(180deg, rgba(248, 246, 241, 0.06), rgba(248, 246, 241, 0.03));
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 22px 26px;
  color: var(--text-light);
  font-size: var(--font-card-title);
  line-height: 1.35;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: 8px;
  color: var(--text-light);
  background: rgba(248, 246, 241, 0.05);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--accent-red);
}

.faq-item p {
  margin: 0;
  padding: 0 26px;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.26s ease, opacity 0.22s ease, transform 0.22s ease;
}

.faq-item[open] p {
  max-height: 260px;
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}

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

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

.reveal:nth-child(2) {
  transition-delay: 0.05s;
}

.reveal:nth-child(3) {
  transition-delay: 0.1s;
}

.reveal:nth-child(4) {
  transition-delay: 0.15s;
}

.contact-section {
  border-top: 1px solid rgba(248, 246, 241, 0.1);
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 47, 47, 0.12), transparent 32%),
    linear-gradient(180deg, #101318 0%, #090b0e 100%);
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.contact-copy {
  padding: 34px;
  border: 1px solid rgba(248, 246, 241, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(248, 246, 241, 0.055), rgba(248, 246, 241, 0.02));
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(248, 246, 241, 0.14);
}

.contact-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(248, 246, 241, 0.14);
}

.contact-list dt {
  margin: 0;
  color: rgba(248, 246, 241, 0.54);
  font-size: 13px;
}

.contact-list dd,
.contact-list a {
  margin: 0;
  color: var(--text-light);
}

.contact-prep {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(248, 246, 241, 0.12);
  border-radius: 8px;
  background: rgba(248, 246, 241, 0.045);
}

.contact-prep h3 {
  margin: 0 0 16px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.32;
}

.contact-prep ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-prep li {
  position: relative;
  padding-left: 17px;
  color: rgba(248, 246, 241, 0.72);
  font-size: 14px;
  line-height: 1.58;
}

.contact-prep li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
}

.contact-qr {
  padding: 26px;
  border: 1px solid rgba(248, 246, 241, 0.14);
  border-radius: 8px;
  text-align: center;
  background: rgba(248, 246, 241, 0.04);
}

.contact-qr img {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  border-radius: 8px;
  background: #fff;
}

.contact-qr p {
  margin: 16px 0 4px;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 800;
}

.contact-qr span {
  color: rgba(248, 246, 241, 0.66);
  font-size: 14px;
}

.site-footer {
  color: rgba(248, 246, 241, 0.72);
  background: #080a0d;
  border-top: 1px solid rgba(248, 246, 241, 0.1);
}

.contact-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: 8px;
  background: rgba(8, 10, 13, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.contact-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-dock-link {
  display: inline-flex;
  min-width: 64px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 7px;
  color: rgba(248, 246, 241, 0.84);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.contact-dock-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 16px rgba(216, 47, 47, 0.72);
}

.contact-dock-link:hover,
.contact-dock-link:focus-visible {
  color: var(--text-light);
  background: rgba(248, 246, 241, 0.08);
  transform: translateY(-1px);
}

.media-viewer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.media-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 8, 0.78);
  backdrop-filter: blur(18px);
}

.media-viewer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  width: min(100%, 1180px);
  max-height: calc(100svh - 56px);
  overflow: hidden;
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 24, 30, 0.98), rgba(8, 10, 13, 0.98));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.media-viewer-image-wrap {
  display: grid;
  min-height: min(72svh, 680px);
  place-items: center;
  background: #05070a;
}

.media-viewer-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: min(72svh, 680px);
  object-fit: contain;
}

.media-viewer-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
  color: var(--text-light);
}

.media-viewer-meta {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: 8px;
  color: var(--text-light);
  background: rgba(216, 47, 47, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.media-viewer-copy h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
}

.media-viewer-copy p {
  margin: 16px 0 0;
  color: rgba(248, 246, 241, 0.72);
  line-height: 1.72;
}

.media-viewer-close,
.media-viewer-controls button {
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: 8px;
  color: var(--text-light);
  background: rgba(248, 246, 241, 0.06);
  font-weight: 800;
  cursor: pointer;
}

.media-viewer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
}

.media-viewer-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.media-viewer-controls button {
  min-width: 48px;
  min-height: 44px;
  padding: 0 16px;
}

.media-viewer-controls span {
  color: rgba(248, 246, 241, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.media-viewer-close:hover,
.media-viewer-controls button:hover,
.media-viewer-close:focus-visible,
.media-viewer-controls button:focus-visible {
  background: var(--accent-red);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.65fr);
  gap: 52px;
  padding: 58px 0 36px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand strong {
  color: var(--text-light);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.footer-brand a {
  color: var(--text-light);
}

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

.footer-columns h3 {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.35;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(248, 246, 241, 0.1);
}

.footer-meta {
  margin: 0;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social a {
  color: var(--text-light);
  font-weight: 800;
}

.subpage-body {
  background: var(--bg-light);
}

.subpage-main {
  min-height: 100vh;
  padding: 76px 0;
}

.subpage-shell {
  max-width: 900px;
}

.subpage-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.subpage-toolbar .language-switch {
  border-color: rgba(17, 21, 27, 0.16);
  background: rgba(17, 21, 27, 0.04);
}

.subpage-toolbar .language-trigger {
  color: var(--text-muted);
}

.subpage-toolbar .language-icon {
  color: var(--text-muted);
  background: rgba(17, 21, 27, 0.08);
}

.subpage-toolbar .language-chevron {
  border-color: var(--text-muted);
}

.subpage-copy {
  margin-top: 30px;
}

.subpage-copy p + p {
  margin-top: 18px;
}

@media (min-width: 1800px) {
  :root {
    --container: 1480px;
    --font-body: 15px;
    --font-section-title: clamp(28px, 1.45vw, 34px);
    --font-hero-title: clamp(42px, 2.2vw, 50px);
    --display-max-width: 1060px;
    --hero-title-max-width: 980px;
  }

  html[lang="en"],
  html[lang="de"],
  html[lang="fr"],
  html[lang="pl"],
  html[lang="ru"] {
    --font-body: 14.5px;
    --font-section-title: clamp(26px, 1.35vw, 32px);
    --font-hero-title: clamp(38px, 1.95vw, 46px);
    --display-max-width: 1100px;
    --hero-title-max-width: 1020px;
  }

  .hero,
  .hero-content {
    min-height: min(820px, calc(100svh - var(--header-height) - 24px));
  }

  .hero-content {
    max-width: 1040px;
    padding: 70px 0 72px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 10, 13, 0.98) 0%, rgba(9, 12, 17, 0.9) 34%, rgba(9, 12, 17, 0.4) 68%, rgba(9, 12, 17, 0.16) 100%),
      linear-gradient(180deg, rgba(8, 10, 13, 0.04) 0%, rgba(8, 10, 13, 0.78) 100%);
  }

  .hero::before {
    background-size: 148px 148px;
  }

  .hero h1 {
    min-height: 114px;
  }

  .hero-text {
    max-width: 780px;
    min-height: 74px;
  }

  .hero-metrics {
    max-width: 1080px;
  }

  .hero-points {
    max-width: 980px;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
}

@media (min-width: 2560px) {
  :root {
    --container: 1680px;
    --font-hero-title: clamp(46px, 1.9vw, 56px);
    --hero-title-max-width: 1080px;
  }

  html[lang="en"],
  html[lang="de"],
  html[lang="fr"],
  html[lang="pl"],
  html[lang="ru"] {
    --font-hero-title: clamp(42px, 1.65vw, 52px);
    --hero-title-max-width: 1120px;
  }

  .hero,
  .hero-content {
    min-height: min(860px, calc(100svh - var(--header-height) - 24px));
  }

  .hero-content {
    max-width: 1120px;
  }

  .hero-text {
    max-width: 820px;
  }

  .hero-metrics {
    max-width: 1180px;
  }
}

@media (min-width: 3840px) {
  :root {
    --container: 1900px;
  }

  .hero,
  .hero-content {
    min-height: min(900px, calc(100svh - var(--header-height) - 24px));
  }

  .hero-content {
    max-width: 1180px;
  }
}

@media (max-width: 1500px) {
  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .header-inner {
    gap: 14px;
  }

  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .brand {
    flex: 0 0 auto;
  }

  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .brand-copy {
    max-width: 230px;
  }

  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .brand-copy strong,
  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .brand-copy span {
    max-width: 230px;
  }

  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .site-nav {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - var(--header-height) - 24px);
    margin-left: 0;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid rgba(248, 246, 241, 0.14);
    border-radius: 8px;
    color: rgba(248, 246, 241, 0.86);
    background: rgba(11, 13, 16, 0.98);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .site-nav.is-open {
    display: flex;
  }

  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .site-nav a {
    justify-content: space-between;
    min-height: 46px;
    padding: 11px 16px;
    border-radius: 6px;
  }

  :is(html[lang="en"], html[lang="de"], html[lang="fr"], html[lang="ja"], html[lang="pl"], html[lang="ru"]) .site-nav a::after {
    right: 16px;
    left: 16px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 14px;
  }

  .brand-copy strong {
    max-width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy span {
    max-width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - var(--header-height) - 24px);
    margin-left: 0;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid rgba(248, 246, 241, 0.14);
    border-radius: 8px;
    color: rgba(248, 246, 241, 0.86);
    background: rgba(11, 13, 16, 0.98);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    white-space: normal;
  }

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

  .site-nav a {
    min-height: 48px;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 7px;
    white-space: normal;
  }

  .site-nav a + a {
    margin-top: 2px;
  }

  .site-nav a::after {
    right: 16px;
    left: 16px;
  }
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: var(--font-hero-title);
  }

  .section-heading,
  .gateway-layout,
  .split-layout,
  .media-item,
  .advantage-layout,
  .legal-content,
  .contact-layout,
  .footer-main,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gateway-routes,
  .standard-grid,
  .process-grid,
  .training-grid,
  .platform-grid,
  .legacy-grid,
  .event-grid,
  .faq-grid,
  .advantage-list,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .capabilities > div {
    min-height: 126px;
    padding: 26px 24px;
  }

  .capabilities > div + div {
    padding-left: 24px;
  }

  .capabilities > div:nth-child(2) {
    border-right: 0;
  }

  .capabilities strong {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .footer-meta {
    white-space: normal;
  }

  .gateway-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 32px;
    font-size: 13px;
  }

  .brand-copy strong {
    max-width: 158px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy span {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .language-trigger {
    justify-content: center;
    min-width: 44px;
    width: 44px;
    height: 40px;
    padding: 0;
    font-size: 12px;
  }

  .language-trigger [data-language-current],
  .language-trigger .language-chevron {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .language-menu {
    width: 154px;
  }

  .site-header .language-menu {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: auto;
    width: min(200px, calc(100vw - 28px));
    max-height: calc(100svh - var(--header-height) - 22px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

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

  .site-nav {
    right: 14px;
    left: 14px;
    padding: 8px;
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 0 14px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero + .section-light {
    margin-top: 0;
    padding-top: 76px;
    background: var(--bg-light);
  }

  .hero-content {
    padding: 40px 0 48px;
  }

  .hero h1 {
    font-size: clamp(29px, 8vw, 32px);
    line-height: 1.18;
    min-height: 76px;
  }

  html[lang="en"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="ja"] .hero h1,
  html[lang="ko"] .hero h1,
  html[lang="pl"] .hero h1,
  html[lang="ru"] .hero h1 {
    max-width: 100%;
    font-size: clamp(25px, 6.8vw, 27px);
    line-height: 1.17;
    min-height: 126px;
  }

  .hero-kicker {
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    font-size: 12px;
  }

  .hero-kicker span:first-child {
    width: 56px;
    height: 36px;
    font-size: 18px;
  }

  .hero-text,
  .section-heading p:not(.eyebrow),
  .split-copy p,
  .media-copy p,
  .legal-content p,
  .contact-copy p,
  .subpage-copy p {
    font-size: 14.5px;
    line-height: 1.66;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: 112px;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .hero-points,
  .service-grid,
  .gateway-routes,
  .standard-grid,
  .process-grid,
  .training-grid,
  .platform-grid,
  .capabilities,
  .legacy-grid,
  .event-grid,
  .faq-grid,
  .advantage-list,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    gap: 14px;
    min-height: 250px;
    margin-top: 26px;
    border: 0;
  }

  .hero-points {
    min-height: 132px;
  }

  .hero-metric,
  .hero-metric + .hero-metric {
    padding: 18px;
    border: 1px solid rgba(248, 246, 241, 0.14);
    border-radius: 8px;
    background: rgba(248, 246, 241, 0.045);
  }

  .hero-metric strong {
    font-size: 16px;
  }

  .hero-metric span {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .capabilities {
    border-bottom: 0;
    border-radius: 8px;
  }

  .capabilities > div,
  .capabilities > div + div {
    min-height: auto;
    padding: 20px 18px 20px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .capabilities strong {
    font-size: 17px;
    line-height: 1.36;
  }

  .capability-label {
    margin-bottom: 8px;
  }

  .section,
  .subpage-main {
    padding: 64px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .split-copy h2,
  .media-copy h2,
  .contact-copy h2,
  .legal-content h2,
  .subpage-shell h1 {
    font-size: clamp(22px, 6.2vw, 24px);
    line-height: 1.28;
  }

  html[lang="en"] .section-heading h2,
  html[lang="en"] .split-copy h2,
  html[lang="en"] .media-copy h2,
  html[lang="en"] .contact-copy h2,
  html[lang="en"] .legal-content h2,
  html[lang="en"] .subpage-shell h1,
  html[lang="de"] .section-heading h2,
  html[lang="de"] .split-copy h2,
  html[lang="de"] .media-copy h2,
  html[lang="de"] .contact-copy h2,
  html[lang="de"] .legal-content h2,
  html[lang="de"] .subpage-shell h1,
  html[lang="fr"] .section-heading h2,
  html[lang="fr"] .split-copy h2,
  html[lang="fr"] .media-copy h2,
  html[lang="fr"] .contact-copy h2,
  html[lang="fr"] .legal-content h2,
  html[lang="fr"] .subpage-shell h1,
  html[lang="ja"] .section-heading h2,
  html[lang="ja"] .split-copy h2,
  html[lang="ja"] .media-copy h2,
  html[lang="ja"] .contact-copy h2,
  html[lang="ja"] .legal-content h2,
  html[lang="ja"] .subpage-shell h1,
  html[lang="ko"] .section-heading h2,
  html[lang="ko"] .split-copy h2,
  html[lang="ko"] .media-copy h2,
  html[lang="ko"] .contact-copy h2,
  html[lang="ko"] .legal-content h2,
  html[lang="ko"] .subpage-shell h1,
  html[lang="pl"] .section-heading h2,
  html[lang="pl"] .split-copy h2,
  html[lang="pl"] .media-copy h2,
  html[lang="pl"] .contact-copy h2,
  html[lang="pl"] .legal-content h2,
  html[lang="pl"] .subpage-shell h1,
  html[lang="ru"] .section-heading h2,
  html[lang="ru"] .split-copy h2,
  html[lang="ru"] .media-copy h2,
  html[lang="ru"] .contact-copy h2,
  html[lang="ru"] .legal-content h2,
  html[lang="ru"] .subpage-shell h1 {
    font-size: clamp(20px, 5.7vw, 22px);
    line-height: 1.26;
  }

  .service-card,
  .standard-card,
  .training-mini-card,
  .platform-card {
    min-height: auto;
  }

  .service-tags {
    margin-top: 18px;
  }

  .platform-chips {
    margin-top: -8px;
    padding: 16px;
  }

  .legacy-card div,
  .event-card div,
  .advantage-item,
  .gateway-route,
  .contact-prep,
  .contact-qr {
    padding: 20px;
  }

  .contact-copy {
    padding: 22px;
  }

  .faq-item summary {
    min-height: 68px;
    padding: 18px 20px;
    font-size: var(--font-card-title);
  }

  .faq-item p {
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-dock {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    justify-content: stretch;
  }

  .contact-dock-link {
    flex: 1;
    min-width: 0;
    padding: 0 8px;
  }

  .media-viewer {
    padding: 14px;
  }

  .media-viewer-panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 28px);
  }

  .media-viewer-image-wrap {
    min-height: 46svh;
  }

  .media-viewer-image-wrap img {
    max-height: 46svh;
  }

  .media-viewer-copy {
    padding: 22px;
  }

  .media-viewer-copy h3 {
    font-size: 22px;
  }

  .media-viewer-controls {
    margin-top: 22px;
  }

  .media-viewer-controls button {
    flex: 1;
    padding: 0 10px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.seo-static-header {
  position: sticky;
}

.seo-static-nav {
  margin-left: auto;
}

.seo-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--text-light);
  background: var(--bg-dark);
}

.seo-hero-bg,
.seo-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seo-hero-bg img {
  object-fit: cover;
  opacity: 0.56;
}

.seo-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 520px;
  max-width: 900px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0;
}

.seo-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.14;
  font-weight: 800;
}

.seo-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(248, 246, 241, 0.82);
  font-size: 16px;
  line-height: 1.72;
}

.seo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.seo-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(248, 246, 241, 0.18);
  border-radius: 8px;
  color: var(--text-light);
  background: rgba(248, 246, 241, 0.08);
  font-size: 13px;
  font-weight: 800;
}

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

.seo-topic-card {
  display: grid;
  min-height: 230px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  color: var(--text-main);
  background: var(--bg-paper);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.seo-topic-card:hover,
.seo-topic-card:focus-visible {
  border-color: rgba(216, 47, 47, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.seo-topic-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--text-light);
  background: var(--accent-red);
  font-size: 12px;
  font-weight: 800;
}

.seo-topic-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
}

.seo-topic-card p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.66;
}

.seo-topic-card-accent {
  color: var(--text-light);
  background: linear-gradient(135deg, #151a21 0%, #0c0f13 100%);
}

.seo-topic-card-accent p {
  color: rgba(248, 246, 241, 0.72);
}

.seo-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.seo-article,
.seo-side-panel {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--bg-paper);
  box-shadow: var(--shadow-soft);
}

.seo-article {
  display: grid;
  gap: 0;
  padding: 34px;
}

.seo-article section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.seo-article h2,
.seo-side-panel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.seo-article p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.78;
}

.seo-faq-panel .faq-item {
  margin-top: 14px;
  border-color: var(--line-light);
  background: rgba(17, 21, 27, 0.035);
}

.seo-faq-panel .faq-item summary {
  color: var(--text-main);
}

.seo-faq-panel .faq-item p {
  color: var(--text-muted);
}

.seo-side-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  padding: 22px;
}

.seo-side-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.seo-side-links a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  color: var(--text-main);
  background: rgba(17, 21, 27, 0.025);
  font-weight: 800;
}

.seo-side-links a:hover,
.seo-side-links a:focus-visible {
  color: var(--text-light);
  border-color: var(--accent-red);
  background: var(--accent-red);
}

.seo-process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.zh-only-seo-hub {
  border-top: 1px solid rgba(17, 21, 27, 0.08);
}

html:not([lang="zh-CN"]):not([lang="zh-Hant"]) .zh-only-seo-hub {
  display: none;
}

@media (max-width: 1180px) {
  .seo-static-nav {
    position: static;
    display: flex;
    flex-direction: row;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .seo-static-nav a {
    min-height: 40px;
    padding: 8px;
  }

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

  .seo-article-layout {
    grid-template-columns: 1fr;
  }

  .seo-side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .seo-static-header .brand-copy span {
    display: none;
  }

  .seo-static-nav {
    display: none;
  }

  .seo-hero,
  .seo-hero-content {
    min-height: auto;
  }

  .seo-hero-content {
    padding: 56px 0;
  }

  .seo-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .seo-hero p:not(.eyebrow) {
    font-size: 14.5px;
    line-height: 1.66;
  }

  .seo-topic-grid,
  .seo-process-grid {
    grid-template-columns: 1fr;
  }

  .seo-topic-card {
    min-height: auto;
    padding: 20px;
  }

  .seo-article,
  .seo-side-panel {
    padding: 22px;
  }
}
