﻿:root {
  --navy: #071d33;
  --navy-2: #0b2f50;
  --blue: #176fac;
  --blue-2: #57a7df;
  --ice: #edf6fb;
  --paper: #f7fafc;
  --white: #ffffff;
  --ink: #122131;
  --muted: #647487;
  --line: #d8e4ee;
  --lime: #d4ec46;
  --shadow: 0 24px 70px rgba(7, 29, 51, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 100px;
  padding: 14px clamp(20px, 4.8vw, 72px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(216, 228, 238, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 336px;
  padding: 0;
}

.brand-logo {
  width: 322px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.45vw, 22px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 760;
}

.site-nav a {
  padding: 11px 0;
}

.site-nav a.active {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 18px !important;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 29, 51, 0.18);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  background: rgba(237, 246, 251, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-nav .language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 7px 10px;
  color: var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.site-nav .language-switch a.is-active {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 9px 20px rgba(7, 29, 51, 0.14);
}

.site-nav .language-switch a:not(.is-active):hover,
.site-nav .language-switch a:not(.is-active):focus-visible {
  color: var(--blue);
  background: var(--white);
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 142px clamp(20px, 5vw, 78px) 58px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.94), rgba(7, 29, 51, 0.72) 42%, rgba(7, 29, 51, 0.18) 78%),
    linear-gradient(0deg, rgba(7, 29, 51, 0.78), rgba(7, 29, 51, 0.03) 56%);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 5vw, 78px);
  bottom: 0;
  width: min(38vw, 520px);
  height: 9px;
  content: "";
  background: var(--lime);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.personal-band .eyebrow,
.career-section .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(45px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 880;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 40px rgba(23, 111, 172, 0.28);
}

.button.secondary {
  color: var(--navy);
  background: var(--lime);
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 78px);
  bottom: 58px;
  width: min(360px, 30vw);
  padding: 24px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span {
  display: block;
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 27px;
  line-height: 1.08;
}

.hero-card p {
  margin: 13px 0 0;
  color: var(--muted);
}

.hero-coverage-card {
  width: min(430px, 34vw);
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.coverage-tags span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(23, 111, 172, 0.16);
  border-radius: 999px;
  background: rgba(23, 111, 172, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 142px clamp(20px, 5vw, 78px) 64px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

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

.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-image[src*="about-office-green-wall"] {
  width: min(62vw, 900px);
  left: auto;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.94), rgba(7, 29, 51, 0.72) 42%, rgba(7, 29, 51, 0.18) 78%),
    linear-gradient(0deg, rgba(7, 29, 51, 0.72), rgba(7, 29, 51, 0.03) 56%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero .eyebrow {
  color: var(--lime);
}

.page-hero p:not(.eyebrow) {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  background: var(--white);
}

.intro-copy,
.intro-text {
  max-width: 720px;
}

.intro-text p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--white);
}

.metrics > div {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 24px);
  min-height: 176px;
  padding: clamp(26px, 3.4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--navy);
  overflow: hidden;
}

.metrics > div:nth-child(even) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--navy-2);
}

.metrics > div:not(.metric-card) {
  display: block;
}

.metrics > div:not(.metric-card) strong {
  margin-bottom: 8px;
}

.metric-icon {
  display: grid;
  flex: 0 0 clamp(66px, 6vw, 86px);
  width: clamp(66px, 6vw, 86px);
  height: clamp(66px, 6vw, 86px);
  place-items: center;
  color: #bfe1f7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.metric-icon svg {
  width: 70%;
  height: 70%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.metrics strong {
  display: block;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.metrics > div > span:not(.metric-icon),
.metric-copy small {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(23, 111, 172, 0.08), transparent 32%),
    var(--paper);
}

.trust-copy {
  display: flex;
  max-width: 690px;
  min-height: 100%;
  flex-direction: column;
}

.trust-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.trust-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(23, 111, 172, 0.18);
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(7, 29, 51, 0.07);
}

.trust-ihk-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: auto;
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(7, 29, 51, 0.08);
}

.trust-ihk-logo {
  display: grid;
  min-height: 138px;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(237, 246, 251, 0.92), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(23, 111, 172, 0.14);
  border-radius: 14px;
}

.trust-ihk-logo img {
  width: 100%;
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(7, 29, 51, 0.1));
}

.trust-ihk-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.trust-ihk-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.certificate-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(18px, 2.5vw, 26px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(7, 29, 51, 0.09);
}

