/* ================================================================
   NEST AzubiConnect – Redesign v2
   Shared Stylesheet · NEST-MESSE LOOK
   Navy #0F2145 · Amber #EFA500 · Light #F3F7F7
   Fonts: Jost (UI/Headings) + Inter (Hero/Akzent)
   → Starker Wiedererkennungswert zu nest-explore.de
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800;900&family=Inter:wght@400;600;700;800;900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Jost', sans-serif; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: #fff;
  color: #555;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CSS Variables ── */
:root {
  --navy:        #0F2145;
  --navy-deep:   #0c1829;   /* Hero-Hintergrund */
  --navy-mid:    #14264f;
  --amber:       #EFA500;
  --amber-dark:  #d4920a;   /* Hover */
  --gold:        #DB8D14;   /* Hero-Akzent */
  --amber-soft:  rgba(239,165,0,.10);
  --amber-soft2: rgba(239,165,0,.15);

  --bg:          #ffffff;
  --bg-light:    #F3F7F7;
  --ink:         #0F2145;
  --text:        #555555;
  --text-soft:   #666666;
  --text-mute:   #888888;
  --text-faint:  #999999;
  --border:      #dde3ec;

  /* Legacy-Aliase (kompatibel zu vorhandenem Markup) */
  --white:       #ffffff;
  --gray-50:     #F3F7F7;
  --gray-100:    #eef2f5;
  --gray-200:    #dde3ec;
  --gray-400:    #999999;
  --gray-600:    #666666;
  --gray-700:    #555555;
  --blue-bg:     #F3F7F7;
  --blue-bg-mid: #E7F0FF;
  --amber-light: #ffc94d;
  --amber-pale:  rgba(239,165,0,.10);

  /* Kompatibilitäts-Aliase (frühere Dark-Tokens → helle Werte) */
  --bg-2:          #F3F7F7;
  --surface:       #ffffff;
  --surface-2:     #F3F7F7;
  --surface-3:     #eef2f5;
  --glass:         #ffffff;
  --glass-2:       #F3F7F7;
  --border-strong: #cdd6e4;
  --text-dim:      #666666;

  --max-w:       1100px;
  --radius:      10px;
  --radius-lg:   14px;
  --pill:        9999px;
  --shadow:      0 2px 18px rgba(15,33,69,.08);
  --shadow-lg:   0 16px 50px rgba(15,33,69,.16);
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
section { position: relative; }

/* ── Typography ── */
.h1 { font-size: clamp(28px,4.5vw,46px); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; color: var(--ink); }
.h2 { font-size: clamp(26px,4vw,38px); font-weight: 800; line-height: 1.2; color: var(--ink); }
.h3 { font-size: 20px; font-weight: 800; line-height: 1.3; color: var(--ink); }
.h4 { font-size: 16px; font-weight: 700; color: var(--ink); }
.lead { font-size: 16px; line-height: 1.75; color: var(--text-soft); }
.body { font-size: 14px; line-height: 1.8; color: var(--text-soft); }
.text-amber { color: var(--amber); }
.text-white { color: #fff !important; }
.text-center { text-align: center; }

/* ── Section Label (Messe-Signatur) ── */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 14px;
}

/* ── Chips (kompatibel; im Messe-Look als Label/Badge) ── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--pill);
}
.chip-amber { background: var(--amber-soft2); color: var(--amber-dark); border: 1px solid rgba(239,165,0,.3); }
.chip-navy  { background: rgba(15,33,69,.06); color: var(--navy); border: 1px solid var(--border); }
.chip-white { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.chip::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .8; }

/* ── Buttons (Pill, Messe-Signatur) ── */
.btn, .btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--pill);
  font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; border: 2px solid transparent; transition: all .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary, .btn-pill { background: var(--amber); color: #fff; }
.btn-primary:hover, .btn-pill:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber-dark); }
.btn-outline-white, .btn-pill-outline { background: transparent; color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover, .btn-pill-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-lg { padding: 15px 36px; font-size: 15px; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ================================================================
   NAVIGATION (hell, sticky)
================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(15,33,69,.1); }
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo svg { flex-shrink: 0; }
.navbar-logo span { font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1; }
.navbar-logo span strong { color: var(--navy); font-weight: 900; }
.navbar-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.navbar-logo-text { line-height: 1; }
.navbar-logo-text .brand { display: block; font-size: 18px; font-weight: 900; color: var(--navy); }
.navbar-logo-text .sub   { display: block; font-size: 10px; font-weight: 700; color: var(--amber); letter-spacing: .12em; text-transform: uppercase; }
.navbar-links { display: flex; align-items: center; gap: 2px; }
.navbar-links a {
  padding: 8px 16px; border-radius: var(--pill);
  font-size: 14px; font-weight: 600; color: var(--text-mute); transition: all .15s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--navy); background: var(--bg-light); }
