/* ============================================================
   Design tokens — British Racing Green + Oxford Blue
   ============================================================ */
:root {
  /* Oxford Blue — structural / surface color (dark sections, hero, footer) */
  --color-oxford: #101f38;
  --color-oxford-deep: #060d1c;
  --color-oxford-2: #1c3559;
  --color-oxford-muted: #55647d;
  --color-oxford-pale: #eef1f6;

  /* British Racing Green — brand / interactive accent (headings, links, buttons) */
  --color-brg: #0f3d2e;
  --color-brg-2: #175943;
  --color-brg-bright: #24815b;
  --color-brg-muted: #6c8579;
  --color-brg-pale: #ecf1ed;

  /* Neutrals */
  --color-cream: #faf9f5;
  --color-ink: #1a201c;
  --color-text-muted: #5c665f;
  --color-border: #dee3dd;
  --color-border-on-dark: rgba(255, 255, 255, 0.14);

  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1120px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 17px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-brg);
  margin-top: 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-top: 0; }

a { color: var(--color-brg); text-decoration: none; }
a:hover { color: var(--color-brg-2); }

ul { padding-left: 1.2rem; }

:focus-visible {
  outline: 2px solid var(--color-brg-bright);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-cream);
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 var(--color-brg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lang-switch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 3px;
  border: 1px solid transparent;
  line-height: 1;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease), opacity 0.18s var(--ease);
  opacity: 0.75;
}
.flag-icon { flex-shrink: 0; border-radius: 2px; display: block; }
.lang-switch-btn:hover { background: var(--color-brg-pale); opacity: 1; }
.lang-switch-btn.active {
  background: var(--color-brg-pale);
  border-color: var(--color-border);
  opacity: 1;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-oxford);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--color-oxford); }
.brand-dot { color: var(--color-brg-bright); }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 4px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-brg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:hover { color: var(--color-brg); }

.site-nav a.nav-cta-btn {
  background: var(--color-brg);
  color: #fff !important;
  padding: 9px 28px;
  border-radius: 4px;
  font-size: 0.88rem;
  transition: background-color 0.18s var(--ease);
}
.nav-cta-btn::after { display: none !important; }
.site-nav a.nav-cta-btn:hover { background: var(--color-brg-2); }

.header-cta-mobile { display: none; }

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-label span {
  width: 24px;
  height: 2px;
  background: var(--color-oxford);
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease);
}

.btn-primary {
  background: var(--color-brg);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-brg-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(15, 61, 46, 0.45);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--color-oxford) 0%, var(--color-oxford-deep) 55%, var(--color-brg) 130%);
  color: #fff;
  padding: 108px 0 84px;
}
.hero-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brg-bright);
  margin-bottom: 1rem;
}
.hero h1 {
  color: #fff;
  font-size: 2.75rem;
  max-width: 780px;
}
.hero-sub {
  color: #c7d0dc;
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 2.25rem;
}
.hero .btn-primary {
  background: var(--color-brg-bright);
}
.hero .btn-primary:hover {
  background: #2c9367;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-cta-secondary {
  color: #c7d0dc;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(199, 208, 220, 0.4);
  padding-bottom: 2px;
}
.hero-cta-secondary:hover { color: #fff; border-color: #fff; }

/* ---------- Proof bar ---------- */
.proof-bar {
  background: var(--color-oxford-pale);
  border-bottom: 1px solid var(--color-border);
  padding: 36px 0;
}
.proof-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.proof-bar .proof-bar-grid,
.proof-bar-inline { grid-template-columns: repeat(3, 1fr); }
.proof-stat-value {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--color-oxford);
  line-height: 1.1;
}
.proof-stat-label {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  .proof-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .proof-stat-value { font-size: 1.5rem; }
}

