/* ================================================================
   staffect/src/style.css
   CI-Tokens und Komponenten für staffect-personal.de
   Trust Industrial — Navy / Sky / Teal
   ================================================================ */

/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
  --hs-navy:        #1C3F60;
  --hs-sky:         #4B88A2;
  --hs-teal:        #0B7285;
  --hs-bg:          #F8F9FB;
  --hs-surface:     #FFFFFF;
  --hs-text:        #1C3F60;
  --hs-text-muted:  #667085;
  --hs-border:      #E4E7EC;
  --hs-anchor:      #13283D;

  /* Shared-interface aliases */
  --brand-primary:   var(--hs-navy);
  --brand-accent:    var(--hs-teal);
  --brand-bg:        var(--hs-bg);
  --brand-surface:   var(--hs-surface);
  --brand-text:      var(--hs-text);
  --brand-text-muted: var(--hs-text-muted);
  --brand-border:    var(--hs-border);
}

@media (prefers-color-scheme: dark) {
  :root {
    --hs-bg:          #0d1117;
    --hs-surface:     #161b22;
    --hs-text:        #E6EDF3;
    --hs-text-muted:  #8B949E;
    --hs-border:      #30363d;
    --hs-navy:        #4B88A2;
    --brand-surface:  #161b22;
    --brand-bg:       #0d1117;
    --brand-text:     #E6EDF3;
    --brand-text-muted: #8B949E;
    --brand-border:   #30363d;
  }
}

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--hs-bg);
  color: var(--hs-text);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ── Utilities ────────────────────────────────────────────── */
.text-hs        { color: var(--hs-text); }
.text-muted     { color: var(--hs-text-muted); }
.text-navy      { color: var(--hs-navy); }
.text-teal      { color: var(--hs-teal); }
.bg-surface     { background-color: var(--hs-surface); }
.bg-hs          { background-color: var(--hs-bg); }
.border-hs      { border-color: var(--hs-border); }

/* ── Navigation ───────────────────────────────────────────── */
.nav-glass {
  background-color: color-mix(in srgb, var(--hs-surface) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Eyebrow badge ─────────────────────────────────────────── */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--hs-border);
  background-color: var(--hs-surface);
  color: var(--hs-navy);
}
.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--hs-teal);
  flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-bg {
  background: var(--hs-bg);
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hs-navy) 0%, var(--hs-sky) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-blob-1 {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,136,162,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-2 {
  position: absolute;
  bottom: -40px;
  left: 60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,63,96,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}

@media (prefers-color-scheme: dark) {
  .hero-bg { background: var(--hs-bg, #0d1117); }
  .hero-bg::before { opacity: 0.6; }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
      rgba(13,17,23,0.97) 0%,
      rgba(28,63,96,0.50) 60%,
      rgba(75,136,162,0.15) 100%);
    z-index: 0;
    pointer-events: none;
  }
  .hero-blob-1 {
    background: radial-gradient(circle, rgba(28,63,96,0.50) 0%, transparent 65%);
    width: 500px; height: 500px; top: -100px; right: -100px;
  }
  .hero-blob-2 { background: radial-gradient(circle, rgba(75,136,162,0.15) 0%, transparent 65%); }

}

.accent {
  background: linear-gradient(135deg, var(--hs-navy), var(--hs-sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.h1-accent {
  background: linear-gradient(135deg, var(--hs-navy), var(--hs-sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
@media (prefers-color-scheme: dark) {
  .h1-accent {
    background: linear-gradient(135deg, #4B88A2, #3dd5c8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* ── Hero logo mark ──────────────────────────────────────── */
.hero-logo-mark {
  margin-bottom: 20px;
  opacity: 0.9;
}
@media (prefers-color-scheme: dark) {
  .hero-logo-mark { opacity: 0.85; }
}

/* ── Section label ────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-teal);
}
.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: var(--hs-teal);
}

/* ── Stat tiles ───────────────────────────────────────────── */
.stat-tile {
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--hs-border);
  background-color: var(--hs-surface);
}
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hs-teal);
}
.stat-label {
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  color: var(--hs-text-muted);
}

/* ── Service cards ─────────────────────────────────────────── */
.service-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--hs-border);
  background-color: var(--hs-surface);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--hs-teal);
  box-shadow: 0 4px 16px -4px rgba(11, 114, 133, 0.15);
  transform: translateY(-2px);
}
.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--hs-teal) 12%, transparent);
  color: var(--hs-teal);
  flex-shrink: 0;
}

/* ── USP list ─────────────────────────────────────────────── */
.usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--hs-text-muted);
  line-height: 1.5;
}
.usp-list li::before {
  content: '';
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background-color: var(--hs-teal);
  flex-shrink: 0;
  margin-top: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ── Location cards ───────────────────────────────────────── */
.location-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--hs-border);
  background-color: var(--hs-surface);
}
.location-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--hs-teal) 10%, transparent);
  color: var(--hs-teal);
  border: 1px solid color-mix(in srgb, var(--hs-teal) 20%, transparent);
  margin-bottom: 0.75rem;
}