.navbar-links a.active { color: var(--navy); }
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav {
  padding: 10px 22px; border-radius: var(--pill); font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px; border: 1.5px solid transparent; transition: all .2s;
}
.btn-nav-ghost { color: var(--navy); border-color: var(--border); }
.btn-nav-ghost:hover { border-color: var(--amber); color: var(--amber-dark); }
.btn-nav-cta { background: var(--amber); color: #fff; }
.btn-nav-cta:hover { background: var(--amber-dark); }

/* ================================================================
   PAGE HEADER (Sub-Pages) – dunkler Navy-Hero + Gold-Schrägdivider
================================================================ */
.page-header {
  margin-top: 0;
  background: var(--navy-deep);
  padding: 70px 40px 96px;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 64px; background: var(--amber);
  clip-path: polygon(0 100%, 100% 35%, 100% 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .h1, .page-header .h2 { color: #fff; font-family: 'Inter', sans-serif; }
.page-header .lead { color: rgba(255,255,255,.6); }
.page-header .chip-amber { background: rgba(219,141,20,.15); border-color: rgba(219,141,20,.3); color: var(--amber); }
.page-header .text-amber { color: var(--amber); }
.page-header-title { font-size: clamp(28px,4vw,44px); font-weight: 900; line-height: 1.15; color: #fff; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.page-header-sub { font-size: 16px; color: rgba(255,255,255,.6); }

/* ================================================================
   STATS BAR (Amber – Messe-Signatur)
================================================================ */
.stats-bar { background: var(--amber); padding: 44px 40px; }
.stats-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center;
}
.stat-number { font-size: 44px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.stats-bar .stat-label { font-size: 14px; color: rgba(15,33,69,.75); font-weight: 600; line-height: 1.4; }

/* ── Stats-Row (kompatibel, helle Karten-Variante) ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); background: #fff;
}
.stat-box { padding: 40px 28px; text-align: center; border-right: 1px solid var(--border); transition: background .2s; }
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: var(--bg-light); }
.stat-num { font-size: 40px; font-weight: 900; color: var(--navy); line-height: 1; font-family: 'Inter', sans-serif; }
.stat-num .amber { color: var(--amber); }
.stat-label { font-size: 13px; color: var(--text-mute); margin-top: 6px; font-weight: 600; }

/* ================================================================
   GENERIC SECTION (Messe)
================================================================ */
.nest-section { padding: 90px 40px; }
.nest-section-inner { max-width: var(--max-w); margin: 0 auto; }
.nest-section-header { max-width: 640px; margin-bottom: 56px; }
.nest-section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.nest-section-header h2 { font-size: clamp(26px,4vw,38px); font-weight: 800; color: var(--ink); line-height: 1.2; margin-bottom: 14px; }
.nest-section-header p { font-size: 16px; color: var(--text-soft); line-height: 1.75; }
.bg-white { background: #fff; }
.bg-light { background: var(--bg-light); }

/* Section header helper (kompatibel) */
.section-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-header .chip, .section-header .section-label { margin-bottom: 14px; }
.section-header .h2 { margin-bottom: 14px; }

/* ================================================================
   FIT-CARDS (Karten mit Amber-Linkskante)
================================================================ */
.fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.fit-card {
  background: #fff; padding: 28px 26px; border-radius: var(--radius);
  border-left: 3px solid var(--amber); box-shadow: var(--shadow);
  transition: box-shadow .25s ease, transform .25s ease;
}
.fit-card:hover { box-shadow: 0 6px 24px rgba(15,33,69,.12); transform: translateY(-3px); }
.fit-card-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--amber); text-transform: uppercase; margin-bottom: 12px; display: block; }
.fit-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.fit-card p { font-size: 14px; color: var(--text-soft); line-height: 1.75; margin-bottom: 16px; }
.fit-card-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--navy); background: var(--amber-soft); border-radius: var(--pill); padding: 5px 14px; }

/* ================================================================
   HOW-STEPS (Navy-Kreis, Amber-Rand)
================================================================ */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(16.6% + 4px); right: calc(16.6% + 4px);
  height: 2px; background: linear-gradient(to right, var(--amber), rgba(239,165,0,.3)); z-index: 0;
}
.how-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--amber); color: var(--amber);
  font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: 'Inter', sans-serif;
}
.how-step h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.how-step p { font-size: 14px; color: var(--text-soft); line-height: 1.8; margin-bottom: 16px; }
.how-step-time { display: inline-block; font-size: 12px; font-weight: 700; color: var(--amber); background: var(--amber-soft); padding: 6px 16px; border-radius: var(--pill); }

