/* v4.1776168296 - g-fix */
/* ============================================================
   PERSONALNETZWERK OWL – v4.0 FINAL
   ============================================================ */
:root {
  --primary:  #0D1B3E;
  --accent:   #1565C0;
  --accent2:  #29B6F6;
  --surface:  #F4F7FB;
  --card:     #FFFFFF;
  --text:     #0D1B3E;
  --muted:    #6B7280;
  --border:   #E2E8F0;
  --font-h:   'Manrope', sans-serif;
  --font-b:   'DM Sans', sans-serif;
  --r-sm: 6px; --r-md: 14px; --r-lg: 22px;
  --shadow:   0 4px 24px rgba(13,27,62,.07);
  --shadow-h: 0 8px 40px rgba(21,101,192,.18);
  --brand-primary:  #0D1B3E;
  --brand-accent:   #1565C0;
  --brand-accent2:  #42A5F5;
  --brand-surface:  #F4F7FB;
  --brand-card:     #FFFFFF;
  --brand-text:     #0D1B3E;
  --brand-muted:    #6B7280;
  --brand-border:   #E2E8F0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-b); background: var(--surface); color: var(--text); line-height: 1.65;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: geometricPrecision;
}
button, a, input, select, textarea, .btn, .filter-btn, .nav-cta,
.job-apply-btn, .form-submit, .pnowl-tb-btn, .pb-btn {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: geometricPrecision;
  letter-spacing: .01em;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: var(--font-h); font-weight: 800; line-height: 1.15; }

/* ── WRAPPER — alle Inhalte gleich zentriert ── */
.wrap { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 60px; }