/* ── Visual accent card ───────────────────────────────────── */
.visual-card {
  border-radius: 1.25rem;
  padding: 2rem;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--hs-navy) 8%, var(--hs-surface)),
    color-mix(in srgb, var(--hs-sky) 6%, var(--hs-surface)));
  border: 1px solid var(--hs-border);
}

/* ── Nav CTA button ───────────────────────────────────────── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background-color: var(--hs-teal);
  text-decoration: none;
  transition: filter 0.2s;
  min-height: 44px;
}
.nav-cta:hover { filter: brightness(1.1); }

/* ── Tochter badge ────────────────────────────────────────── */
.tochter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hs-teal);
  background: color-mix(in srgb, var(--hs-teal) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--hs-teal) 20%, transparent);
  border-radius: 9999px;
  padding: 0.2rem 0.6rem;
}

/* ── Footer anchor ────────────────────────────────────────── */
.footer-anchor {
  background-color: var(--hs-anchor);
}

/* ── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 640px) {
  .stat-tile { padding: 1rem 1.125rem; }
  .service-card { padding: 1.125rem; }
  .service-icon { width: 2rem; height: 2rem; margin-bottom: 0.75rem; }
}

/* ── Login Pill ───────────────────────────────────────────── */
.nav-login-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--hs-teal);
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  border: 0.5px solid var(--hs-teal);
  min-height: 36px;
}
.nav-login-pill:hover {
  background: var(--hs-navy);
  border-color: var(--hs-navy);
}

/* ── Active nav link ──────────────────────────────────────── */
.nav-links a { position: relative; }
.nav-links a.active { color: var(--hs-navy); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

/* ── Page hero (subpages) ─────────────────────────────────── */
.page-hero {
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 0.5px solid var(--hs-border);
}
.page-hero .eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--hs-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero .eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--hs-teal);
  flex-shrink: 0;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--hs-text);
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--hs-text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

/* ── CTA strip ────────────────────────────────────────────── */
.cta-strip {
  background: color-mix(in srgb, var(--hs-navy) 4%, var(--hs-bg));
  border-top: 0.5px solid var(--hs-border);
  padding: 56px 24px;
}
.cta-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cta-card {
  background: var(--hs-surface);
  border: 0.5px solid var(--hs-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: var(--hs-text);
}
.cta-card:hover {
  border-color: var(--hs-teal);
  box-shadow: 0 4px 16px -4px rgba(11, 114, 133, 0.15);
  transform: translateY(-2px);
}
.cta-card [data-lucide] { color: var(--hs-teal); }
.cta-card-title { font-size: 15px; font-weight: 600; margin-top: 12px; margin-bottom: 6px; color: var(--hs-text); }
.cta-card-sub { font-size: 13px; color: var(--hs-text-muted); }
@media (max-width: 768px) { .cta-strip-grid { grid-template-columns: 1fr; } }

/* ── Team ─────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.team-card {
  background: var(--hs-surface);
  border: 0.5px solid var(--hs-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.team-card-placeholder { opacity: 0.65; }
.team-photo {
  margin-bottom: 20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* Team-Foto: freigestellte PNGs auf STAFFECT-CI-Gradient */
.team-photo {
  /* Light Mode = dunkler Hintergrund (Navy/Teal) */
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--hs-navy) 90%, #0A1520),
    color-mix(in srgb, var(--hs-teal) 40%, #1C3F60)
  );
  border-radius: 50%;
  overflow: hidden;
}

.team-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: normal;
}