.certificate-frame {
  display: grid;
  height: 360px;
  place-items: center;
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fbfe, #ffffff);
  border: 1px solid rgba(23, 111, 172, 0.14);
  border-radius: 14px;
}

.certificate-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 16px 28px rgba(7, 29, 51, 0.12));
}

.certificate-card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 24px;
}

.certificate-card p {
  color: var(--muted);
}

.certificate-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.certificate-card-wide h3 {
  margin-top: 0;
}

.ihk-frame {
  height: 170px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(237, 246, 251, 0.9), rgba(255, 255, 255, 0.98));
}

.ihk-frame img {
  max-height: 112px;
  object-position: center;
}

.trust-meta {
  display: block;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.industry-overview {
  background: var(--paper);
}

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

.industry-grid a,
.industry-grid article {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.industry-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.industry-grid a:hover img,
.industry-grid article:hover img {
  transform: scale(1.04);
}

.industry-grid span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px 17px;
  color: var(--white);
  background: rgba(7, 29, 51, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 19px;
  font-weight: 880;
  backdrop-filter: blur(12px);
}

.industry-grid article > div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 17px;
  color: var(--white);
  background: rgba(7, 29, 51, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(12px);
}

.industry-grid article span {
  position: static;
  display: block;
  padding: 0;
  color: var(--lime);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-grid article h3 {
  margin: 6px 0 7px;
  color: var(--white);
  font-size: 22px;
}

.industry-grid article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.logistics-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  background: var(--paper);
}

.feature-image {
  position: relative;
}

.feature-image::before {
  position: absolute;
  inset: -22px 22px 22px -22px;
  z-index: 0;
  content: "";
  background: var(--ice);
  border-radius: 16px;
}

.feature-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 720px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.feature-list div {
  padding: 19px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 18px;
}

.feature-list span {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  background: var(--white);
}

.stack-list,
.legal-stack {
  display: grid;
  gap: 14px;
}

.stack-list div,
.legal-stack article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.stack-list strong,
.stack-list span {
  display: block;
}

.stack-list strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 20px;
}

.stack-list span,
.legal-stack p {
  color: var(--muted);
}

.services {
  background: var(--white);
}

.section-head {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.service-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.service-row:nth-child(2),
.service-row:nth-child(3) {
  background: var(--paper);
}

.service-row > span {
  color: var(--blue);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.content-grid article {
  padding: clamp(24px, 3.6vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(7, 29, 51, 0.08);
}

.content-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-grid p {
  color: var(--muted);
}

.talent-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
  background: var(--white);
}

.talent-intro {
  position: sticky;
  top: 112px;
}

.talent-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.talent-columns article {
  padding: clamp(24px, 3.8vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.qualification-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(212, 236, 70, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.qualification-copy {
  max-width: 660px;
}

.qualification-copy h2 {
  color: var(--white);
}

.qualification-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.qualification-card {
  padding: clamp(24px, 4vw, 40px);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.qualification-card > span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualification-card .check-list {
  margin: 0;
}

.qualification-card .check-list li {
  color: var(--navy);
}

.models-section {
  background: var(--paper);
}

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

.model-tiles article {
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.model-tiles article:nth-child(2) {
  background: var(--navy-2);
}

.model-tiles article:nth-child(3) {
  background: linear-gradient(145deg, var(--blue), var(--navy-2));
}

.model-tiles span {
  display: block;
  margin-bottom: 30px;
  color: var(--lime);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.model-tiles h3 {
  color: var(--white);
}

.model-tiles p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-person {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.contact-person p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.person-card {
  display: grid;
  gap: 9px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.person-card strong {
  font-size: 26px;
  line-height: 1.1;
}

.person-card span {
  color: rgba(255, 255, 255, 0.74);
}

.person-card a {
  color: var(--lime);
  font-weight: 850;
}

.jobs-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.94), rgba(11, 47, 80, 0.82)),
    url("assets/career-premium.jpg") center / cover;
}

.jobs-teaser h2 {
  color: var(--white);
}

.jobs-teaser p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.jobs-teaser .eyebrow {
  color: var(--lime);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: var(--blue);
  font-weight: 950;
}

.soft-panel {
  max-width: 1120px;
  margin: clamp(72px, 9vw, 118px) auto;
  padding: clamp(32px, 5vw, 58px);
  background: linear-gradient(145deg, var(--ice), var(--white));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(7, 29, 51, 0.08);
}

.soft-panel p {
  color: var(--muted);
  font-size: 18px;
}

.references-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 29, 51, 0.96), rgba(18, 95, 150, 0.92)),
    var(--navy);
}

.references-copy h2,
.references-copy p {
  color: var(--white);
}

.references-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.references-section .section-head h2,
.references-section .section-head p {
  color: var(--white);
}

.references-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.reference-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.26);
}

.reference-panel span {
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  padding: 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 900;
}

.references-board {
  display: block;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.26);
}

.references-board img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.references-teaser {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
  background:
    linear-gradient(135deg, rgba(23, 111, 172, 0.05), transparent 38%),
    var(--white);
}

.references-teaser h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.2vw, 45px);
}