/* ── Process (kompatibel zu vorhandenem Markup) ── */
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(16.66% + 14px); right: calc(16.66% + 14px);
  height: 2px; background: linear-gradient(to right, var(--amber), rgba(239,165,0,.3)); z-index: 0;
}
.process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--amber); color: var(--amber);
  font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Inter', sans-serif; transition: all .2s;
}
.process-step:hover .process-num { background: var(--amber); color: #fff; }
.process-step h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* ================================================================
   COMPARISON (NEST vs. traditionell)
================================================================ */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-col { padding: 32px 28px; border-radius: 12px; }
.comparison-col.nest-col { background: var(--amber-soft); border: 2px solid var(--amber); }
.comparison-col.trad-col { background: var(--bg-light); border: 2px solid var(--border); }
.comparison-col-title { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.nest-col .comparison-col-title { color: var(--ink); }
.trad-col .comparison-col-title { color: var(--text-mute); }
.comparison-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: 14px; line-height: 1.6; color: var(--text); }
.comparison-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.nest-col .ci-icon { background: var(--amber-soft2); color: var(--amber); }
.trad-col .ci-icon { background: rgba(0,0,0,.07); color: #aaa; }

/* ================================================================
   CTA SECTION (dunkel + Licht-Schrägdivider oben)
================================================================ */
.cta-section { background: var(--navy); padding: 90px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 64px; background: var(--bg-light); clip-path: polygon(0 0, 100% 0, 100% 100%); }
.cta-section.on-white::before { background: #fff; }
.cta-section::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: rgba(239,165,0,.06); pointer-events: none; }
.cta-section .container, .cta-inner { position: relative; z-index: 1; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-section .section-label { color: var(--amber); }
.cta-section .chip-white, .cta-section .chip-amber { margin-bottom: 18px; }
.cta-section h2, .cta-section .h2 { font-size: clamp(28px,4.5vw,44px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-section h2 em, .cta-inner h2 em { color: var(--amber); font-style: normal; }
.cta-section .lead, .cta-section p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; line-height: 1.7; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.4); }

/* ================================================================
   TESTIMONIALS (Karten mit Amber-Oberkante)
================================================================ */
.testimonials-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.testimonial-card {
  background: #fff; padding: 32px 28px; border-radius: 12px; box-shadow: var(--shadow);
  border-top: 3px solid var(--amber); transition: box-shadow .25s ease, transform .25s ease;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(15,33,69,.13); transform: translateY(-4px); }
.testimonial-header { display: flex; justify-content: space-between; align-items: center; }
.testimonial-initials { width: 46px; height: 46px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--amber); font-weight: 800; font-size: 16px; }
.testimonial-initials.has-logo { background: #fff; padding: 6px; border: 1px solid var(--border); }
.testimonial-initials.has-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.testimonial-stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; }
.testimonial-quote { font-size: 14px; line-height: 1.8; color: var(--text); font-style: italic; border-left: 2px solid var(--amber); padding-left: 14px; }
.testimonial-author { font-weight: 800; font-size: 15px; color: var(--ink); }
.testimonial-role { font-size: 12px; color: var(--text-faint); margin-top: 3px; }
/* kompatible t-* Klassen */
.t-stars { display: flex; gap: 3px; }
.t-stars span { color: var(--amber); font-size: 15px; }
.t-quote { font-size: 14px; line-height: 1.8; color: var(--text); flex: 1; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--amber); }
.t-name { font-size: 15px; font-weight: 800; color: var(--ink); }
.t-role { font-size: 12px; color: var(--text-faint); margin-top: 1px; }

/* ================================================================
   WORKSHOP CARD (Home-Teaser) – helle Karte, Navy-Bild
================================================================ */
.workshop-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: all .25s; position: relative;
}
.workshop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.workshop-card-image { height: 170px; background: var(--navy); display: flex; align-items: flex-end; padding: 20px; position: relative; overflow: hidden; }
.workshop-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(12,24,41,.7) 100%); }
.workshop-card-category { position: relative; z-index: 1; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; background: var(--amber); padding: 4px 12px; border-radius: var(--pill); }
.workshop-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.workshop-card-title { font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.35; }
.workshop-card-desc { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.workshop-card-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.workshop-card-meta span { font-size: 12px; color: var(--text-mute); display: flex; align-items: center; gap: 5px; }
.workshop-card-meta svg { width: 13px; height: 13px; }
.workshop-card-link { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--amber-dark); margin-left: auto; }
.workshop-card-link svg { width: 14px; height: 14px; }

/* Divider / Logos */
.divider { height: 1px; background: var(--border); margin: 0; }
.logo-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 44px; }
.logo-item { font-size: 15px; font-weight: 800; color: var(--text-mute); opacity: .7; transition: all .2s; }
.logo-item:hover { opacity: 1; color: var(--navy); }