@media (prefers-color-scheme: dark) {
  .team-photo {
    /* Dark Mode = heller Hintergrund (helles Blau-Weiß) */
    background: linear-gradient(
      145deg,
      #F0F5FA,
      #E8F0F7
    );
  }
}
.team-photo-placeholder {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--hs-bg); border: 2px dashed var(--hs-border);
  display: flex; align-items: center; justify-content: center; color: var(--hs-text-muted);
}
.team-info h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; color: var(--hs-text); }
.team-role { font-size: 11px; font-weight: 700; color: var(--hs-teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.team-bio { font-size: 14px; line-height: 1.7; color: var(--hs-text-muted); margin-bottom: 20px; flex: 1; }
.team-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.team-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px;
  padding: 5px 12px; border-radius: 8px; border: 0.5px solid var(--hs-border);
  color: var(--hs-text-muted); text-decoration: none; transition: all 0.15s;
}
.team-link:hover { border-color: var(--hs-teal); color: var(--hs-teal); }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

/* ── Standorte ────────────────────────────────────────────── */
.standorte-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.standort-card { background: var(--hs-surface); border: 0.5px solid var(--hs-border); border-radius: 16px; padding: 32px; }
.standort-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--hs-teal); background: color-mix(in srgb, var(--hs-teal) 12%, transparent);
  border-radius: 100px; padding: 4px 10px; margin-bottom: 16px;
}
.standort-card h3 { font-size: 20px; font-weight: 700; color: var(--hs-text); margin-bottom: 16px; }
.standort-addr { font-size: 15px; font-style: normal; line-height: 1.7; color: var(--hs-text); margin-bottom: 20px; }
.standort-contact {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 16px; border-top: 0.5px solid var(--hs-border); margin-bottom: 16px;
}
.standort-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--hs-teal); text-decoration: none; transition: opacity 0.15s; }
.standort-contact a:hover { opacity: 0.75; }
.standort-map-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--hs-text-muted); text-decoration: none; transition: color 0.15s; padding-top: 8px; }
.standort-map-link:hover { color: var(--hs-teal); }
@media (max-width: 768px) { .standorte-grid { grid-template-columns: 1fr; } }

/* ── Visual Card Tablet ──────────────────────────────────── */
@media (max-width: 1023px) { .visual-card { display: none; } }
@media (min-width: 1024px) { .visual-card { display: block; } }

/* ── Team Photo Mobile ───────────────────────────────────── */
@media (max-width: 640px) {
  .team-photo, .team-photo img { width: 120px; height: 120px; }
}

/* ── Hero + Footer: Tablet ───────────────────────────────── */
@media (min-width: 641px) and (max-width: 1023px) {
  .hero-bg {
    padding-top: 2.5rem !important;
    padding-bottom: 3rem !important;
  }
  .hero-logo-mark img { height: 26px; }
  .hero-bg h1 {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
  }
  .hero-bg h1 br { display: inline !important; }
  .hero-bg p {
    font-size: 1rem !important;
    max-width: 500px !important;
  }
  .hero-bg .btn-primary,
  .hero-bg .btn-outline {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  .stat-tile { padding: 0.875rem 1rem; }
  .stat-value { font-size: 1.05rem; }
  .stat-label { font-size: 0.75rem; }
  .stat-tile-gvp picture img { height: 36px !important; }
  footer.footer-anchor .max-w-5xl {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  footer.footer-anchor > div > div.flex { gap: 1.5rem; }
  footer nav { gap: 0.875rem 1rem !important; font-size: 0.75rem; }
  .footer-transparency { font-size: 11px; max-width: 100%; }
}

/* ── Hero + Footer: Mobile ───────────────────────────────── */
@media (max-width: 640px) {
  .hero-bg {
    padding-top: 1.75rem !important;
    padding-bottom: 2.5rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .hero-logo-mark { margin-bottom: 14px; }
  .hero-logo-mark img { height: 22px; }
  .hero-bg h1 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    margin-top: 1rem !important;
  }
  .hero-bg h1 br { display: none !important; }
  .hero-bg p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    margin-top: 1rem !important;
    max-width: 100% !important;
  }
  .hero-bg .flex.flex-wrap.gap-3 {
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-top: 1.75rem !important;
  }
  .hero-bg .btn-primary,
  .hero-bg .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.9375rem 1.5rem;
    font-size: 1rem;
  }
  .hero-bg .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.625rem !important;
    margin-top: 2rem !important;
  }
  .stat-tile { padding: 0.875rem 1rem; border-radius: 0.75rem; }
  .stat-value { font-size: 1rem; }
  .stat-label { font-size: 0.6875rem; }
  .stat-tile-gvp { grid-column: 1 / -1 !important; padding: 0.75rem 1rem !important; }
  .stat-tile-gvp picture img { height: 34px !important; }
  footer.footer-anchor .max-w-5xl { padding: 1.5rem 1.25rem !important; }
  footer.footer-anchor > div > div.flex.flex-col.sm\:flex-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
  }
  footer.footer-anchor img[alt*="humect"],
  footer.footer-anchor img[alt*="STAFFECT"] {
    width: 28px !important;
    height: 28px !important;
  }
  footer.footer-anchor .text-sm.font-semibold {
    font-size: 0.8125rem !important;
    line-height: 1.4;
  }
  footer.footer-anchor .text-xs {
    font-size: 0.6875rem !important;
    line-height: 1.5;
  }
  footer nav {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.625rem 1rem !important;
    font-size: 0.75rem !important;
    width: 100%;
  }
  footer nav a { padding: 0.125rem 0; line-height: 1.4; }
  .footer-transparency {
    font-size: 10.5px !important;
    line-height: 1.55;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .footer-gvp {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .footer-gvp img { height: 30px !important; }
}

/* ── Extra Small ─────────────────────────────────────────── */
@media (max-width: 380px) {
  .team-preview-av { width: 40px; height: 40px; margin-left: -10px; }
  .team-preview-label { font-size: 13px; }
  footer nav { grid-template-columns: 1fr !important; font-size: 0.6875rem !important; }
  .footer-transparency { font-size: 10px !important; }
}

/* ── Team Preview Strip ──────────────────────────────────── */
.team-preview-strip {
  padding: 40px 0 36px;
  background: var(--hs-bg);
}
.team-preview-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.team-preview-avatars {
  display: flex;
  flex-shrink: 0;
}
.team-preview-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--hs-surface);
  background-color: color-mix(in srgb, var(--hs-navy) 90%, #0A1520);
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--hs-border);
}