/* ---------- Client challenge cards ---------- */
.challenge-card {
  position: relative;
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  color: inherit;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -18px rgba(6, 13, 28, 0.3);
  border-color: var(--color-brg-muted);
}
.challenge-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease);
}
.challenge-card:hover .challenge-card-image { transform: scale(1.06); }
.challenge-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.87);
}
.challenge-card-costs .challenge-card-image { background-image: url("/img/challenge-reduce-costs.png"); }
.challenge-card-negotiate .challenge-card-image { background-image: url("/img/challenge-negotiate-vendors.png"); }
.challenge-card-sourcing .challenge-card-image { background-image: url("/img/challenge-sourcing.png"); }
.challenge-card-build .challenge-card-image { background-image: url("/img/challenge-build-procurement.png"); }
.challenge-card-content {
  display: block;
  position: relative;
  z-index: 2;
  padding: 28px 26px;
}
.challenge-card h3 { color: var(--color-brg); margin-bottom: 10px; }
.challenge-card-content > p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.challenge-keywords {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.challenge-keywords li {
  font-size: 0.78rem;
  color: var(--color-oxford-muted);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 3px 9px;
}
.challenge-cta { font-weight: 600; color: var(--color-brg); font-size: 0.92rem; }
.challenge-card:hover .challenge-cta { color: var(--color-brg-2); }

/* ---------- Vendor tile keyword line ---------- */
.vendor-tile-keywords {
  margin: 6px 0 0;
  font-size: 0.75rem;
  color: #9fb0c4;
  line-height: 1.4;
}

/* ---------- Impact cards ---------- */
.impact-card {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 26px;
  background: #fff;
}
.impact-card h3 { color: var(--color-brg); margin-bottom: 12px; }
.impact-line {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0 0 8px;
}
.impact-line strong {
  color: var(--color-oxford);
  font-weight: 600;
  margin-right: 4px;
}
.impact-figure {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.impact-value {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--color-brg);
  line-height: 1.1;
}
.impact-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ---------- Technology categories (compact) ---------- */
.tech-categories-list {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-brg);
  margin: 0 0 14px;
}
.tech-categories .section-intro { margin-bottom: 0; }

/* ---------- Why section ---------- */
.why-grid { gap: 32px; }
.why-point h4 {
  font-size: 1rem;
  color: var(--color-brg);
  margin: 0 0 8px;
  padding-top: 14px;
  border-top: 2px solid var(--color-brg);
}
.why-point p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* ---------- About grid (homepage) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}
.about-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-brg-muted);
  margin: 0 0 8px;
}
.about-content h2 { margin-bottom: 6px; }
.about-subheadline {
  color: var(--color-brg);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 18px;
}
.about-content > p:not(.about-subheadline):not(.about-eyebrow) {
  color: var(--color-text-muted);
  max-width: 640px;
}
.about-facts {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.about-facts li {
  font-size: 0.85rem;
  color: var(--color-oxford);
  font-weight: 600;
}
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo img { max-width: 200px; margin: 0 auto; }
  .about-facts { justify-content: center; }
}

.europe-map-compact { max-width: 380px; }

/* ---------- In-page credential bar / track stats (Über mich) ---------- */
.container-inset { margin: 1.75rem 0 2.25rem; }
.proof-bar-inline {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}
.track-stats { gap: 20px; margin: 1.5rem 0 2.25rem; }
.impact-figure-standalone { text-align: center; }
.impact-figure-standalone .impact-value { font-size: 1.7rem; }
.impact-figure-standalone .impact-label { font-size: 0.8rem; }
@media (max-width: 640px) {
  .track-stats { grid-template-columns: repeat(2, 1fr); }
}