.references-teaser p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.references-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: clamp(18px, 2.4vw, 26px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 253, 0.96));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(7, 29, 51, 0.1);
}

.references-strip span,
.references-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(190, 209, 224, 0.9);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 29, 51, 0.06);
}

.references-strip span {
  min-width: 112px;
}

.references-strip img {
  display: block;
  width: auto;
  max-width: 170px;
  height: 34px;
  object-fit: contain;
}

.references-strip a {
  min-height: 48px;
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: var(--navy);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.cta-band .eyebrow {
  color: var(--lime);
}

.personal-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.96), rgba(7, 29, 51, 0.82)),
    url("assets/aircraft-loading.jpg") center / cover;
}

.personal-band h2,
.personal-band h3 {
  color: var(--white);
}

.personal-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.personal-cards {
  display: grid;
  gap: 14px;
}

.personal-cards div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.personal-cards strong,
.personal-cards span {
  display: block;
}

.personal-cards strong {
  margin-bottom: 7px;
  font-size: 24px;
}

.personal-cards span {
  color: rgba(255, 255, 255, 0.76);
}

.career-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.career-image img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.career-copy h2 {
  color: var(--white);
}

.career-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.role-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.role-cloud span {
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 800;
}

.role-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.role-grid span {
  padding: 13px 16px;
  color: var(--navy);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

.locations {
  background: var(--paper);
}

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

.location-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(7, 29, 51, 0.08);
}

.location-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.08;
}

.location-grid p {
  color: var(--muted);
}

.network-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(23, 111, 172, 0.12), transparent 34%),
    linear-gradient(135deg, #f7fbfe, #eef7fc);
}

.network-copy {
  max-width: none;
}

.network-copy > p:not(.eyebrow) {
  max-width: 980px;
  color: var(--muted);
  font-size: 18px;
}

.office-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.office-list article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 228, 238, 0.94);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(7, 29, 51, 0.08);
}

.office-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.office-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 86px;
  overflow: hidden;
  margin-top: auto;
  padding: 14px 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 24%, rgba(212, 236, 70, 0.34), transparent 20%),
    linear-gradient(135deg, rgba(18, 95, 150, 0.96), rgba(7, 29, 51, 0.98));
  border-radius: 12px;
}

.office-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.38) 18% 19%, transparent 19% 50%, rgba(255, 255, 255, 0.32) 50% 51%, transparent 51%),
    linear-gradient(20deg, transparent 0 36%, rgba(255, 255, 255, 0.28) 36% 37%, transparent 37% 73%, rgba(255, 255, 255, 0.24) 73% 74%, transparent 74%);
}

.office-visual::after {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--lime);
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(7, 29, 51, 0.32);
}

.office-visual em,
.office-visual b,
.office-visual small,
.office-visual i {
  position: relative;
  z-index: 1;
}

.office-visual em {
  display: none;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-visual b {
  color: var(--white);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 0.92;
  letter-spacing: 0;
}

.office-visual small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.office-visual i {
  display: block;
  width: 40px;
  height: 4px;
  margin-top: 10px;
  background: var(--lime);
  border-radius: 999px;
}

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

.office-list span,
.map-heading span,
.coverage-heading span,
.coverage-stat-card span,
.coverage-columns span,
.map-embeds span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-list strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.office-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.office-list dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.office-list dl div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 228, 238, 0.88);
}

.office-list dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.office-list dd {
  margin: 0;
  color: var(--muted);
}

.office-list dd a {
  color: var(--blue);
  font-weight: 800;
}

.office-list small {
  color: #7d8ca0;
}

.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.office-actions a,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.office-actions a {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 29, 51, 0.14);
}