@media (prefers-color-scheme: dark) {
  .team-preview-av {
    background-color: #F0F5FA;
  }
}
.team-preview-av:first-child { margin-left: 0; }
.team-preview-av span {
  display: none;
}
.team-preview-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.team-preview-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-text);
}
.team-preview-sub {
  font-size: 12px;
  color: var(--hs-text-muted);
}
.team-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-navy);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  border: 1.5px solid var(--hs-navy);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.team-preview-link:hover {
  background: var(--hs-navy);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .team-preview-inner { gap: 14px; }
  .team-preview-link { display: none; }
  .team-preview-av { width: 44px; height: 44px; }
}

/* ── Stat tile GVP variant ───────────────────────────────── */
.stat-tile-gvp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
}

/* ── Jobs / Karriere ──────────────────────────────────────── */
.jobs-iframe-section {
  position: relative;
  width: 100%;
  margin-top: 48px;
  margin-bottom: 0;
}
.jobs-iframe {
  width: 100%;
  min-height: 1200px;
  border: none;
  display: block;
  background: transparent;
  overflow: hidden;
}
.jobs-iframe-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
  font-size: 14px;
  color: var(--hs-text-muted);
  transition: opacity 0.3s ease;
}
.jobs-iframe-loading.hidden { display: none; }
.jobs-iframe-loading svg { animation: spin 1s linear infinite; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.initiativ-section {
  margin-top: 0;
  padding-top: 72px;
  border-top: 0.5px solid var(--hs-border);
}

/* ── Footer transparency note ── */
.footer-transparency {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  max-width: 720px;
}
.footer-transparency strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
/* ── GVP Trust Badge (Für-Unternehmen) ── */
.gvp-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--hs-surface);
  border: 0.5px solid var(--hs-border);
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 24px;
}
.gvp-badge img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.gvp-badge-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--hs-text-muted);
  line-height: 1.4;
  max-width: 140px;
}
@media (max-width: 480px) {
  .gvp-badge { flex-direction: column; text-align: center; }
  .gvp-badge-label { max-width: 100%; }
}
/* ── GVP Footer Badge ── */
.footer-gvp {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  opacity: 0.85;
}
.footer-gvp img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* ── Logo (inline SVG, currentColor) ── */
.brand-logo {
  display: block;
  height: 32px;
  width: auto;
}
.brand-logo svg {
  height: 100%;
  width: auto;
  display: block;
}
.nav-logo-link    { color: var(--hs-navy); }
.footer-logo-link { color: var(--hs-teal); }

/* ── H1 Mobile Scale ───────────────────────────────────── */
@media (max-width: 640px) {
  h1.animate-fade-up {
    font-size: 2rem; /* text-4xl leicht kompakter für STAFFECT = 32px */
  }
}