.trustline {
  background: var(--color-oxford-pale);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.trustline p {
  margin: 0;
  color: var(--color-oxford-muted);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-oxford) 0%, var(--color-oxford-deep) 100%);
  padding: 68px 0 48px;
}
.page-hero h1 { color: #fff; }
.page-lead {
  color: #c7d0dc;
  font-size: 1.1rem;
  max-width: 700px;
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-alt { background: var(--color-brg-pale); }
.section-dark {
  background: var(--color-oxford-deep);
  color: #dfe4ea;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-intro { color: #aab4c4; }
.section-dark a { color: var(--color-brg-bright); }

.section-intro {
  color: var(--color-text-muted);
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-link {
  margin-top: 1.5rem;
  font-weight: 600;
}
.section-link a { transition: color 0.18s var(--ease); }

/* ---------- Grids & interactive cards ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 26px 24px 24px;
  overflow: hidden;
  color: inherit;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-brg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px -18px rgba(6, 13, 28, 0.35);
  border-color: var(--color-brg-muted);
}
.card:hover::before { transform: scaleX(1); }

.card h3 { color: var(--color-brg); }
.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Icons ---------- */
.icon {
  width: 30px;
  height: 30px;
  color: var(--color-brg);
  flex-shrink: 0;
}
.card .icon { margin-bottom: 14px; }
.section-dark .icon { color: var(--color-brg-bright); }

.heading-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.heading-with-icon .icon {
  width: 28px;
  height: 28px;
  background: var(--color-brg-pale);
  border-radius: 50%;
  padding: 7px;
  box-sizing: content-box;
}

.card-arrow {
  display: inline-block;
  margin-top: 14px;
  color: var(--color-brg);
  font-weight: 600;
  opacity: 0.55;
  transform: translateX(0);
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
.card:hover .card-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.grid-compact .tile {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 18px 20px;
  background: #fff;
  color: inherit;
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.grid-compact .tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--color-brg);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.24s var(--ease);
}
.grid-compact .tile:hover {
  transform: translateX(3px);
  box-shadow: 0 10px 22px -14px rgba(6, 13, 28, 0.3);
  border-color: var(--color-brg-muted);
}
.grid-compact .tile:hover::before { transform: scaleY(1); }
.grid-compact .tile .icon { width: 24px; height: 24px; }
.grid-compact .tile h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--color-brg);
}

.vendor-tile {
  display: block;
  position: relative;
  border: 1px solid var(--color-border-on-dark);
  border-radius: 4px;
  padding: 30px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), background-color 0.22s var(--ease);
}
.vendor-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-brg-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--ease);
}
.vendor-tile:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-brg-bright);
  box-shadow: 0 18px 32px -18px rgba(0, 0, 0, 0.5);
}
.vendor-tile:hover::before { transform: scaleX(1); }
.vendor-tile h3 {
  margin: 0;
  font-size: 1.1rem;
}

.about-teaser p {
  max-width: 760px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.profile-photo {
  float: right;
  width: 250px;
  height: auto;
  margin: 0 0 16px 28px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}
@media (max-width: 640px) {
  .profile-photo {
    float: none;
    display: block;
    margin: 0 auto 24px;
    width: 300px;
  }
}

/* ---------- Info tiles (Kompetenzen page: content always visible, hover = animation) ---------- */
.tile-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.tile-detail:hover {
  transform: translateY(-5px);
  border-color: var(--color-brg);
  box-shadow: 0 16px 28px -16px rgba(6, 13, 28, 0.32);
}
.tile-detail-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-brg-pale);
}
.tile-detail-image::before {
  content: "";
  position: absolute;
  inset: -3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease);
}
.tile-detail:hover .tile-detail-image::before { transform: scale(1.08); }
.tile-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.3) 18%,
    rgba(255, 255, 255, 0.78) 32%,
    rgba(255, 255, 255, 0.93) 46%,
    rgba(255, 255, 255, 0.96) 100%
  );
}
#software .tile-detail-image::before { background-image: url("/img/tile-software.png"); }
#cloud .tile-detail-image::before { background-image: url("/img/tile-cloud.png"); }
#infrastructure .tile-detail-image::before { background-image: url("/img/tile-infrastructure.png"); }
#professional-services .tile-detail-image::before { background-image: url("/img/tile-professional-services.png"); }
#managed-services .tile-detail-image::before { background-image: url("/img/tile-managed-services.png"); }
#hardware .tile-detail-image::before { background-image: url("/img/tile-hardware.png"); }
.tile-detail-content {
  position: relative;
  z-index: 1;
  padding: 18px 22px 22px;
}
.tile-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(6, 13, 28, 0.16);
  margin-bottom: 12px;
}
.tile-icon-badge .icon { width: 19px; height: 19px; color: var(--color-brg); margin-bottom: 0; }
.tile-detail h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-brg);
}
.tile-detail-body .vendor-label {
  font-size: 0.72rem !important;
  color: var(--color-oxford-muted) !important;
  font-weight: 700 !important;
}
.tile-detail-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
}
.tile-detail-body p:last-child { margin-bottom: 0; }
.tile-detail-body strong { color: var(--color-brg); }