.network-map-card,
.network-coverage-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.network-coverage-card {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.92fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: start;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 236, 70, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 252, 0.96));
}

.coverage-heading {
  max-width: 760px;
}

.coverage-heading strong {
  display: block;
  color: var(--navy);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.05;
}

.coverage-heading p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.coverage-stat-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 51, 0.98), rgba(16, 79, 126, 0.96));
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(7, 29, 51, 0.18);
}

.coverage-stat-card span {
  color: var(--lime);
}

.coverage-stat-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1;
}

.coverage-stat-card p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

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

.coverage-columns article,
.coverage-note {
  padding: clamp(18px, 2.2vw, 24px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 228, 238, 0.92);
  border-radius: 16px;
}

.coverage-columns ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-columns li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(237, 246, 251, 0.92);
  border: 1px solid rgba(190, 209, 224, 0.76);
  border-radius: 999px;
  font-weight: 800;
}

.coverage-columns li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  content: "";
  background: var(--lime);
  border-radius: 999px;
}

.coverage-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(320px, 1fr);
  gap: 12px 26px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(237, 246, 251, 0.96), rgba(255, 255, 255, 0.9));
}

.coverage-note strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.coverage-note p {
  margin: 0;
  color: var(--muted);
}

.map-heading {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.map-heading strong {
  display: block;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.08;
}

.map-heading p {
  max-width: 610px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.map-interface {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(240px, 0.78fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 24px;
}

.de-map {
  position: relative;
  min-height: 520px;
  margin-top: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 58%, rgba(212, 236, 70, 0.12), transparent 20%),
    radial-gradient(circle at 60% 32%, rgba(23, 111, 172, 0.12), transparent 28%),
    linear-gradient(145deg, #fbfdff, #edf6fb);
  border: 1px solid rgba(216, 228, 238, 0.95);
  border-radius: 18px;
}

.map-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 430px);
  aspect-ratio: 520 / 660;
  transform: translate(-50%, -50%);
}

.germany-map {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translate(-6px, -50%);
  white-space: nowrap;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}

button.map-pin {
  cursor: pointer;
  font: inherit;
}

.map-pin::before {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  content: "";
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(23, 111, 172, 0.12);
}

.airport-pin {
  width: 24px;
  height: 24px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(183, 211, 228, 0.92);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(7, 29, 51, 0.14),
    0 0 0 9px rgba(23, 111, 172, 0.08);
  transform: translate(-50%, -50%);
}

.airport-pin::before {
  width: 10px;
  height: 10px;
  background: var(--blue);
  box-shadow: none;
}

.airport-pin:nth-of-type(5)::before {
  background: var(--lime);
}

.airport-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.airport-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(190, 213, 228, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.airport-ribbon span::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
}

.airport-ribbon span:first-child::before {
  background: var(--lime);
}

.office-pin {
  z-index: 5;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.office-pin::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 3px solid var(--white);
  transform: translate(-50%, -50%);
}

.office-pin .pin-card {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.office-pin small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.72;
  text-transform: uppercase;
}

.office-pin .pin-card b {
  font-size: 14px;
  line-height: 1.05;
}

.office-pin:hover,
.office-pin:focus-visible,
.office-pin.is-active {
  outline: none;
}

.office-pin:hover::before,
.office-pin:focus-visible::before,
.office-pin.is-active::before {
  background: var(--navy);
  box-shadow:
    0 0 0 4px var(--white),
    0 0 0 12px rgba(212, 236, 70, 0.36),
    0 16px 34px rgba(7, 29, 51, 0.22);
}

.office-pin::before,
.office-dot {
  background: var(--lime);
}

.map-office-selector {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.map-office-selector button {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  text-align: left;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(190, 213, 228, 0.95);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.09);
  cursor: pointer;
  font: inherit;
}

.map-office-selector button:hover,
.map-office-selector button:focus-visible,
.map-office-selector button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  outline: none;
}

.map-office-selector span {
  color: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.map-office-selector b {
  font-size: 14px;
  line-height: 1.05;
}

.location-detail {
  display: grid;
  align-content: start;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(7, 29, 51, 0.98), rgba(12, 53, 86, 0.96));
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.location-detail > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-detail h3 {
  margin: 10px 0 12px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.08;
}

.location-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.location-detail dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.location-detail dl div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.location-detail dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.location-detail dd {
  margin: 0;
  color: var(--white);
}

.location-detail small {
  color: rgba(255, 255, 255, 0.62);
}

.location-detail a:not(.button-detail) {
  color: var(--white);
  font-weight: 800;
}

.button-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 6px;
  padding: 11px 15px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.map-embeds {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.map-embeds article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 56px rgba(7, 29, 51, 0.1);
}

.map-embeds article > div {
  padding: 22px 24px 18px;
}

.map-embeds h3 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
}