/* ================================================================
   FOOTER (Navy)
================================================================ */
.footer { background: var(--navy); padding: 64px 0 32px; position: relative; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 52px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand svg { flex-shrink: 0; }
.footer-brand span { font-size: 17px; font-weight: 600; color: #fff; }
.footer-brand strong { color: #fff; font-weight: 900; }
.footer-tagline { font-size: 12px; font-weight: 700; color: var(--amber); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.65); transition: all .2s; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--amber); border-color: var(--amber); color: #fff; transform: translateY(-2px); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-links a:hover { color: var(--amber); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,.6); }
.footer-bottom { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom span, .footer-bottom a { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.75); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: rgba(255,255,255,.75); }

/* ================================================================
   FAQ (Messe-Style + kompatible faq-q/faq-a)
================================================================ */
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.faq-tab { padding: 10px 22px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--pill); cursor: pointer; font-weight: 700; font-size: 13px; color: var(--text-mute); transition: all .2s ease; font-family: 'Jost', sans-serif; }
.faq-tab:hover { border-color: rgba(239,165,0,.5); color: var(--navy); }
.faq-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; margin-bottom: 12px; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; transition: border-color .2s ease; }
.faq-item.active, .faq-item.open { border-color: var(--amber); }
.faq-question, .faq-q { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--navy); font-size: 15px; transition: background .2s ease; user-select: none; gap: 16px; }
.faq-question:hover, .faq-q:hover { background: var(--bg-light); }
.faq-toggle, .faq-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--amber-soft); color: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; flex-shrink: 0; transition: transform .25s ease, background .2s ease; }
.faq-item.active .faq-toggle, .faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--amber); color: #fff; }
.faq-answer, .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-size: 14px; color: var(--text-soft); line-height: 1.8; }
.faq-item.active .faq-answer, .faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 22px; }

/* ================================================================
   WORKSHOP DETAIL (Beitrag) – hell
================================================================ */
.ws-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; flex-wrap: wrap; }
.ws-breadcrumb a { color: rgba(255,255,255,.6); transition: color .15s; }
.ws-breadcrumb a:hover { color: #fff; }
.ws-breadcrumb span { color: rgba(255,255,255,.35); }
.ws-breadcrumb .current { color: var(--amber); }

.wsd-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.wsd-meta-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: var(--pill); }
.wsd-meta-pill strong { font-weight: 700; }

.wsd-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding: 70px 0 90px; align-items: start; }
.wsd-main { min-width: 0; }
.wsd-intro { font-size: 19px; line-height: 1.8; color: var(--ink); margin-bottom: 36px; font-weight: 400; }
.wsd-intro strong { color: var(--ink); font-weight: 800; }
.wsd-block { margin-bottom: 40px; }
.wsd-block h2 { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.wsd-block h2::before { content: ''; width: 5px; height: 24px; border-radius: 3px; background: var(--amber); flex-shrink: 0; }
.wsd-block p { font-size: 15px; line-height: 1.8; color: var(--text-soft); margin-bottom: 14px; }

.wsd-list { list-style: none; display: grid; gap: 12px; }
.wsd-list li { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--amber); border-radius: var(--radius); padding: 16px 20px; font-size: 15px; color: var(--text); line-height: 1.6; transition: all .18s; box-shadow: var(--shadow); }
.wsd-list li:hover { transform: translateX(3px); box-shadow: 0 6px 24px rgba(15,33,69,.12); }
.wsd-list li::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; background: var(--amber); border-radius: 50%; margin-top: 8px; }
.wsd-list.wsd-modules { counter-reset: wsd-c; }
.wsd-list.wsd-modules li::before { content: counter(wsd-c); counter-increment: wsd-c; width: 24px; height: 24px; border-radius: 50%; background: var(--amber); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; margin-top: 0; }

.wsd-quote { border-left: 4px solid var(--amber); background: var(--bg-light); padding: 24px 28px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 17px; font-style: italic; color: var(--ink); line-height: 1.7; margin: 32px 0; }
.wsd-quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; font-weight: 700; color: var(--text-mute); }