.section-dark .tile-detail {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-border-on-dark);
}
.section-dark .tile-detail::before { background: var(--color-brg-bright); }
.section-dark .tile-detail:hover {
  border-color: var(--color-brg-bright);
  background: rgba(255, 255, 255, 0.06);
}
.section-dark .tile-detail h3 { color: #fff; }
.section-dark .tile-detail-body p { color: #aab4c4; }
.section-dark .tile-detail-body strong { color: var(--color-brg-bright); }

.vendor-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brg) !important;
  margin: 14px 0 6px !important;
}
.vendor-label:first-child { margin-top: 0 !important; }
.section-dark .vendor-label { color: var(--color-brg-bright) !important; }
.vendor-support-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
}
.vendor-support-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.vendor-support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brg);
}
.section-dark .vendor-support-list li { color: #aab4c4; }
.section-dark .vendor-support-list li::before { background: var(--color-brg-bright); }

/* ---------- Vendor master-detail (Kompetenzen: tiles left, content right) ---------- */
.vendor-master-detail { margin-top: 8px; }
.vendor-tab-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.vendor-master-detail-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}
.vendor-tab-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vendor-tab-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--color-border-on-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.vendor-tab-tile:hover { border-color: var(--color-brg-bright); background: rgba(255, 255, 255, 0.06); }
.vendor-tab-arrow {
  color: var(--color-brg-bright);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.vendor-tab-tile:hover .vendor-tab-arrow { opacity: 1; transform: translateX(0); }
.vendor-tab-panels { position: relative; }
.vendor-tab-panel {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-on-dark);
  border-radius: 8px;
  padding: 28px 30px;
}
.vendor-tab-panel h3 { margin: 0 0 4px; color: #fff; }

.vendor-tab-input:nth-of-type(1):checked ~ .vendor-master-detail-inner .vendor-tab-tile:nth-child(1),
.vendor-tab-input:nth-of-type(2):checked ~ .vendor-master-detail-inner .vendor-tab-tile:nth-child(2),
.vendor-tab-input:nth-of-type(3):checked ~ .vendor-master-detail-inner .vendor-tab-tile:nth-child(3),
.vendor-tab-input:nth-of-type(4):checked ~ .vendor-master-detail-inner .vendor-tab-tile:nth-child(4) {
  background: var(--color-brg-bright);
  border-color: var(--color-brg-bright);
}
.vendor-tab-input:nth-of-type(1):checked ~ .vendor-master-detail-inner .vendor-tab-tile:nth-child(1) .vendor-tab-arrow,
.vendor-tab-input:nth-of-type(2):checked ~ .vendor-master-detail-inner .vendor-tab-tile:nth-child(2) .vendor-tab-arrow,
.vendor-tab-input:nth-of-type(3):checked ~ .vendor-master-detail-inner .vendor-tab-tile:nth-child(3) .vendor-tab-arrow,
.vendor-tab-input:nth-of-type(4):checked ~ .vendor-master-detail-inner .vendor-tab-tile:nth-child(4) .vendor-tab-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
}
.vendor-tab-input:nth-of-type(1):checked ~ .vendor-master-detail-inner .vendor-tab-panel:nth-child(1),
.vendor-tab-input:nth-of-type(2):checked ~ .vendor-master-detail-inner .vendor-tab-panel:nth-child(2),
.vendor-tab-input:nth-of-type(3):checked ~ .vendor-master-detail-inner .vendor-tab-panel:nth-child(3),
.vendor-tab-input:nth-of-type(4):checked ~ .vendor-master-detail-inner .vendor-tab-panel:nth-child(4) {
  display: block;
}
@media (max-width: 760px) {
  .vendor-master-detail-inner { grid-template-columns: 1fr; }
}