.map-embeds p {
  margin: 8px 0 0;
  color: var(--muted);
}

.map-embeds iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  background:
    linear-gradient(180deg, rgba(237, 246, 251, 0.96), rgba(255, 255, 255, 1)),
    url("assets/office-brand.jpg") right bottom / 420px auto no-repeat;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  min-height: 100vh;
  align-items: center;
  padding-top: 140px;
  background:
    linear-gradient(90deg, rgba(237, 246, 251, 0.96), rgba(255, 255, 255, 1)),
    url("assets/office-brand.jpg") right bottom / 430px auto no-repeat;
}

.contact-hero h1 {
  color: var(--navy);
}

.contact-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.contact-copy {
  max-width: 680px;
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  align-self: start;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.contact-card h3 {
  margin-bottom: 14px;
}

.contact-card p {
  color: var(--muted);
}

.contact-card .button {
  margin-top: 10px;
}

address {
  margin-top: 28px;
  color: var(--navy);
  font-style: normal;
  font-weight: 780;
}

address a {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c7d7e5;
  border-radius: 10px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(20px, 5vw, 78px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-logo img {
  width: 204px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.footer-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(7, 29, 51, 0.08);
}

.footer-trust img {
  width: 190px;
  height: auto;
  display: block;
}

.footer-trust-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.footer-ihk-badge {
  display: inline-grid;
  gap: 4px;
  place-items: center;
}

.footer-ihk-badge img {
  width: 92px;
  max-height: 34px;
  object-fit: contain;
}

.footer-ihk-badge small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--blue);
  font-weight: 820;
}

.legal-page {
  max-width: 980px;
  min-height: 76vh;
  margin: 0 auto;
  padding-top: 142px;
}

.legal-page h1 {
  color: var(--navy);
}

.legal-stack h2 {
  font-size: 26px;
}

.jobs-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 236, 70, 0.18), transparent 36%),
    linear-gradient(135deg, #f8fbfd, #eef6fb);
  border-bottom: 1px solid var(--line);
}

.jobs-intro-copy h2 {
  max-width: 820px;
  margin: 8px 0 18px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
}

.jobs-intro-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.job-search-panel {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.job-search-panel .panel-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.job-filter-row {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  background: linear-gradient(135deg, #f8fbfd, #edf6fb);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.job-filter-row b,
.job-filter-row small {
  display: block;
}

.job-filter-row b {
  color: var(--navy);
  font-size: 16px;
}

.job-filter-row small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.job-search-panel .button {
  justify-content: center;
  width: 100%;
}

.job-board-section {
  background: var(--white);
}

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

.job-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.07);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

a.job-card:hover,
a.job-card:focus-visible {
  border-color: rgba(23, 111, 172, 0.46);
  box-shadow: 0 20px 45px rgba(7, 29, 51, 0.13);
  transform: translateY(-3px);
}

a.job-card:focus-visible {
  outline: 3px solid rgba(87, 167, 223, 0.36);
  outline-offset: 3px;
}

.job-card > span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.job-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}

.job-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.job-meta {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.job-meta b {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
}

.job-meta small {
  color: var(--muted);
  font-size: 14px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.job-tags small {
  padding: 7px 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.job-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 950;
}

.job-card-link::after {
  content: "→";
  margin-left: 8px;
}

.job-card.highlight {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #174a78);
  border-color: rgba(255, 255, 255, 0.1);
}

.job-card.highlight > span,
.job-card.highlight .job-tags small {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.job-card.highlight h3,
.job-card.highlight .job-meta b {
  color: var(--white);
}

.job-card.highlight p,
.job-card.highlight .job-meta small {
  color: rgba(255, 255, 255, 0.78);
}

.job-card.highlight .job-meta {
  border-color: rgba(255, 255, 255, 0.18);
}

.job-card.highlight .button {
  justify-content: center;
  margin-top: 20px;
  color: var(--navy);
  background: var(--lime);
  border-color: transparent;
}

.jobs-benefit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(212, 236, 70, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), #1e5d92);
}

.jobs-benefit-band h2 {
  margin: 8px 0 16px;
  color: var(--white);
}

.jobs-benefit-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.benefit-grid article {
  min-height: 136px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.benefit-grid strong,
.benefit-grid span {
  display: block;
}

.benefit-grid strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 20px;
}

.benefit-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.jobs-process-section {
  background: var(--paper);
}

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

.jobs-process article {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.jobs-process span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
  font-weight: 950;
}

.jobs-process h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.jobs-process p {
  margin: 0;
  color: var(--muted);
}

.jobs-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 29, 51, 0.84), rgba(7, 29, 51, 0.84)),
    url("assets/career-premium.jpg") center / cover;
}