.wsd-aside { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.wsd-card { background: var(--navy); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
.wsd-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; border-radius: 50%; background: rgba(239,165,0,.12); }
.wsd-card-title { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 6px; position: relative; }
.wsd-card-sub { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 22px; position: relative; }
.wsd-facts { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; position: relative; }
.wsd-fact { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.wsd-fact:last-child { border-bottom: none; }
.wsd-fact-label { font-size: 13px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 8px; }
.wsd-fact-value { font-size: 14px; font-weight: 700; color: #fff; text-align: right; }
.wsd-fact-value .amber { color: var(--amber); }
.wsd-card .btn { width: 100%; position: relative; }
.wsd-card-note { font-size: 12px; color: rgba(255,255,255,.45); text-align: center; margin-top: 12px; position: relative; }

.wsd-contact { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.wsd-contact-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.wsd-contact-avatar { width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--amber); font-weight: 800; font-size: 16px; }
.wsd-contact-avatar--photo { overflow: hidden; padding: 0; }
.wsd-contact-avatar--photo img { width: 100%; height: 100%; object-fit: cover; }
.wsd-contact-name { font-size: 15px; font-weight: 800; color: var(--ink); }
.wsd-contact-role { font-size: 12px; color: var(--text-faint); }
.wsd-contact-row { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-soft); margin-bottom: 8px; }
.wsd-contact-row a { color: var(--text-soft); }
.wsd-contact-row a:hover { color: var(--amber-dark); }

.wsd-related { padding: 70px 0; background: var(--bg-light); border-top: 1px solid var(--border); }
.wsd-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.wsd-rel-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; box-shadow: var(--shadow); }
.wsd-rel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(15,33,69,.13); }
.wsd-rel-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-light); }
.wsd-rel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wsd-rel-card:hover .wsd-rel-img img { transform: scale(1.05); }
.wsd-rel-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber-dark); padding: 20px 22px 0; }
.wsd-rel-title { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.35; margin: 6px 0 10px; padding: 0 22px; }
.wsd-rel-arrow { font-size: 14px; font-weight: 700; color: var(--amber-dark); padding: 0 22px 22px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  .how-steps, .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before, .process-steps::before { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .wsd-layout { grid-template-columns: 1fr; gap: 36px; }
  .wsd-aside { position: static; }
  .wsd-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container, .navbar-inner, .footer-inner, .stats-bar, .nest-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .stats-bar-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   ABLAUF – Premium-Dark-Sektion  (Look: nest-explore.de/ablauf)
   Eyebrow · Phasen · Step-Cards mit Geister-Nummern · Gold-Divider
   · Result-Banner · Stat-Reihe · Scroll-In-Reveal · Noise-Textur
================================================================ */
.wf {
  --gold: var(--amber);
  --gold-faint: rgba(239,165,0,.08);
  --gold-line: rgba(239,165,0,.22);
  --t60: rgba(255,255,255,.6);
  --t40: rgba(255,255,255,.4);
  --t20: rgba(255,255,255,.2);
  --t03: rgba(255,255,255,.03);
  --t05: rgba(255,255,255,.05);
  --wf-border: rgba(255,255,255,.07);
  position: relative; padding: 110px 24px 120px; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(14,30,60,.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(14,30,55,.5) 0%, transparent 70%),
    #080f1d;
  color: #fff;
}
.wf::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wf * { font-family: 'Jost', sans-serif; }
.wf-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }

/* Header */
.wf-header { text-align: center; margin-bottom: 84px; }
.wf-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.wf-eyebrow-line { width: 28px; height: 1px; background: var(--gold); opacity: .5; }
.wf-h1 { font-family: 'Inter', sans-serif; font-size: clamp(32px,5vw,54px); font-weight: 900; line-height: 1.07; color: #fff; margin-bottom: 18px; letter-spacing: -.03em; }
.wf-h1 em { font-style: normal; color: var(--gold); }
.wf-lead { font-size: 16px; color: var(--t60); max-width: 480px; margin: 0 auto; line-height: 1.75; }

/* Phase */
.wf-phase { margin-bottom: 12px; }
.wf-phase-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.wf-phase-label { font-size: 9.5px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.wf-phase-n { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; font-size: 8.5px; font-weight: 900; color: var(--gold); }
.wf-phase-hr { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-line) 0%, transparent 75%); }

/* Cards */
.wf-grid { display: grid; gap: 12px; margin-bottom: 12px; }
.wf-grid--2 { grid-template-columns: 1fr 1fr; }
.wf-grid--1 { grid-template-columns: 1fr; max-width: 560px; }
.wf-card { background: var(--t03); border: 1px solid var(--wf-border); border-radius: 16px; padding: 28px 28px 24px; position: relative; overflow: hidden; transition: background .2s, border-color .2s, transform .25s, box-shadow .25s; opacity: 0; transform: translateY(18px); }
.wf-card.in { opacity: 1; transform: translateY(0); }
.wf-card:hover { background: var(--t05); border-color: rgba(239,165,0,.16); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.25); }
.wf-card::before { content: ''; position: absolute; top: 16px; left: 0; width: 2px; height: 32px; border-radius: 0 2px 2px 0; background: var(--gold); opacity: 0; transition: opacity .2s; }
.wf-card:hover::before { opacity: .8; }
.wf-card-bg-num { position: absolute; right: 16px; bottom: -10px; font-family: 'Inter', sans-serif; font-size: 100px; font-weight: 900; color: rgba(239,165,0,.04); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -.04em; }
.wf-step-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wf-step-num { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; }
.wf-step-num-inner { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.wf-step-badge { font-size: 10px; font-weight: 600; letter-spacing: .5px; color: var(--t40); background: var(--t03); border: 1px solid var(--wf-border); border-radius: 100px; padding: 3px 10px; }
.wf-step-icon { color: var(--t40); flex-shrink: 0; margin-left: auto; }
.wf-step-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.wf-card-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -.01em; }
.wf-card-body { font-size: 13px; color: var(--t60); line-height: 1.7; }
.wf-card-body b { color: rgba(255,255,255,.82); font-weight: 600; }
.wf-card-foot { margin-top: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.wf-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--gold); background: var(--gold-faint); border: 1px solid rgba(239,165,0,.15); border-radius: 100px; padding: 3px 10px; }