.branch-banner {
  position: relative;
  height: 440px;
  border-radius: 8px;
  margin: 0.25rem 0 1.75rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.branch-banner-finance {
  background-image:
    linear-gradient(150deg, rgba(6, 13, 28, 0.72) 0%, rgba(6, 13, 28, 0.32) 32%, rgba(6, 13, 28, 0) 58%),
    linear-gradient(120deg, rgba(6, 13, 28, 0.38), rgba(16, 31, 56, 0.05)),
    url("/img/branchen-finance.png"),
    linear-gradient(135deg, var(--color-oxford-deep), var(--color-oxford-2));
}
.branch-banner-pharma {
  background-image:
    linear-gradient(150deg, rgba(6, 20, 15, 0.72) 0%, rgba(6, 20, 15, 0.32) 32%, rgba(6, 20, 15, 0) 58%),
    linear-gradient(120deg, rgba(7, 26, 20, 0.3), rgba(15, 61, 46, 0.04)),
    url("/img/branchen-pharma.png"),
    linear-gradient(135deg, var(--color-brg), var(--color-brg-2));
}
.branch-banner .branch-banner-title {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  z-index: 1;
  margin: 0;
  padding-top: 0;
  border-top: none;
  max-width: 22ch;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
@media (max-width: 640px) {
  .branch-banner { height: 240px; }
  .branch-banner .branch-banner-title { top: 20px; left: 20px; right: 20px; font-size: 1.4rem; }
}

.branch-block { margin: 1.25rem 0 2rem; }
.vendor-support-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vendor-support-list-inline li {
  padding-left: 0;
  margin-bottom: 0;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--color-oxford-muted);
}
.vendor-support-list-inline li::before { display: none; }

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-oxford-deep), var(--color-brg) 160%);
  color: #fff;
  text-align: center;
}
.cta-inner { max-width: 700px; }
.cta-section h2 { color: #fff; }
.cta-section p { color: #c7d0dc; margin-bottom: 2rem; }
.cta-section .btn-primary { background: var(--color-brg-bright); }
.cta-section .btn-primary:hover { background: #2c9367; }

/* ---------- Diagrams ---------- */
.diagram-wrap {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 28px 20px 20px;
  margin: 1.75rem 0 2.25rem;
}
/* Inside a photo-backed leistung-band, a plain white bordered card reads as
   an unrelated block dropped on the photo. Drop the border/shadow and tint
   the panel with the section's own overlay color instead of neutral white,
   so it reads as a deepened patch of the same background, not a separate
   card. */
.leistung-band .diagram-wrap {
  border: none;
  box-shadow: none;
}
.leistung-band-oxford .diagram-wrap { background: rgba(238, 241, 246, 0.96); }
.leistung-band-brg .diagram-wrap { background: rgba(236, 241, 237, 0.96); }
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .leistung-band-oxford .diagram-wrap {
    background: rgba(238, 241, 246, 0.9);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  .leistung-band-brg .diagram-wrap {
    background: rgba(236, 241, 237, 0.9);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}
.diagram-wrap .diagram {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Waterfall / savings-bridge: expand-and-explain interaction ---------- */
.wf-canvas {
  position: relative;
}
.wf-bar {
  pointer-events: none;
  transition: x 0.4s var(--ease), y 0.4s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease),
    opacity 0.3s var(--ease);
}
.wf-bar.wf-selected {
  fill: var(--color-brg-bright);
}
.wf-hit {
  cursor: pointer;
  outline: none;
}
.wf-baseline,
.wf-connector,
.wf-value-label,
.wf-axis-label {
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.wf-chart.wf-active .wf-bar {
  opacity: 0.12;
}
.wf-chart.wf-active .wf-bar.wf-selected {
  opacity: 1;
}
.wf-chart.wf-active .wf-baseline,
.wf-chart.wf-active .wf-connector,
.wf-chart.wf-active .wf-value-label {
  opacity: 0.08;
}
.wf-chart.wf-active .wf-axis-label {
  opacity: 0.5;
}
.wf-active-label {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s var(--ease);
}
.wf-active-label.visible {
  transition: opacity 0.25s var(--ease) 0.15s;
  opacity: 1;
}
.wf-panel-set {
  position: absolute;
  top: 0;
  bottom: 33.3%;
  left: 40.28%;
  right: 5.56%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease) 0.1s;
}
.wf-chart.wf-active .wf-panel-set {
  opacity: 1;
}
.wf-panel {
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
  border-left: 1px solid var(--color-border);
  box-shadow: -10px 0 24px -14px rgba(6, 13, 28, 0.3);
  padding: 16px 20px;
}
.wf-panel.active {
  display: block;
}
.wf-panel h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--color-brg);
}
.wf-panel p {
  margin: 0 0 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-ink);
}
.wf-panel .wf-examples-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brg-muted);
  margin: 0 0 5px;
}
.wf-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}
.wf-panel li {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin-bottom: 5px;
}
.diagram-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 14px 0 0;
}

.europe-section { text-align: center; }
.europe-map {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
}
.europe-section .diagram-caption { max-width: 480px; margin: 18px auto 0; }
.map-attribution {
  font-size: 0.72rem;
  color: #9aa6b8;
  text-align: center;
  margin: 6px auto 0;
}