.jobs-final-cta h2 {
  max-width: 720px;
  margin: 8px 0 12px;
  color: var(--white);
}

.jobs-final-cta p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.application-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(237, 246, 251, 0.96) 0 46%, rgba(15, 48, 82, 0.96) 46% 100%),
    radial-gradient(circle at 8% 12%, rgba(87, 167, 223, 0.22), transparent 36%);
}

.application-copy {
  color: var(--navy);
}

.application-copy h2 {
  max-width: 620px;
  margin: 8px 0 16px;
  color: var(--navy);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.96;
}

.application-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.application-note {
  display: grid;
  gap: 5px;
  max-width: 520px;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.application-note strong {
  color: var(--navy);
}

.application-note span {
  color: var(--muted);
}

.application-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(7, 29, 51, 0.24);
}

.application-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 18px;
}

.application-step span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-weight: 950;
}

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

.application-form label {
  color: var(--white);
}

.application-form input,
.application-form textarea,
.application-form select {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.18);
}

.application-form select {
  width: 100%;
  color: var(--navy);
  background: var(--white);
}

.application-form input[readonly] {
  color: var(--muted);
  background: #f3f7fa;
}

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

.upload-field {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  border: 2px dashed rgba(87, 167, 223, 0.52);
  border-radius: 14px;
  cursor: pointer;
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  place-items: center;
  color: var(--blue);
  border: 1px dashed var(--blue);
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.upload-field strong {
  display: block;
  max-width: 420px;
  color: var(--navy);
  font-size: 18px;
}

.upload-field small {
  margin-top: 4px;
  color: var(--muted);
}

.application-form .button {
  justify-content: center;
  width: 100%;
  color: var(--navy);
  background: var(--lime);
}

.application-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.application-form .form-note {
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero .request-form {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.contact-hero .request-form .application-step {
  color: var(--navy);
}

.contact-hero .request-form .application-step span {
  color: var(--white);
  background: var(--blue);
}

.contact-hero .request-form label {
  color: var(--navy);
}

.contact-hero .request-form input,
.contact-hero .request-form textarea,
.contact-hero .request-form select {
  color: var(--ink);
  background: var(--white);
  border-color: #c7d7e5;
}

.contact-hero .request-form .upload-field {
  color: var(--navy);
  background: #f6fbff;
  border-color: rgba(87, 167, 223, 0.58);
}

.contact-hero .request-form .button {
  color: var(--white);
  background: var(--blue);
}

.contact-hero .request-form .form-note {
  color: var(--muted);
}

.contact-hero .request-form .form-status.is-success {
  color: #0a7a3b;
}

.contact-hero .request-form .form-status.is-error {
  color: #b3261e;
}

.form-status {
  min-height: 22px;
  margin: -6px 0 0;
  font-weight: 850;
}

.form-status.is-success {
  color: #d5ff8a;
}

.form-status.is-error {
  color: #ffd0c7;
}

.job-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: var(--paper);
}

.job-detail-hero h2 {
  margin: 8px 0 14px;
  color: var(--navy);
}

.job-detail-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.job-facts {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.job-facts div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.job-facts div:last-child {
  border-bottom: 0;
}

.job-facts span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.job-facts strong {
  color: var(--navy);
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  background: var(--white);
}

.job-detail-card,
.job-detail-aside {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.job-detail-card h2,
.job-detail-aside h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: clamp(26px, 2.2vw, 34px);
}

.job-detail-card .check-list {
  margin-bottom: 0;
}

.job-detail-aside {
  position: sticky;
  top: 126px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #174a78);
  box-shadow: var(--shadow);
}

.job-detail-aside h2 {
  color: var(--white);
}

.job-detail-aside p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.job-detail-aside .button {
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}

@media (max-width: 1120px) {
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 480px);
    margin-top: 34px;
  }

  .metrics,
  .location-grid,
  .industry-grid,
  .content-grid,
  .map-embeds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .jobs-intro-section,
  .jobs-benefit-band,
  .application-section,
  .job-detail-hero {
    grid-template-columns: 1fr;
  }

  .application-section {
    background:
      linear-gradient(180deg, rgba(237, 246, 251, 0.98) 0 42%, rgba(15, 48, 82, 0.98) 42% 100%),
      radial-gradient(circle at 8% 12%, rgba(87, 167, 223, 0.22), transparent 36%);
  }

  .job-detail-grid {
    grid-template-columns: 1fr;
  }

  .job-detail-aside {
    position: static;
  }
}

@media (max-width: 1080px) {
  .site-header {
    justify-content: flex-start;
    min-height: 72px;
  }

  .brand-logo {
    width: 204px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 212px;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    text-align: center;
  }

  .language-switch {
    align-self: flex-start;
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 29, 51, 0.92), rgba(7, 29, 51, 0.52)),
      linear-gradient(90deg, rgba(7, 29, 51, 0.78), rgba(7, 29, 51, 0.36));
  }

  .intro,
  .logistics-feature,
  .personal-band,
  .career-section,
  .contact-section,
  .contact-hero,
  .network-section,
  .references-section,
  .references-teaser,
  .two-column,
  .talent-section,
  .trust-section,
  .qualification-section,
  .contact-person {
    grid-template-columns: 1fr;
  }

  .talent-intro {
    position: static;
  }

  .service-rows {
    grid-template-columns: 1fr;
  }

  .content-grid,
  .industry-grid,
  .model-tiles,
  .talent-columns,
  .office-list,
  .coverage-columns,
  .map-embeds {
    grid-template-columns: 1fr;
  }

  .de-map {
    min-height: 480px;
  }

  .jobs-teaser,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row:nth-child(2),
  .service-row:nth-child(3) {
    background: var(--white);
  }

  .service-row:nth-child(even) {
    background: var(--paper);
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-inline: 18px;
  }

  .brand {
    min-width: 0;
  }

  section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero {
    padding-bottom: 38px;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metrics,
  .location-grid,
  .industry-grid,
  .content-grid,
  .certificate-showcase,
  .map-embeds,
  .reference-panel,
  .job-card-grid,
  .jobs-process,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .jobs-final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .job-search-panel {
    padding: 18px;
  }

  .job-card,
  .jobs-process article {
    min-height: 0;
  }

  .job-facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .application-grid {
    grid-template-columns: 1fr;
  }

  .upload-field {
    min-height: 160px;
  }

  .certificate-frame {
    height: 320px;
  }

  .certificate-card-wide {
    grid-template-columns: 1fr;
  }

  .trust-ihk-card {
    grid-template-columns: 1fr;
  }

  .trust-ihk-logo {
    min-height: 116px;
  }

  .ihk-frame {
    height: 140px;
  }

  .brand-logo {
    width: 168px;
  }

  .nav-toggle {
    padding: 9px 13px;
  }

  .network-map-card,
  .network-coverage-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .coverage-note {
    grid-template-columns: 1fr;
  }

  .office-list article {
    gap: 16px;
    padding: 18px;
  }

  .office-visual {
    min-height: 96px;
  }

  .page-hero-image[src*="about-office-green-wall"] {
    width: 100%;
  }

  .map-interface {
    grid-template-columns: 1fr;
  }

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

  .de-map {
    min-height: 455px;
    overflow: hidden;
  }

  .map-canvas {
    top: 50%;
    width: min(88%, 360px);
  }

  .map-office-selector {
    grid-template-columns: 1fr;
    bottom: 22px;
  }

  .map-office-selector button {
    padding: 9px 11px;
  }

  .map-pin {
    font-size: 10px;
  }

  .airport-ribbon span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .office-pin {
    width: 22px;
    height: 22px;
    padding: 0;
  }

  .office-pin::before {
    left: 50%;
  }

  .office-pin .pin-card {
    min-width: 108px;
    padding: 8px 10px;
  }

  .office-pin small {
    font-size: 8px;
  }

  .office-pin .pin-card b {
    font-size: 12px;
  }

  .map-embeds iframe {
    height: 300px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

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