/* Divider */
.wf-divider { display: flex; flex-direction: column; align-items: center; gap: 3px; margin: 26px 0 38px; }
.wf-div-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(239,165,0,.4); }
.wf-div-line { width: 1px; height: 24px; background: linear-gradient(180deg, rgba(239,165,0,.3), transparent); }

/* Result */
.wf-result { margin-top: 64px; background: var(--t03); border: 1px solid var(--wf-border); border-radius: 18px; padding: 44px 48px; display: flex; align-items: center; gap: 36px; position: relative; overflow: hidden; opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s; }
.wf-result.in { opacity: 1; transform: translateY(0); }
.wf-result::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(239,165,0,.3), transparent); }
.wf-result-icon { width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px; border: 1px solid var(--gold-line); background: var(--gold-faint); display: flex; align-items: center; justify-content: center; }
.wf-result-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.wf-result-h { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 9px; letter-spacing: -.02em; }
.wf-result-p { font-size: 15px; color: var(--t60); line-height: 1.72; max-width: 540px; }
.wf-result-p b { color: var(--gold); font-weight: 700; }

/* Stats */
.wf-stats { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 16px; border-radius: 16px; overflow: hidden; border: 1px solid var(--wf-border); }
.wf-stat { padding: 36px 32px; text-align: center; border-right: 1px solid var(--wf-border); opacity: 0; transform: translateY(14px); transition: opacity .45s, transform .45s, background .2s; }
.wf-stat:last-child { border-right: none; }
.wf-stat.in { opacity: 1; transform: translateY(0); }
.wf-stat:hover { background: var(--t03); }
.wf-stat-n { font-family: 'Inter', sans-serif; font-size: 44px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; letter-spacing: -.04em; }
.wf-stat-l { font-size: 12.5px; color: var(--t40); line-height: 1.55; }

/* Staggered reveal */
.wf-grid .wf-card:nth-child(1) { transition: opacity .45s 0s, transform .45s 0s, background .2s, border-color .2s, box-shadow .2s; }
.wf-grid .wf-card:nth-child(2) { transition: opacity .45s .08s, transform .45s .08s, background .2s, border-color .2s, box-shadow .2s; }
.wf-stat:nth-child(2) { transition-delay: .08s; }
.wf-stat:nth-child(3) { transition-delay: .16s; }

@media (max-width: 960px) {
  .wf-grid--2 { grid-template-columns: 1fr; }
  .wf-result { flex-direction: column; padding: 32px 24px; text-align: center; }
  .wf-stats { grid-template-columns: 1fr; }
  .wf-stat { border-right: none; border-bottom: 1px solid var(--wf-border); }
}
@media (prefers-reduced-motion: reduce) {
  .wf-card, .wf-result, .wf-stat { opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   BILDER / FOTOS
================================================================ */
/* Workshop-Card mit echtem Foto */
.workshop-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s ease; }
.workshop-card:hover .workshop-card-image img { transform: scale(1.05); }

/* Über-uns: echtes Foto im Visual */
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; }

/* Über-uns: Trainer-Porträt im Avatar */
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-avatar.has-photo { background: none; border-color: rgba(255,255,255,.3); overflow: hidden; padding: 0; }

/* Galerie „Einblicke" */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: var(--bg-light); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,24,41,.35), transparent 55%); opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-item.wide { grid-column: span 2; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item.wide { grid-column: auto; } }

/* Detailseite: Banner-Foto über dem Intro */
.wsd-hero-img { border-radius: 14px; overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: var(--bg-light); }
.wsd-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ================================================================
   ABLAUF-Sektion: Angebots-Karten (3 Bereiche mit Foto)