/* ── LABELS ── */
.section-label { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.section-title { font-family: var(--font-h); font-size: clamp(1.4rem, 2.2vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; padding-bottom: .4rem; line-height: 1.35; overflow: visible; }
.section-sub   { color: var(--muted); font-size: .95rem; line-height: 1.7; max-width: 540px; margin-bottom: 2.5rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; padding: .95rem 2.2rem; border-radius: var(--r-sm); font-weight: 500; font-size: 1rem; cursor: pointer; border: none; font-family: var(--font-b); text-decoration: none; white-space: nowrap; transition: box-shadow .18s, opacity .18s; -webkit-font-smoothing: subpixel-antialiased; -moz-osx-font-smoothing: auto; text-rendering: geometricPrecision; letter-spacing: .01em; }
.btn:hover { opacity: .88; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 18px rgba(21,101,192,.35); }
.btn-primary:hover { box-shadow: 0 8px 28px rgba(21,101,192,.5); color: #fff; }
.btn-outline  { background: transparent; border: 2px solid rgba(255,255,255,.3); color: #fff; }
.btn-outline:hover { border-color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════
   HEADER — Logo links, Nav rechts, volle Breite
   ══════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--primary); height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
  width: 100%; height: 68px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-text { font-family: var(--font-h); font-weight: 800; font-size: 1.15rem; color: #fff; white-space: nowrap; }
.logo-text span { color: var(--accent2); }

.site-nav { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.site-nav a { font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.75); transition: color .2s; }
.site-nav a:hover { color: #fff; }
.nav-cta { background: var(--accent); color: #fff !important; padding: .42rem 1.1rem; border-radius: var(--r-sm); font-weight: 500 !important; -webkit-font-smoothing: subpixel-antialiased; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99; background: var(--primary); border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 48px 1.5rem; flex-direction: column; gap: .1rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,.8); font-size: .95rem; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu a:last-child { border: none; color: var(--accent2); font-weight: 500; -webkit-font-smoothing: subpixel-antialiased; }

/* ══════════════════════════════════════════════
   HERO
   Inhalt zentriert (max-width 1100px, margin auto)
   Schrift groß aber "für" bleibt bei Partner
   ══════════════════════════════════════════════ */
#hero {
  background: var(--primary);
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: radial-gradient(ellipse at 85% 50%, rgba(21,101,192,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 60px 90px;
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(66,165,245,.15); border: 1px solid rgba(66,165,245,.3);
  color: var(--accent2); padding: .32rem .9rem; border-radius: 100px;
  font-size: .78rem; font-weight: 500; margin-bottom: 1.5rem; -webkit-font-smoothing: subpixel-antialiased;
}

/* Überschrift: groß genug dass es nach "Hero" aussieht
   clamp: min 2.2rem, fluid 3vw, max 3.8rem
   Bei 1100px = 33px ≈ 2.06rem → also clamp(2.2rem, 3vw, 3.8rem)
   "Ihr starker Partner für" bleibt auf einer Zeile bis ~900px */
.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 2.2vw, 3rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: 0;
  max-width: 1050px;
}
.hero-h1 em { color: var(--accent2); font-style: normal; display: block; -webkit-font-smoothing: subpixel-antialiased; }

.hero-sub {
  color: rgba(255,255,255,.6);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 300; line-height: 1.75;
  max-width: 900px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem; margin-top: 1.25rem; margin-bottom: 2.25rem;
}
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; }

.hero-right {
  display: flex; flex-direction: row; gap: .85rem;
  width: 100%; max-width: 1050px;
  margin-top: 2.5rem; flex-wrap: nowrap;
}
.hero-stat-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 1.1rem 1.5rem;
  display: flex; align-items: center; gap: .9rem; flex: 1; min-width: 0;
}
.hero-stat-num {
  font-family: var(--font-h); font-size: 2.4rem; font-weight: 700;
  color: var(--accent2); flex-shrink: 0; white-space: nowrap;
  -webkit-font-smoothing: subpixel-antialiased; text-rendering: geometricPrecision;
}
.hero-stat-label { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.4; }
.hero-stat-label strong { display: block; color: #fff; font-size: .98rem; font-weight: 500; margin-bottom: .1rem; white-space: nowrap; -webkit-font-smoothing: subpixel-antialiased; }

.hero-cert {
  background: rgba(21,101,192,.12); border: 1px solid rgba(21,101,192,.25);
  border-radius: var(--r-md); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  width: 100%; max-width: 1050px; margin-top: .85rem;
}
.hero-cert .icon { font-size: 1.2rem; flex-shrink: 0; }
.hero-cert p { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.55; }
.hero-cert strong { color: var(--accent2); font-weight: 600; -webkit-font-smoothing: subpixel-antialiased; }

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
#services { background: #fff; padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.service-card { background: var(--surface); border-radius: var(--r-md); padding: 1.6rem; border: 1px solid var(--border); transition: transform .22s, box-shadow .22s, border-color .22s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: var(--accent); }
.service-icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: rgba(21,101,192,.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: .6rem; padding-bottom: .3rem; line-height: 1.4; overflow: visible; }
.service-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   ZEITARBEIT
   ══════════════════════════════════════════════ */
#zeitarbeit { background: #fff; padding: 80px 0; }
.zeitarbeit-inner {
  width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  min-width: 0;
}
.zeitarbeit-inner > * { min-width: 0; overflow: visible; }
.info-cards { display: flex; flex-direction: column; gap: .85rem; margin-top: .5rem; }
.info-card {
  background: var(--card); border-radius: var(--r-md); padding: 1.1rem 1.25rem;
  border: 1px solid var(--border); border-left: 3px solid var(--accent);
}
.info-card h4 { font-family: var(--font-h); font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; line-height: 1.4; padding-bottom: .1rem; }
.info-card p  { font-size: .84rem; color: var(--muted); line-height: 1.65; margin: 0; }
.zeitarbeit-right { background: var(--surface); border-radius: var(--r-lg); padding: 2rem; border: 1px solid var(--border); overflow: visible; min-width: 0; display: flex; flex-direction: column; }
.zeitarbeit-right h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding-bottom: .75rem; line-height: 1.4; border-bottom: 2px solid var(--border); }
.zeitarbeit-right p { font-size: .87rem; color: var(--muted); line-height: 1.75; margin-bottom: .85rem; word-wrap: break-word; overflow-wrap: break-word; }
.zeitarbeit-right p:last-child { margin-bottom: 0; }
.zeitarbeit-highlight { background: rgba(21,101,192,.07); border-left: 3px solid var(--accent); padding: .85rem 1rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: .84rem; color: var(--muted); margin-top: auto; line-height: 1.65; }
.zeitarbeit-highlight strong { color: var(--text); }

/* ══════════════════════════════════════════════
   JOBS
   ══════════════════════════════════════════════ */
#jobs { background: var(--surface); padding: 80px 0; }
.jobs-filter { display: flex; gap: .55rem; flex-wrap: wrap; margin: 1.25rem 0 2rem; }
.filter-btn { padding: .36rem .95rem; border-radius: 100px; border: 1.5px solid var(--border); background: #fff; font-size: .82rem; cursor: pointer; font-family: var(--font-b); font-weight: 500; transition: all .18s; color: var(--text); -webkit-font-smoothing: subpixel-antialiased; }
.filter-btn.active, .filter-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.jobs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.job-card { background: var(--card); border-radius: var(--r-md); padding: 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s; position: relative; overflow: hidden; }
.job-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform .22s; transform-origin: left; }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-h); }
.job-card:hover::before { transform: scaleX(1); }
.job-type-badge { display: inline-block; padding: .2rem .7rem; border-radius: 100px; font-size: .7rem; font-weight: 700; letter-spacing: .03em; margin-bottom: .85rem; }
.job-type-badge.vollzeit { background: rgba(16,185,129,.1); color: #059669; }
.job-type-badge.teilzeit { background: rgba(245,166,35,.1); color: #D97706; }
.job-type-badge.default  { background: rgba(21,101,192,.1); color: var(--accent); }
.job-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.job-meta { display: flex; gap: .65rem; font-size: .78rem; color: var(--muted); margin: .6rem 0; flex-wrap: wrap; }
.job-desc { font-size: .83rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.job-apply-btn { width: 100%; padding: .58rem; background: var(--primary); color: #fff; border: none; border-radius: var(--r-sm); font-family: var(--font-b); font-size: .86rem; font-weight: 500; cursor: pointer; transition: background .18s; -webkit-font-smoothing: subpixel-antialiased; text-rendering: geometricPrecision; }
.job-apply-btn:hover { background: var(--accent); }

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
#about { background: var(--primary); color: #fff; padding: 80px 0; }
#about .section-label { color: var(--accent2); }
#about .section-title { color: #fff; }
#about .section-sub   { color: rgba(255,255,255,.58); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } .about-grid > * { min-width: 0; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem; }
.about-feature { display: flex; gap: .85rem; align-items: flex-start; }
.about-feature-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(255,255,255,.08); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.about-feature h4 { font-weight: 600; font-size: .9rem; margin-bottom: .2rem; color: #fff; line-height: 1.4; padding-bottom: .1rem; }
.about-feature p  { font-size: .82rem; color: rgba(255,255,255,.52); line-height: 1.6; overflow-wrap: break-word; word-break: break-word; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.about-stat-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 1.35rem; text-align: center; overflow: hidden; min-width: 0; }
.about-stat-card .num { font-family: var(--font-h); font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 700; color: var(--accent2); overflow: hidden; white-space: nowrap; -webkit-font-smoothing: subpixel-antialiased; text-rendering: geometricPrecision; }
.about-stat-card .lbl { font-size: .75rem; color: rgba(255,255,255,.48); margin-top: .2rem; }
.cert-badge { grid-column: 1/-1; background: rgba(66,165,245,.1); border: 1px solid rgba(66,165,245,.25); border-radius: var(--r-md); padding: 1rem 1.2rem; display: flex; align-items: flex-start; gap: .7rem; }
.cert-badge p { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.55; }
.cert-badge strong { color: var(--accent2); font-weight: 600; -webkit-font-smoothing: subpixel-antialiased; }

/* ══════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════ */
#team { background: var(--surface); padding: 80px 0; }
.team-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.team-card { background: var(--card); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); }
.team-photo { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: linear-gradient(135deg, var(--primary) 0%, #1a3a7a 100%); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 3.5rem; font-weight: 800; color: rgba(255,255,255,.4); letter-spacing: .04em; }
.team-photo.has-photo { background: #ffffff !important; }
.team-photo.accent { background: linear-gradient(135deg, var(--accent) 0%, #0d47a1 100%); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; display: block; }
.team-info { padding: 1.25rem; }
.team-info h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.4; padding-bottom: .2rem; }
.team-info .role { font-size: .78rem; color: var(--accent); font-weight: 600; margin-top: .15rem; }
.team-info .desc { font-size: .8rem; color: var(--muted); margin-top: .5rem; line-height: 1.55; }
.team-contact { display: flex; flex-direction: column; gap: .4rem; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--border); }
.team-contact a { font-size: .78rem; color: var(--accent); display: flex; align-items: center; gap: .4rem; transition: opacity .18s; }
.team-contact a:hover { opacity: .72; }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
#contact { background: var(--surface); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 2.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: .8rem; align-items: flex-start; }
.contact-item-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(21,101,192,.1); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-item h4 { font-weight: 700; font-size: .86rem; margin-bottom: .1rem; }
.contact-item p, .contact-item a { font-size: .84rem; color: var(--muted); }
.contact-form-box { background: var(--card); border-radius: var(--r-lg); padding: 2.2rem; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form-box h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; line-height: 1.4; padding-bottom: .15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .7rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .76rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { padding: .68rem .88rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-b); font-size: .86rem; color: var(--text); background: var(--surface); outline: none; transition: border-color .18s; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 95px; }
.form-submit { width: 100%; padding: .85rem; background: var(--accent); color: #fff; border: none; border-radius: var(--r-sm); font-family: var(--font-b); font-size: .93rem; font-weight: 500; cursor: pointer; transition: opacity .18s; margin-top: .3rem; -webkit-font-smoothing: subpixel-antialiased; text-rendering: geometricPrecision; }
.form-submit:hover { opacity: .88; }
.form-note { font-size: .7rem; color: var(--muted); margin-top: .6rem; text-align: center; }

/* ══════════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(13,27,62,.65); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--card); border-radius: var(--r-lg); width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; padding: 2.2rem; position: relative; animation: modalIn .28s ease; }
@keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: none; cursor: pointer; font-size: .95rem; display: flex; align-items: center; justify-content: center; }
.modal-box h2 { font-family: var(--font-h); font-size: 1.35rem; font-weight: 800; margin-bottom: .2rem; }
.modal-job-label { color: var(--accent); font-weight: 500; font-size: .86rem; margin-bottom: 1.6rem; }
.file-upload-area { border: 2px dashed var(--border); border-radius: var(--r-sm); padding: 1.25rem; text-align: center; cursor: pointer; transition: border-color .18s; }
.file-upload-area:hover { border-color: var(--accent); }
.file-upload-area p { font-size: .8rem; color: var(--muted); }
.success-box { text-align: center; padding: 2rem 0; }
.success-box .icon { font-size: 2.5rem; margin-bottom: .8rem; }
.success-box h3 { font-family: var(--font-h); font-size: 1.2rem; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
#site-footer { background: var(--primary); color: rgba(255,255,255,.62); }
.footer-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 3.5rem 60px 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.footer-logo-text { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .6rem; }
.footer-logo-text span { color: var(--accent2); }
.footer-tagline { font-size: .83rem; max-width: 270px; line-height: 1.65; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: .85rem; margin-bottom: .85rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li, .footer-col ul li a { font-size: .81rem; color: rgba(255,255,255,.5); transition: color .18s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-size: .76rem; }
.footer-bottom a { color: rgba(255,255,255,.38); transition: color .18s; margin-left: 1rem; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════
   PAGE & TOAST & ANIMATIONS
   ══════════════════════════════════════════════ */
.page-hero { background: var(--primary); color: #fff; padding: 120px 48px 60px; }
.page-hero-inner { max-width: 1400px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; color: #fff; }
.page-content { max-width: 800px; margin: 0 auto; padding: 60px 48px; }
.page-content h2 { font-size: 1.3rem; margin: 2rem 0 .65rem; }
.page-content p  { margin-bottom: .9rem; color: var(--muted); }
.page-content a  { color: var(--accent); }

.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500; background: #fff; border-radius: var(--r-md); padding: .85rem 1.3rem; box-shadow: 0 8px 36px rgba(0,0,0,.14); display: flex; align-items: center; gap: .6rem; transform: translateY(130%); transition: transform .3s ease; max-width: 300px; font-size: .86rem; }
.toast.show { transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .5s ease both; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .jobs-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .zeitarbeit-inner { grid-template-columns: 1fr; }
  .about-grid     { gap: 3rem; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-hamburger { display: flex; }
  .header-inner { padding: 0 20px; }
  .mobile-menu  { padding: 1rem 20px 1.5rem; }
  .wrap, .team-inner, .zeitarbeit-inner, .footer-inner, .page-hero, .page-content { padding-left: 20px; padding-right: 20px; }
  #services, #jobs, #about, #team, #contact, #zeitarbeit { padding: 60px 0; }
  .hero-inner { padding: 88px 20px 70px; }
  .hero-h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); word-break: normal; }
  .section-title { font-size: clamp(1.2rem, 5vw, 1.6rem) !important; word-break: normal !important; overflow-wrap: normal !important; }
  .hero-right { flex-direction: column; }
  .hero-stat-box { width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .about-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .about-grid > * { min-width: 0 !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
  .about-visual { grid-template-columns: 1fr 1fr !important; gap: .65rem !important; }
  .about-stat-card .num { font-size: 1.5rem !important; }
  .cert-badge { grid-column: 1/-1 !important; }
  #about .section-sub { max-width: 100% !important; }
  .about-feature { max-width: 100% !important; }
  .about-feature > div { min-width: 0 !important; max-width: 100% !important; word-break: break-word !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .wrap, .team-inner, .zeitarbeit-inner, .footer-inner, .hero-inner { padding-left: 16px; padding-right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .jobs-grid     { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .modal-box     { padding: 1.5rem; }
}

/* ── UNTERLÄNGEN SCHUTZ (g, j, p, q, y in Syne Font) ── */
h1, h2, h3, h4 {
  line-height: 1.35;
  padding-bottom: .1em;
  overflow: visible !important;
}
