/* ===== 22 PHARMA FZE LLC — stylesheet ===== */
:root {
  --gold: #F7D05B;
  --gold-dark: #E0B431;
  --navy: #0E1B2A;
  --navy-soft: #16273b;
  --ink: #1c2431;
  --muted: #5b6675;
  --bg-muted: #f6f8fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 27, 42, 0.08);
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  /* Kein overflow-x hier: zusammen mit html-Clip würde der body selbst zum
     Scroll-Container und Anker-Scrolling/scroll-padding brechen. */
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { line-height: 1.2; color: var(--navy); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
  font-weight: 700; color: var(--gold-dark); margin-bottom: .6rem;
}
.center { text-align: center; }
.section-lead { color: var(--muted); font-size: 1.1rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid #eef1f5;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand img { width: 132px; height: 76px; object-fit: contain; object-position: left center; }
.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; align-items: center; }
.main-nav a { color: var(--navy); font-weight: 500; }
.nav-cta {
  background: var(--gold); color: var(--navy) !important; padding: 9px 18px;
  border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: var(--gold-dark); text-decoration: none; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--navy); display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop[hidden] { display: none; }
.menu-open { overflow: hidden; }
.menu-open .site-header {
  position: fixed; top: 0; left: 0; right: 0;
}
.scroll-progress {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left center;
  transition: transform .08s linear;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; line-height: 1.1;
  text-align: center; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden; background: var(--navy);
  padding: clamp(88px, 13vw, 170px) 0;
}
/* Bild auf eigener Ebene: Ken-Burns-Zoom (sehr langsam) */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/hero-dubai.jpg") center 30% / cover no-repeat;
  animation: hero-kenburns 38s ease-in-out infinite alternate;
  z-index: 0;
  will-change: transform;
}
/* Abdunkelnder Verlauf als Overlay */
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,31,.72) 0%, rgba(10,20,31,.45) 45%, rgba(10,20,31,.82) 100%);
  z-index: 1;
}
.hero > * { position: relative; z-index: 3; }
/* Routen-Netz: Canvas-Ebene zwischen Verlauf und Inhalt */
.hero-net {
  position: absolute !important; inset: 0; width: 100%; height: 100%;
  z-index: 2; pointer-events: none; opacity: .55;
}
@media (max-width: 680px) {
  .hero-net { display: none; }
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.09); }
}
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: .28em; font-weight: 700;
  color: var(--gold); margin: 0 0 1rem;
}
/* Goldener Akzentstrich über der Eyebrow */
.hero-eyebrow::before {
  content: ""; display: block; width: 56px; height: 3px; border-radius: 2px;
  background: var(--gold); margin-bottom: 14px;
  transform-origin: left center; animation: hero-bar .8s ease .15s backwards;
}
@keyframes hero-bar { from { transform: scaleX(0); } }
/* Kinetische Headline: Wörter gleiten nacheinander hoch */
.hero h1 .kin {
  display: inline-block; opacity: 0; transform: translateY(.45em);
  animation: kin-in .55s cubic-bezier(.2, .7, .2, 1) forwards;
}
@keyframes kin-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .hero-eyebrow::before { animation: none; }
  .hero h1 .kin { animation: none; opacity: 1; transform: none; }
}
.hero h1 { max-width: 16ch; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero-sub { font-size: 1.2rem; color: #dbe4ee; max-width: 60ch; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 2rem 0 2.5rem; }
.hero .btn-ghost { border-color: rgba(255,255,255,.92); color: #fff; background: transparent; }
.hero .btn-ghost:hover { background: #fff; color: var(--navy); }
.hero-stats { list-style: none; display: flex; gap: 48px; padding: 0; margin: 0; flex-wrap: wrap; }
.hero-stats strong { display: block; font-size: 2rem; color: var(--gold); font-weight: 800; }
.hero-stats span { color: #c3cfdc; font-size: .95rem; }

/* ===== Sections ===== */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-muted { background: var(--bg-muted); }
.section h2.center + .section-lead { margin-top: -.4rem; }

.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.contact-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ===== Expertise / About ===== */
.expertise-section { background: #fff; }
.expertise-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 46px; align-items: stretch;
}
.expertise-copy h2 { max-width: 16ch; }
.expertise-copy p:not(.eyebrow):not(.section-lead) { color: var(--muted); max-width: 66ch; }
.expertise-signal {
  position: relative; overflow: hidden; min-height: 420px; border-radius: 8px;
  box-shadow: var(--shadow); background: var(--navy); display: flex; align-items: flex-end;
}
.expertise-signal img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.expertise-signal::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,31,.06) 0%, rgba(10,20,31,.88) 100%);
}
.expertise-signal div {
  position: relative; z-index: 1; padding: 28px; color: #fff;
}
.expertise-signal span {
  display: block; color: var(--gold); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .65rem;
}
.expertise-signal strong {
  display: block; font-size: 1.35rem; line-height: 1.25; max-width: 17ch;
}
.expertise-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 2rem;
}
.expertise-grid article {
  border: 1px solid #e8edf3; border-top: 4px solid var(--gold);
  border-radius: 8px; padding: 22px; background: #fff; box-shadow: var(--shadow);
  min-height: 228px;
}
.expertise-grid span {
  display: inline-block; color: var(--gold-dark); font-weight: 800; margin-bottom: .9rem;
}
.expertise-grid p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.55; }
.expertise-principles {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  margin-top: 18px; padding: 20px 24px; border-radius: 8px;
  background: var(--navy); color: #dbe4ee;
}
.expertise-principles strong { color: #fff; white-space: nowrap; }
.expertise-principles ul {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-end;
  gap: 10px; padding: 0; margin: 0;
}
.expertise-principles li {
  border: 1px solid rgba(247,208,91,.42); border-radius: 999px;
  color: var(--gold); padding: 6px 12px; font-weight: 700; font-size: .88rem;
}

/* ===== Features ===== */
.features {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.features li {
  background: #fff; border: 1px solid #eef1f5; border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.features h3 { color: var(--navy); }
.features p { color: var(--muted); margin: 0; }
.trust-badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 2rem 0 0;
}
.trust-badge {
  background: var(--navy); color: #dbe4ee; border: 1px solid rgba(247,208,91,.45);
  border-radius: 8px; padding: 20px; box-shadow: var(--shadow); min-height: 178px;
}
.trust-badge span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 58px; min-height: 40px; padding: 0 12px; margin-bottom: 1rem;
  border: 1px solid rgba(247,208,91,.75); border-radius: 8px;
  color: var(--gold); font-weight: 800; letter-spacing: .02em;
}
.trust-badge strong { display: block; color: #fff; line-height: 1.25; margin-bottom: .5rem; }
.trust-badge p { color: #c3cfdc; font-size: .92rem; line-height: 1.5; margin: 0; }

/* ===== Cards ===== */
/* 6-Spalten-Raster: 5 Karten verteilen sich als 3 + 2 ohne Loch */
.cards {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 2.5rem;
}
.cards .card { grid-column: span 2; }
.cards .card:nth-child(4), .cards .card:nth-child(5) { grid-column: span 3; }
.card {
  background: #fff; border: 1px solid #eef1f5; border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.card p { color: var(--muted); margin: 0; }
.card-img {
  width: calc(100% + 56px); max-width: none; margin: -28px -28px 20px;
  height: 170px; object-fit: cover; display: block;
}
.card { overflow: hidden; }

/* ===== Sourcing Desk ===== */
.sourcing-section {
  background:
    linear-gradient(135deg, rgba(10,20,31,.98) 0%, rgba(14,27,42,.94) 48%, rgba(22,39,59,.9) 100%),
    url("assets/globe-network.jpg") center / cover no-repeat;
  color: #dbe4ee;
}
.sourcing-section h2, .sourcing-section h3 { color: #fff; }
.sourcing-section .eyebrow { color: var(--gold); }
.sourcing-section .section-lead { color: #d7e0ea; max-width: 66ch; }
.sourcing-hero {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 44px; align-items: start;
}
.sourcing-copy h2 { max-width: 13ch; font-size: clamp(2rem, 4.4vw, 3.35rem); }
.sourcing-command {
  border: 1px solid rgba(247,208,91,.34); border-top: 4px solid var(--gold);
  border-radius: 8px; padding: 28px; background: rgba(10,20,31,.78);
  box-shadow: 0 22px 55px rgba(0,0,0,.26);
}
.command-label {
  display: inline-block; color: var(--gold); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem;
}
.command-list, .alternative-list, .quote-columns ul {
  list-style: none; padding: 0; margin: 0;
}
.command-list {
  display: grid; gap: 14px;
}
.command-list li {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 14px;
}
.command-list strong, .command-list span { display: block; }
.command-list strong { color: #fff; margin-bottom: .25rem; }
.command-list span { color: #c3cfdc; font-size: .94rem; line-height: 1.45; }
.sourcing-focus {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 2.3rem;
}
.sourcing-focus article, .workflow article, .sourcing-panel {
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  background: rgba(255,255,255,.075);
}
.sourcing-focus article {
  padding: 22px; min-height: 214px;
}
.sourcing-focus span {
  display: block; color: var(--gold); font-size: .78rem; font-weight: 800;
  letter-spacing: .11em; text-transform: uppercase; margin-bottom: 1rem;
}
.sourcing-focus p { color: #c3cfdc; margin: 0; }
.sourcing-detail-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 18px;
}
.sourcing-panel {
  padding: 28px; box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.sourcing-panel p { color: #c3cfdc; margin-bottom: 1.2rem; }
.quote-columns {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.quote-columns li, .alternative-list li {
  position: relative; padding-left: 24px; color: #dbe4ee; margin-bottom: .7rem;
}
.quote-columns li::before, .alternative-list li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px;
  border-radius: 50%; background: var(--gold);
}
.workflow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 2rem;
}
.workflow article {
  padding: 22px; min-height: 182px;
}
.workflow span {
  display: inline-block; color: var(--gold); font-weight: 800; margin-bottom: 1rem;
}
.workflow p { color: #c3cfdc; margin: 0; }

/* ===== Documentation ===== */
.documentation-section { background: #fff; }
.documentation-header {
  display: grid; grid-template-columns: 1fr minmax(320px, .82fr);
  gap: 44px; align-items: end; margin-bottom: 2.4rem;
}
.documentation-header h2 { max-width: 15ch; }
.documentation-header .section-lead { margin-bottom: .4rem; }
.documentation-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 24px; align-items: stretch;
}
.quality-system, .document-pack {
  border: 1px solid #e8edf3; border-radius: 8px; background: #fff;
  box-shadow: var(--shadow);
}
.quality-system { padding: 30px; }
.quality-controls {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 1.4rem;
}
.quality-controls article {
  border-left: 4px solid var(--gold); border-radius: 8px; padding: 18px 18px 18px 20px;
  background: var(--bg-muted); min-height: 178px;
}
.quality-controls span, .doc-pack-label {
  display: inline-block; color: var(--gold-dark); font-size: .76rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem;
}
.quality-controls h3 { font-size: 1.02rem; }
.quality-controls p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.55; }
.document-pack {
  padding: 30px; background: var(--navy); color: #dbe4ee;
  border-color: rgba(247,208,91,.35);
}
.document-pack h3 { color: #fff; }
.document-list {
  list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 10px;
}
.document-list li {
  display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: center;
  padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12);
}
.document-list strong {
  color: var(--gold); font-weight: 800; letter-spacing: .04em;
}
.document-list span { color: #c3cfdc; line-height: 1.35; }
.documentation-assurance {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px;
}
.documentation-assurance article {
  border: 1px solid #e8edf3; border-radius: 8px; padding: 22px;
  background: var(--bg-muted);
}
.documentation-assurance strong { display: block; color: var(--navy); margin-bottom: .55rem; }
.documentation-assurance p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.55; }

/* ===== Facilities ===== */
.facilities-section { background: var(--bg-muted); }
.facilities-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: 46px; align-items: stretch;
}
.facilities-copy h2 { max-width: 17ch; }
.facilities-copy p:not(.eyebrow):not(.section-lead) { color: var(--muted); max-width: 68ch; }
.facilities-image {
  position: relative; overflow: hidden; min-height: 390px; border-radius: 8px;
  box-shadow: var(--shadow); background: var(--navy); display: flex; align-items: flex-end;
}
.facilities-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.facilities-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,31,.05) 0%, rgba(10,20,31,.9) 100%);
}
.facilities-image div {
  position: relative; z-index: 1; padding: 28px; color: #fff;
}
.facilities-image span {
  display: block; color: var(--gold); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .65rem;
}
.facilities-image strong { display: block; font-size: 1.28rem; line-height: 1.3; max-width: 22ch; }
.facility-capabilities {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 2rem;
}
.facility-capabilities article {
  border: 1px solid #e8edf3; border-radius: 8px; border-top: 4px solid var(--gold);
  background: #fff; padding: 22px; box-shadow: var(--shadow); min-height: 216px;
}
.facility-capabilities span {
  display: inline-block; color: var(--gold-dark); font-weight: 800; margin-bottom: .85rem;
}
.facility-capabilities p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.55; }
.facilities-detail-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; margin-top: 20px;
}
.temperature-panel, .coverage-panel {
  border-radius: 8px; padding: 28px; box-shadow: var(--shadow);
}
.temperature-panel { background: var(--navy); color: #dbe4ee; }
.temperature-panel h3 { color: #fff; }
.temperature-bands {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 1.4rem;
}
.temperature-bands div {
  border: 1px solid rgba(247,208,91,.34); border-radius: 8px; padding: 18px;
  background: rgba(255,255,255,.06);
}
.temperature-bands strong { display: block; color: var(--gold); margin-bottom: .45rem; }
.temperature-bands span { display: block; color: #c3cfdc; font-size: .92rem; line-height: 1.45; }
.coverage-panel { background: #fff; border: 1px solid #e8edf3; }
.coverage-list {
  list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 12px;
}
.coverage-list li {
  display: grid; grid-template-columns: 88px 1fr; gap: 14px; padding-top: 12px;
  border-top: 1px solid #e8edf3;
}
.coverage-list strong { color: var(--navy); }
.coverage-list span { color: var(--muted); line-height: 1.45; }

/* ===== Careers ===== */
.careers-section { background: #fff; }
.careers-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .84fr);
  gap: 46px; align-items: stretch;
}
.careers-copy h2 { max-width: 17ch; }
.careers-copy p:not(.eyebrow):not(.section-lead) { color: var(--muted); max-width: 68ch; }
.career-highlights {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem;
}
.career-highlights span {
  border: 1px solid #e5ebf2; border-radius: 999px; padding: 8px 13px;
  color: var(--navy); background: var(--bg-muted); font-weight: 700; font-size: .9rem;
}
.career-signal {
  border-radius: 8px; padding: 30px; color: #dbe4ee; background:
    linear-gradient(145deg, rgba(10,20,31,.94), rgba(22,39,59,.96)),
    url("assets/globe-network.jpg") center / cover no-repeat;
  border: 1px solid rgba(247,208,91,.34); border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.career-signal h3 { color: #fff; max-width: 18ch; }
.career-signal-label {
  display: inline-block; color: var(--gold); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8rem;
}
.career-signal ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 14px; }
.career-signal li {
  display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.career-signal strong { color: var(--gold); }
.career-signal span { color: #c3cfdc; line-height: 1.45; }
.career-regions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2rem;
}
.career-regions article {
  border: 1px solid #e8edf3; border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 22px; background: var(--bg-muted); min-height: 192px;
}
.career-regions span {
  display: block; color: var(--gold-dark); font-size: .76rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem;
}
.career-regions p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.55; }
.career-apply-grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: 24px; align-items: start; margin-top: 24px;
}
.career-workstreams {
  border-radius: 8px; padding: 28px; background: var(--navy); color: #dbe4ee;
  box-shadow: var(--shadow);
}
.career-workstreams h3 { color: #fff; }
.career-streams { display: grid; gap: 14px; margin-top: 1.3rem; }
.career-streams article {
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.13);
}
.career-streams strong { display: block; color: var(--gold); margin-bottom: .4rem; }
.career-streams p { color: #c3cfdc; margin: 0; font-size: .94rem; line-height: 1.5; }
.career-form-panel {
  border: 1px solid #e8edf3; border-radius: 8px; padding: 30px;
  background: #fff; box-shadow: var(--shadow);
}
.career-form-panel > p { color: var(--muted); margin-bottom: 1.4rem; }
.contact-form.career-form label { color: var(--navy); }
.contact-form.career-form input,
.contact-form.career-form textarea,
.contact-form.career-form select {
  border-color: #dbe3ed; background: #f8fafc; color: var(--ink);
}
.contact-form.career-form input:focus,
.contact-form.career-form textarea:focus,
.contact-form.career-form select:focus {
  background: #fff;
}
.contact-form.career-form input[type="file"] { background: #fff; }
.contact-form.career-form input[type="file"]::file-selector-button {
  margin-right: 12px; border: 0; border-radius: 999px; padding: 9px 13px;
  background: var(--navy); color: #fff; font-weight: 700; cursor: pointer;
}
.file-upload {
  position: relative; display: flex; align-items: center; gap: 14px;
  width: 100%; min-height: 58px; padding: 10px 13px; margin-bottom: 1.1rem;
  border: 1px solid #dbe3ed; border-radius: 8px; background: #fff; overflow: hidden;
}
.file-upload input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0;
  cursor: pointer; margin: 0; padding: 0;
}
.file-upload-button {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  min-height: 38px; padding: 9px 16px; border-radius: 999px;
  background: var(--navy); color: #fff; font-weight: 800; line-height: 1;
}
.file-upload-name {
  min-width: 0; color: var(--ink); line-height: 1.35; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.file-upload:focus-within {
  outline: 2px solid var(--gold); outline-offset: 1px; background: #fff;
}

/* ===== Contact (dark) ===== */
.section-dark { background: var(--navy); color: #d8e0ea; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--gold); }
.section-dark a { color: var(--gold); }
.contact-block { margin-bottom: 1.4rem; }
.contact-block h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .25rem; }
.contact-block p { margin: 0; }
.section-dark .btn-primary { margin-top: 1rem; color: var(--navy); }
.contact-map {
  position: relative; overflow: hidden; min-height: 260px; margin: 1.8rem 0 .6rem;
  border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: #07111c;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.contact-map img, .contact-map iframe {
  width: 100%; height: 100%; min-height: 260px; display: block; border: 0;
}
.contact-map img { object-fit: cover; opacity: .72; }
.map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  gap: .55rem; padding: 22px; color: #dbe4ee;
  background: linear-gradient(180deg, rgba(10,20,31,.04) 0%, rgba(10,20,31,.9) 82%);
}
.map-consent h3 { margin: 0; color: #fff; }
.map-consent p { max-width: 38ch; margin: 0; color: #c3cfdc; font-size: .94rem; line-height: 1.45; }
.map-consent .btn { align-self: flex-start; min-height: 46px; padding: 11px 20px; border: 0; }
.map-consent a { color: var(--gold); font-weight: 700; }
.contact-map.map-loaded { background: #fff; }
.contact-map.map-loaded iframe { min-height: 320px; }

/* ===== Kontaktformular ===== */
.contact-grid { align-items: start; }
.contact-form { display: flex; flex-direction: column; }
.contact-form label {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold); margin: 0 0 .35rem; font-weight: 600;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 14px; margin-bottom: 1.1rem;
  border: 1px solid rgba(255,255,255,.18); border-radius: 8px;
  background: rgba(255,255,255,.06); color: #fff; font: inherit;
}
.contact-form input[type="file"] { padding: 10px 12px; }
.contact-form input[type="file"]::file-selector-button {
  margin-right: 12px; border: 0; border-radius: 999px; padding: 9px 13px;
  background: var(--gold); color: var(--navy); font-weight: 700; cursor: pointer;
}
.contact-form .file-upload input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0;
  cursor: pointer; margin: 0; padding: 0; border: 0; background: transparent;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; background: rgba(255,255,255,.1);
}
.contact-form button { align-self: flex-start; border: 0; }
.hp-field { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }
.form-banner {
  padding: 14px 18px; border-radius: 8px; margin-bottom: 1.2rem; font-weight: 600;
}
.form-banner-ok { background: rgba(46,160,67,.18); border: 1px solid #2ea043; color: #7ee2a8; }
.form-banner-error { background: rgba(248,81,73,.15); border: 1px solid #f85149; color: #ffb4ae; }

/* ===== Footer ===== */
.site-footer { background: #0a141f; color: #9fb0c2; padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-tag { margin: 0; font-size: .9rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer-nav a { color: #9fb0c2; }
.footer-nav a:hover { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 1060px) {
  .scroll-progress { display: none; }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 120; width: 48px; height: 48px;
    border-radius: 50%;
  }
  .nav-toggle.is-open { background: #f6f8fb; }
  .nav-backdrop {
    position: fixed; top: 0; left: 0; right: auto; bottom: auto; z-index: 100;
    width: 100vw; height: 100dvh;
    background: rgba(10,20,31,.45); backdrop-filter: blur(2px);
  }
  .main-nav ul {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; z-index: 110;
    width: min(86vw, 360px); height: 100dvh; max-height: none; overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff;
    border-left: 1px solid #eef1f5; box-shadow: -18px 0 45px rgba(14,27,42,.18);
    padding: 96px 22px 28px;
    clip-path: inset(0 0 0 100%); transition: clip-path .28s ease;
    pointer-events: none;
  }
  .main-nav ul.open { clip-path: inset(0); pointer-events: auto; }
  .main-nav li { width: 100%; text-align: left; }
  .main-nav li a {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 54px; padding: 14px 0; border-top: 1px solid #eef1f5;
    font-size: 1.05rem;
  }
  .main-nav li:first-child a { border-top: 0; }
  .nav-cta {
    justify-content: center !important; border-radius: 999px; margin-top: 12px;
    min-height: 54px;
  }
}
@media (max-width: 900px) {
  .contact-grid, .expertise-hero, .sourcing-hero, .sourcing-detail-grid,
  .documentation-header, .documentation-grid, .facilities-hero, .facilities-detail-grid,
  .careers-hero, .career-apply-grid {
    grid-template-columns: 1fr;
  }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .sourcing-focus { grid-template-columns: repeat(2, 1fr); }
  .career-regions { grid-template-columns: repeat(2, 1fr); }
  .facility-capabilities, .temperature-bands { grid-template-columns: repeat(2, 1fr); }
  .documentation-assurance { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .features, .cards { grid-template-columns: repeat(2, 1fr); }
  .cards .card, .cards .card:nth-child(4), .cards .card:nth-child(5) { grid-column: span 1; }
  .cards .card:nth-child(5) { grid-column: span 2; }
  .contact-image { order: -1; }
}
@media (max-width: 680px) {
  .header-inner { min-height: 66px; }
  .brand img { width: 112px; height: 64px; }
  .hero { padding: 78px 0 58px; }
  .hero::before { background-position: 31% center; }
  .hero h1 {
    font-size: clamp(2rem, 9.4vw, 2.38rem);
    max-width: 9.1em;
    overflow-wrap: normal;
  }
  .hero-sub { font-size: 1.04rem; line-height: 1.7; max-width: 31ch; }
  .hero-actions { flex-direction: column; gap: 12px; margin: 1.7rem 0 2.2rem; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 100%; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; width: 100%; }
  .hero-stats li { min-width: 0; }
  .hero-stats strong { font-size: clamp(1.9rem, 9vw, 2.35rem); }
  .hero-stats span { display: block; font-size: .86rem; line-height: 1.25; overflow-wrap: anywhere; }
  .trust-badges { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-signal { min-height: 300px; }
  .expertise-principles { align-items: flex-start; flex-direction: column; }
  .expertise-principles ul { justify-content: flex-start; }
  .sourcing-focus, .quote-columns, .workflow,
  .facility-capabilities, .temperature-bands { grid-template-columns: 1fr; }
  .facilities-image { min-height: 300px; }
  .quality-controls { grid-template-columns: 1fr; }
  .career-regions { grid-template-columns: 1fr; }
  .career-signal li { grid-template-columns: 1fr; gap: 2px; }
  .career-workstreams, .career-form-panel { padding: 22px; }
  .sourcing-command, .sourcing-panel, .sourcing-focus article, .workflow article { padding: 20px; }
  .temperature-panel, .coverage-panel { padding: 22px; }
  .quality-system, .document-pack { padding: 22px; }
  .contact-map, .contact-map img, .contact-map iframe { min-height: 300px; }
  .map-consent .btn { width: 100%; }
  .document-list li { grid-template-columns: 1fr; gap: 2px; }
  .coverage-list li { grid-template-columns: 1fr; gap: 2px; }
  .workflow article { min-height: 0; }
  .features, .cards { grid-template-columns: 1fr; }
  .cards .card, .cards .card:nth-child(4), .cards .card:nth-child(5) { grid-column: span 1; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* ===== Feinschliff: Scrollspy, Header, Animationen, Hover ===== */
html { scroll-padding-top: 96px; }

.main-nav a:not(.nav-cta) { position: relative; padding-bottom: 4px; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:not(.nav-cta):hover { text-decoration: none; }
.main-nav a:not(.nav-cta):hover::after,
.main-nav a.active:not(.nav-cta)::after { transform: scaleX(1); }
.main-nav a.active:not(.nav-cta) { color: var(--gold-dark); font-weight: 600; }

@media (max-width: 1060px) {
  .main-nav a:not(.nav-cta) { padding-bottom: 14px; }
  .main-nav a:not(.nav-cta)::after {
    position: static; display: none; width: 8px; height: 8px;
    border-radius: 50%; flex: 0 0 8px; transform: none; transition: none;
  }
  .main-nav a.active:not(.nav-cta)::after { display: block; transform: none; }
  .main-nav a.active:not(.nav-cta) { color: var(--navy); font-weight: 700; }
}

.site-header { transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(14, 27, 42, .12);
  background: rgba(255, 255, 255, .97);
}

/* Sanftes Einblenden beim Scrollen */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Hover-Effekte auf Karten und Badges */
.card, .features li, .trust-badge, .sourcing-focus article, .workflow article {
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover, .features li:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(14, 27, 42, .14);
}
.trust-badge:hover, .sourcing-focus article:hover, .workflow article:hover {
  transform: translateY(-4px);
}
.card-img { transition: transform .4s ease; }
.card:hover .card-img { transform: scale(1.05); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(224, 180, 49, .35); }

/* Zurück-nach-oben-Button */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--gold); color: var(--navy); font-size: 1.25rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(14, 27, 42, .25);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  display: flex; align-items: center; justify-content: center;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold-dark); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .features li, .trust-badge, .card-img, .to-top { transition: none; }
}

/* ===== Hero-Scroll-Indikator ===== */
.hero { position: relative; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.55);
  border-radius: 999px; display: flex; justify-content: center;
  padding-top: 8px; transition: border-color .2s ease;
}
.hero-scroll span {
  width: 4px; height: 10px; border-radius: 2px; background: var(--gold);
  animation: hero-scroll-dot 1.8s ease-in-out infinite;
}
.hero-scroll:hover { border-color: var(--gold); text-decoration: none; }
@keyframes hero-scroll-dot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll span { animation: none; }
}
@media (max-width: 680px) {
  .hero-scroll { display: none; }
}