/* ---------- Step flow (process diagrams: RFX Execution, So arbeite ich) ---------- */
.step-flow {
  display: grid;
  gap: 22px 18px;
  margin: 8px 0;
}
.step-flow-4 { grid-template-columns: repeat(4, 1fr); }
.step-flow-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.step-flow-marker {
  position: relative;
  display: flex;
  justify-content: center;
  height: 34px;
  margin-bottom: 12px;
}
.step-flow-marker::before,
.step-flow-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1.5px;
  background: var(--color-brg-muted);
  transform: translateY(-50%);
}
.step-flow-marker::before { left: 0; right: 50%; margin-right: 19px; }
.step-flow-marker::after { left: 50%; right: 0; margin-left: 19px; }
.step-flow-item:first-child .step-flow-marker::before { display: none; }
.step-flow-item:last-child .step-flow-marker::after { display: none; }
.step-flow-number {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-brg);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(6, 13, 28, 0.25);
}
.step-flow-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 18px 15px 20px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.step-flow-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(6, 13, 28, 0.3);
  border-color: var(--color-brg-muted);
}
.step-flow-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-brg-pale);
  margin: 0 auto 12px;
}
.step-flow-icon-badge .icon { width: 20px; height: 20px; color: var(--color-brg); }
.step-flow-card h4 {
  margin: 0 0 8px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--color-brg);
  text-align: center;
  line-height: 1.3;
}
.step-flow-card p {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: left;
}

@media (max-width: 860px) {
  .step-flow-4 { grid-template-columns: repeat(2, 1fr); }
  .step-flow-marker::before, .step-flow-marker::after { display: none; }
}
@media (max-width: 520px) {
  .step-flow-4 { grid-template-columns: 1fr; }
}

/* ---------- Timeline (So arbeite ich) ---------- */
.timeline {
  max-width: 640px;
  margin: 12px auto 0;
}
.timeline-step {
  display: flex;
  gap: 22px;
  padding-bottom: 34px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-marker {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.timeline-marker::after {
  content: "";
  position: absolute;
  top: 46px;
  bottom: -34px;
  left: 50%;
  width: 1.5px;
  background: var(--color-border);
  transform: translateX(-50%);
}
.timeline-step:last-child .timeline-marker::after { display: none; }
.timeline-icon-badge {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-brg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px -2px rgba(6, 13, 28, 0.35);
}
.timeline-icon-badge .icon { width: 22px; height: 22px; color: #fff; }
.timeline-content { flex: 1; padding-top: 6px; }
.timeline-step-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-brg-muted);
}
.timeline-content h4 {
  margin: 3px 0 8px;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-brg);
}
.timeline-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 52ch;
}
@media (max-width: 560px) {
  .timeline-step { gap: 16px; padding-bottom: 28px; }
  .timeline-icon-badge { width: 40px; height: 40px; }
  .timeline-icon-badge .icon { width: 19px; height: 19px; }
  .timeline-marker::after { top: 40px; bottom: -28px; }
}

/* ---------- Prose (markdown content pages) ---------- */
.page-body { padding: 58px 0 84px; }

/* ---------- Orientation cards (Leistungen page) ---------- */
.orientation-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: -4px 0 44px;
}
.orientation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 184px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: #fff;
  color: inherit;
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.orientation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -18px rgba(6, 13, 28, 0.3);
  border-color: var(--color-brg-muted);
}
.orientation-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-brg-pale);
}
.orientation-card-image::before {
  content: "";
  position: absolute;
  inset: -3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease);
}
.orientation-card:hover .orientation-card-image::before { transform: scale(1.08); }
.orientation-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.9) 40%,
    rgba(255, 255, 255, 0.75) 60%,
    rgba(255, 255, 255, 0.55) 81%,
    rgba(255, 255, 255, 0.25) 100%
  );
}
.orientation-card-costs .orientation-card-image::before { background-image: url("/img/card-reduce-it-costs.png"); }
.orientation-card-negotiate .orientation-card-image::before { background-image: url("/img/card-negotiate-vendors.png"); }
.orientation-card-sourcing .orientation-card-image::before { background-image: url("/img/card-sourcing.png"); }
.orientation-card-build .orientation-card-image::before { background-image: url("/img/card-build-procurement.png"); }
.orientation-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
}
.orientation-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(6, 13, 28, 0.16);
  margin-bottom: 14px;
  transition: background-color 0.22s var(--ease);
}
.orientation-card-icon .icon { width: 19px; height: 19px; color: var(--color-brg); }
.orientation-card:hover .orientation-card-icon { background: var(--color-brg); }
.orientation-card:hover .orientation-card-icon .icon { color: #fff; }
.orientation-card h4 {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-brg);
  line-height: 1.3;
}
.orientation-card p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}
@media (max-width: 860px) {
  .orientation-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .orientation-cards { grid-template-columns: 1fr; margin-top: 4px; }
}