================================================================ */
.wf-offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wf-offer {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(18px); transition: opacity .5s, transform .5s, border-color .2s;
}
.wf-offer.in { opacity: 1; transform: none; }
.wf-offer:hover { border-color: rgba(239,165,0,.28); }
.wf-offer:nth-child(2) { transition-delay: .08s; }
.wf-offer:nth-child(3) { transition-delay: .16s; }
.wf-offer-img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.wf-offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.wf-offer:hover .wf-offer-img img { transform: scale(1.05); }
.wf-offer-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,15,29,.55), transparent 55%); }
.wf-offer-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.wf-offer-cat { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber); }
.wf-offer-title { font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 800; color: #fff; }
.wf-offer-text { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.65; }
.wf-offer-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 4px 0 2px; }
.wf-offer-list li { position: relative; padding-left: 16px; font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.45; }
.wf-offer-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }
.wf-offer-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.wf-offer-tag { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: 3px 11px; }
.wf-offer-link { font-size: 13px; font-weight: 700; color: var(--amber); margin-top: auto; padding-top: 14px; }
@media (max-width: 860px) { .wf-offers { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .wf-offer { opacity: 1 !important; transform: none !important; } }

/* ================================================================
   GLOBAL HEADER (Ökosystem-Bar + Hauptnav) – NEST-Design
================================================================ */
#nest-ecosystem-bar, #nest-ecosystem-bar *, .nest-header, .nest-header *, .nest-footer, .nest-footer * { box-sizing: border-box; font-family: 'Jost', sans-serif; }

/* Ecosystem Bar */
#nest-ecosystem-bar { width: 100%; background: #0b1630; border-bottom: 1px solid rgba(239,165,0,.18); height: 38px; display: flex; align-items: center; position: sticky; top: 0; z-index: 9999; transition: transform .28s ease, opacity .28s ease; will-change: transform; }
#nest-ecosystem-bar.nest-bar-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
#nest-ecosystem-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
#nest-ecosystem-bar-left { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nest-bar-label { font-size: .8rem; font-weight: 500; color: #fff; letter-spacing: .03em; white-space: nowrap; opacity: .75; }
.nest-bar-divider { width: 1px; height: 13px; background: rgba(255,255,255,.4); }
#nest-ecosystem-bar-products { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nest-eco-product { font-size: .8rem; font-weight: 600; color: #fff; padding: 3px 10px; border-radius: 100px; text-decoration: none; letter-spacing: .02em; transition: color .15s, background .15s; white-space: nowrap; border: 1px solid transparent; line-height: 1.8; opacity: .75; }
.nest-eco-product:hover { color: #fff; background: rgba(255,255,255,.1); opacity: 1; }
.nest-eco-product.nest-eco-current { color: #fff; background: rgba(239,165,0,.2); border-color: rgba(239,165,0,.5); opacity: 1; }
.nest-eco-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.45); flex-shrink: 0; }
#nest-ecosystem-bar-cta { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: #EFA500; text-decoration: none; letter-spacing: .03em; white-space: nowrap; flex-shrink: 0; transition: opacity .15s; }
#nest-ecosystem-bar-cta:hover { opacity: .8; }
.nest-bar-cta-icon { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: rgba(239,165,0,.25); font-size: .65rem; line-height: 1; color: #EFA500; }
@media (max-width: 640px) { #nest-ecosystem-bar-products, .nest-bar-divider, .nest-bar-label { display: none; } }

/* Main Header */
.nest-header { background: #0c1829; position: sticky; top: 38px; left: 0; right: 0; z-index: 9998; box-shadow: 0 2px 16px rgba(15,33,69,.22); transition: top .28s ease; }
.nest-header.nest-header-raised { top: 0; }
.nest-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nest-header-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nest-header-logo img { height: 48px; width: auto; display: block; }
.nest-desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); }
.nest-desktop-nav a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 14px; font-weight: 600; letter-spacing: .2px; transition: color .2s ease; position: relative; padding-bottom: 2px; white-space: nowrap; }
.nest-desktop-nav a:hover, .nest-desktop-nav a.nest-nav-active { color: #EFA500; }
.nest-desktop-nav a.nest-nav-active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: #EFA500; border-radius: 2px; }
.nest-header-cta { background: #EFA500 !important; color: #fff !important; padding: 9px 22px !important; border-radius: 9999px !important; font-weight: 700 !important; font-size: 13px !important; letter-spacing: .2px !important; transition: background .2s ease, transform .2s ease !important; }
.nest-header-cta:hover { background: #d4920a !important; color: #fff !important; transform: translateY(-1px); }
.nest-header-cta::after { display: none !important; }
.nest-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15); border-radius: 8px; cursor: pointer; padding: 0; flex-shrink: 0; transition: background .2s ease; }
.nest-hamburger:hover { background: rgba(255,255,255,.14); }
.nest-hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease, width .3s ease; transform-origin: center; }
.nest-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nest-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nest-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nest-mobile-menu { background: #0F2145; border-top: 1px solid rgba(255,255,255,.08); overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.nest-mobile-menu.is-open { max-height: 520px; }
.nest-mobile-nav { display: flex; flex-direction: column; padding: 20px 24px 28px; gap: 4px; max-width: 1200px; margin: 0 auto; }
.nest-mobile-nav a { color: rgba(255,255,255,.80); text-decoration: none; font-size: 16px; font-weight: 600; padding: 13px 16px; border-radius: 8px; transition: background .2s ease, color .2s ease; display: flex; align-items: center; gap: 10px; }
.nest-mobile-nav a:hover { background: rgba(255,255,255,.07); color: #EFA500; }
.nest-mobile-nav a.nest-nav-active { background: rgba(239,165,0,.10); color: #EFA500; font-weight: 700; }
.nest-mobile-cta { background: #EFA500 !important; color: #fff !important; border-radius: 9999px !important; text-align: center; justify-content: center !important; margin-top: 12px; font-weight: 700 !important; font-size: 15px !important; }
.nest-mobile-cta:hover { background: #d4920a !important; color: #fff !important; }
.nest-menu-overlay { display: none; position: fixed; top: 110px; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.45); z-index: 9996; backdrop-filter: blur(2px); transition: top .28s ease; }
.nest-menu-overlay.is-open { display: block; }
.nest-menu-overlay.nest-overlay-raised { top: 72px; }
@media (max-width: 860px) { .nest-desktop-nav { display: none; } .nest-hamburger { display: flex; } .nest-header-inner { padding: 0 20px; } }
@media (max-width: 480px) { .nest-header-inner { height: 64px; } .nest-header-logo img { height: 40px; } .nest-mobile-menu { top: 102px; } .nest-menu-overlay { top: 102px; } .nest-menu-overlay.nest-overlay-raised { top: 64px; } }

/* ================================================================
   GLOBAL FOOTER – NEST-Design
================================================================ */
.nest-footer { background: #080d18; color: #fff; padding: 60px 40px 28px; }
.nest-footer__inner { max-width: 1100px; margin: 0 auto 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 50px; }
.nest-footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.nest-footer__logo-mark { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: #0F2145; flex-shrink: 0; }
.nest-footer__logo-mark svg { width: 24px; height: 24px; }
.nest-footer__logo-text { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.3px; }
.nest-footer__logo-text span { color: #EFA500; }
.nest-footer__logo-img { height: 42px; width: auto; display: block; }
.nest-footer__desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; max-width: 300px; }
.nest-footer__social { display: flex; gap: 10px; }
.nest-footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); text-decoration: none; transition: background .2s, color .2s; }
.nest-footer__social a svg { width: 17px; height: 17px; }
.nest-footer__social a:hover { background: #EFA500; color: #0F2145; }
.nest-footer h4 { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #EFA500; margin: 0 0 18px; }
.nest-footer__links { list-style: none; margin: 0; padding: 0; }
.nest-footer__links li { margin-bottom: 10px; }
.nest-footer__links a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.nest-footer__links a::before { content: '\2192'; color: #EFA500; font-size: 11px; opacity: 0; transform: translateX(-4px); transition: opacity .2s, transform .2s; }
.nest-footer__links a:hover { color: #fff; }
.nest-footer__links a:hover::before { opacity: 1; transform: translateX(0); }
.nest-footer__contact-line { margin-bottom: 12px; }
.nest-footer__contact-line p, .nest-footer__contact-line a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; line-height: 1.6; margin: 0; transition: color .2s; }
.nest-footer__contact-line a:hover { color: #EFA500; }
.nest-footer__bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.nest-footer__bottom p, .nest-footer__bottom a { font-size: 12px; color: rgba(255,255,255,.30); text-decoration: none; margin: 0; transition: color .2s; }
.nest-footer__bottom a:hover { color: #EFA500; }
.nest-footer__bottom-links { display: flex; gap: 20px; }
.nest-footer__badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(239,165,0,.10); border: 1px solid rgba(239,165,0,.20); border-radius: 9999px; padding: 4px 12px; font-size: 11px; color: rgba(239,165,0,.7); font-weight: 600; }
@media (max-width: 900px) { .nest-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .nest-footer { padding: 48px 20px 24px; } .nest-footer__inner { grid-template-columns: 1fr; gap: 28px; } .nest-footer__bottom { flex-direction: column; text-align: center; gap: 10px; } .nest-footer__bottom-links { justify-content: center; } }