.diagram-scroll { overflow-x: auto; }
@media (max-width: 640px) {
  .diagram-scroll .diagram { min-width: 720px; }
  .diagram-scroll .wf-canvas { min-width: 720px; }
}
.prose h2 {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.leistung-band {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px 0;
  overflow: hidden;
  color: inherit;
}
.leistung-band-first { margin-top: 2.6rem; }
.leistung-band-last { margin-bottom: 2.6rem; }
.leistung-band-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.leistung-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.87);
}
.leistung-band-oxford .leistung-band-overlay { background: rgba(238, 241, 246, 0.87); }
.leistung-band-brg .leistung-band-overlay { background: rgba(236, 241, 237, 0.87); }
#procurement-strategy .leistung-band-image { background-image: url("/img/leistung-strategy.png"); }
#it-procurement-optimization .leistung-band-image { background-image: url("/img/leistung-optimization.png"); }
#rfx-execution .leistung-band-image { background-image: url("/img/leistung-rfx.png"); }
#procurement-controlling .leistung-band-image { background-image: url("/img/leistung-controlling.png"); }
#it-cost-management .leistung-band-image { background-image: url("/img/leistung-cost-management.png"); }
#cost-out-programmes .leistung-band-image { background-image: url("/img/leistung-cost-out.png"); }
#opportunity-analysis .leistung-band-image { background-image: url("/img/leistung-opportunity.png"); }
.band-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  z-index: 2;
}
.leistung-band .band-inner h2 { margin-top: 0; padding-top: 0; border-top: none; }
.prose h2.no-top-rule { margin-top: 1rem; padding-top: 0; border-top: none; }
@media (max-width: 640px) {
  .leistung-band { padding: 48px 0; }
}
.prose h3 { margin-top: 2.1rem; color: var(--color-oxford); font-family: var(--font-sans); font-weight: 600; font-size: 1.1rem; }
.prose h4 { margin-top: 1.25rem; color: var(--color-ink); }
.prose p, .prose li { color: var(--color-ink); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.prose th, .prose td {
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.95rem;
}
.prose th { background: var(--color-brg-pale); color: var(--color-brg); }
.prose strong { color: var(--color-brg); }
.prose hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}

.regulatory-note {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-brg-muted) !important;
  background: var(--color-brg-pale);
  border-left: 3px solid var(--color-brg);
  padding: 6px 12px;
  margin: 0 0 1.4rem;
}


/* ---------- Contact form ---------- */
.contact-form {
  max-width: 560px;
  margin-top: 2rem;
  display: grid;
  gap: 16px;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 6px;
  color: var(--color-brg);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-brg-muted);
  box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  justify-self: start;
}
.privacy-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.contact-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-oxford-deep);
  color: #aab4c4;
  padding: 34px 0 20px;
  font-size: 0.85rem;
  border-top: 3px solid var(--color-brg);
}
.footer-inner p { margin: 4px 0; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p { margin: 3px 0; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.05rem; color: #fff; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.footer-nav a { color: #aab4c4; }
.footer-nav a:hover { color: var(--color-brg-bright); }
.footer-legal {
  padding-top: 14px;
  font-size: 0.8rem;
  color: #6d7890;
}
.footer-legal a { color: #8fa0b8; }
.footer-legal a:hover { color: var(--color-brg-bright); }
.footer-meta { color: #6d7890; }
.footer-meta a { color: #8fa0b8; }
.footer-meta a:hover { color: var(--color-brg-bright); }
.footer-sep { margin: 0 6px; color: #4a5468; }
.footer-trademark { margin-top: 10px; }
.footer-trademark p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #4a5468;
  max-width: 780px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  h1 { font-size: 1.9rem; }
  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 48px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  #vendoren .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .nav-toggle-label { display: flex; }
  .header-right { gap: 10px; }
  .header-cta-mobile {
    display: inline-block;
    background: var(--color-brg);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 4px;
  }
  .header-cta-mobile:hover { background: var(--color-brg-2); color: #fff; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .site-nav li { border-top: 1px solid var(--color-border); }
  .site-nav li:first-child { border-top: none; }
  .site-nav a { display: block; padding: 12px 0; }
  .site-nav a::after { display: none; }
  .site-nav a.nav-cta-btn {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 12px 0;
  }
  .nav-toggle:checked ~ .site-nav { display: block; }
}
