/* =========================================================
   NEST BildungsBar – Stylesheet
   Design-System 1:1 übernommen von nest-messe.de
   Navy #0F2145 · Gold #EFA500 · Jost / Inter
   ========================================================= */

:root {
  --navy:        #0F2145;
  --navy-deep:   #0c1829;
  --navy-2:      #162d5e;
  --gold:        #EFA500;
  --gold-dark:   #d4920a;
  --gold-soft:   rgba(239,165,0,0.12);
  --bg-light:    #F3F7F7;
  --bg-app:      #E7F0FF;
  --white:       #ffffff;
  --text:        #333333;
  --text-soft:   #666666;
  --text-mute:   #999999;
  --line:        #dde3ec;
  --container:   1100px;
  --font:        'Jost', 'Segoe UI', system-ui, sans-serif;
  --font-alt:    'Inter', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--gold-dark); }

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 9999px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  border: 2px solid transparent; cursor: pointer;
  transition: background .2s ease, transform .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 38px; z-index: 100;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: top .28s ease;
}
.site-header.nest-header-raised { top: 0; }

/* ---------- NEST Ecosystem Bar (Topbar) ---------- */
#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: 101;
  transform: translateY(0);
  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; }
  #nest-ecosystem-bar-inner { justify-content: center; }
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: #fff; }
.brand:hover { color: #fff; }
.brand .logo-mark {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px;
  background: var(--navy-2); color: var(--gold); font-weight: 900; font-size: 1.2rem;
}
.brand small { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.78); font-weight: 500; font-size: .94rem;
  padding: .5rem .7rem; border-radius: 8px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--gold); position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; left: .7rem; right: .7rem; bottom: 1px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }
/* Partner-Login icon button */
.nav-portal-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; position: relative;
  color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.18);
  transition: background .18s, color .18s, border-color .18s;
}
.nav-portal-icon:hover { background: rgba(255,255,255,0.09); color: #fff; border-color: rgba(255,255,255,0.3); }
.nav-portal-icon.is-eingeloggt { color: var(--gold); border-color: rgba(239,165,0,0.4); }
.nav-portal-icon.is-eingeloggt:hover { background: rgba(239,165,0,0.08); border-color: rgba(239,165,0,0.6); }
.portal-dot {
  position: absolute; top: 6px; right: 6px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold); border: 1.5px solid #0c1829;
}

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2.5px; width: 24px; background: #fff; border-radius: 2px; }

/* Termin-Button nur auf Mobile im Hamburger-Menü sichtbar */
.nav-li-termin { display: none; }

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-portal-icon { display: grid !important; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: var(--navy-deep);
    padding: 1rem 24px 1.4rem; gap: .15rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open a { padding: .8rem .6rem; font-size: 1rem; }
  .nav-li-termin { display: block; margin-top: 10px; }
  .nav-li-termin-a { display: block; text-align: center; padding: 13px 22px !important; font-size: 1rem !important; border-radius: 12px; }
}

/* ---------- HERO (navy + gold clip-path edge) ---------- */
.hero {
  background: var(--navy-deep);
  position: relative; overflow: hidden;
  padding: 80px 0 130px;
  min-height: 620px;
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 70px;
  background: var(--gold);
  clip-path: polygon(0 100%, 100% 35%, 100% 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { display: flex; align-items: center; gap: 56px; }
.hero-text { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(239,165,0,0.15); border: 1px solid rgba(239,165,0,0.3);
  color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
  font-family: var(--font-alt);
}
.hero h1 {
  font-family: var(--font-alt);
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: #fff;
  line-height: 1.12; margin-bottom: 16px; letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead { font-family: var(--font-alt); font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-alt); font-size: 1.8rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.hero-stats .stat span { font-size: .85rem; color: rgba(255,255,255,0.55); }

/* Hero visual = app mockup card */
.hero-visual {
  flex-shrink: 0; width: 320px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 26px; padding: 18px; box-shadow: 0 36px 72px rgba(0,0,0,.5);
}
.hero-visual .mock-bar { display: flex; gap: .4rem; margin-bottom: 1rem; padding-left: 4px; }
.hero-visual .mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.hero-visual .mock-row {
  display: flex; align-items: center; gap: .8rem;
  background: var(--bg-app); border-radius: 14px; padding: .9rem 1rem; margin-bottom: .6rem;
}
.hero-visual .mock-row:last-child { margin-bottom: 0; }
.hero-visual .mock-row .ic {
  width: 36px; height: 36px; border-radius: 10px; background: var(--navy);
  display: grid; place-items: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.hero-visual .mock-row .tx b { display: block; color: var(--navy); font-size: .9rem; font-weight: 800; }
.hero-visual .mock-row .tx small { color: var(--text-soft); font-size: .72rem; }

@media (max-width: 860px) {
  .hero { padding: 56px 0 100px; }
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-visual { width: 100%; max-width: 340px; order: 1; }
  .hero h1, .hero p.lead { text-align: center; }
  .hero-badge { display: block; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
}

/* ---------- Stats bar (gold band) ---------- */
.stats-bar { background: var(--gold); padding: 44px 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; text-align: center; }
.stats-bar .num { font-size: 44px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; font-family: var(--font-alt); }
.stats-bar .lbl { font-size: 14px; color: rgba(15,33,69,0.75); font-weight: 600; }
@media (max-width: 700px) { .stats-bar-inner { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.bg-light { background: var(--bg-light); }
.bg-white { background: #fff; }
.section-navy { background: var(--navy); color: #fff; position: relative; }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 660px; margin: 0 0 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-navy .section-head h2 { color: #fff; }
.section-head p { font-size: 16px; color: var(--text-soft); line-height: 1.75; }
.section-navy .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- Card grid (gold left border) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; } }

.card {
  background: #fff; padding: 28px 26px; border-radius: 10px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 14px rgba(15,33,69,0.07);
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: 0 6px 24px rgba(15,33,69,0.12); transform: translateY(-3px); }
.card .icon { font-size: 1.7rem; margin-bottom: 14px; }
.card .icon .ic-svg { color: var(--gold-dark); }
.card .icon:has(.ic-svg) { width: 50px; height: 50px; border-radius: 13px; background: var(--gold-soft); display: grid; place-items: center; }
.card .num-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; display: block; }
.card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-soft); line-height: 1.75; margin-bottom: 0; }
.card .badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 12px; font-weight: 700; color: var(--navy);
  background: var(--gold-soft); border-radius: 9999px; padding: 5px 14px;
}
.card .badge.link { background: transparent; padding-left: 0; color: var(--gold-dark); }

/* ---------- How-steps (numbered + connector) ---------- */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); 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(--gold), rgba(239,165,0,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(--gold); color: var(--gold);
  font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.how-step h3 { font-size: 20px; font-weight: 800; color: var(--navy); 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(--gold); background: rgba(239,165,0,0.10); padding: 6px 16px; border-radius: 9999px; }
@media (max-width: 820px) { .how-steps { grid-template-columns: 1fr; gap: 36px; } .how-steps::before { display: none; } }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,72px); align-items: center; }
.split.rev .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.rev .split-media { order: 0; } }
.split-media {
  border-radius: 16px; min-height: 320px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  display: grid; place-items: center; box-shadow: 0 16px 50px rgba(15,33,69,0.18);
}
.split-media.gold { background: linear-gradient(150deg, var(--gold), var(--gold-dark)); }
.split-media .ph-emoji { font-size: 4.5rem; color: #fff; filter: drop-shadow(0 8px 14px rgba(0,0,0,.25)); }
.split-media::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.split-text h2 { font-size: clamp(24px,3.4vw,34px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.split-text p { font-size: 15px; color: var(--text-soft); line-height: 1.8; margin-bottom: 8px; }

.list-check { list-style: none; margin: 18px 0 0; }
.list-check li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--text); font-size: 14.5px; line-height: 1.6; }
.list-check li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-dark); font-weight: 900; font-size: 12px;
  display: grid; place-items: center;
}

/* ---------- Comparison ---------- */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .comparison-grid { grid-template-columns: 1fr; } }
.comparison-col { padding: 32px 28px; border-radius: 12px; }
.comparison-col.nest { background: rgba(239,165,0,0.07); border: 2px solid var(--gold); }
.comparison-col.trad { background: var(--bg-light); border: 2px solid var(--line); }
.comparison-col h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.comparison-col.nest h3 { color: var(--navy); }
.comparison-col.trad h3 { color: #888; }
.comparison-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 14px; line-height: 1.6; color: #555; }
.comparison-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.nest .ci-icon { background: rgba(239,165,0,0.15); color: var(--gold); }
.trad .ci-icon { background: rgba(0,0,0,0.07); color: #aaa; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px;
  display: flex; flex-direction: column; box-shadow: 0 2px 14px rgba(15,33,69,0.06);
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(15,33,69,0.12); }
.price-card.feature { border: 2px solid var(--gold); position: relative; }
.price-card.feature .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-weight: 800; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase; padding: 4px 14px; border-radius: 9999px; white-space: nowrap;
}
.price-card .tier { font-weight: 700; color: var(--gold-dark); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.price-card .amount { font-family: var(--font-alt); font-size: 2.4rem; font-weight: 900; color: var(--navy); margin: 8px 0 2px; }
.price-card .amount span { font-size: 1rem; color: var(--text-soft); font-weight: 500; }
.price-card .who { color: var(--text-soft); font-size: 14px; margin-bottom: 20px; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- Testimonials ---------- */
.testimonials-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: 0 2px 18px rgba(15,33,69,0.08); border-top: 3px solid var(--gold); transition: box-shadow .25s, transform .25s; }
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(15,33,69,0.13); transform: translateY(-4px); }
.testimonial-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.testimonial-initials { width: 46px; height: 46px; background: var(--navy); border-radius: 10px; display: grid; place-items: center; color: var(--gold); font-weight: 800; font-size: 16px; }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.testimonial-quote { font-size: 14px; line-height: 1.8; color: #555; font-style: italic; margin-bottom: 20px; border-left: 2px solid var(--gold); padding-left: 14px; }
.testimonial-author { font-weight: 800; font-size: 15px; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--text-mute); margin-top: 3px; }

/* ---------- Partners / logo strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.logo-chip {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 28px; font-weight: 700; color: var(--text-soft); min-width: 160px; text-align: center;
  box-shadow: 0 2px 10px rgba(15,33,69,0.05);
}

/* ---------- FAQ (messe accordion) ---------- */
.faq-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.faq-tab { padding: 10px 22px; background: #fff; border: 1.5px solid var(--line); border-radius: 9999px; cursor: pointer; font-weight: 700; font-size: 13px; color: #888; transition: all .2s; font-family: var(--font); }
.faq-tab:hover { border-color: rgba(239,165,0,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: 10px; border: 1.5px solid var(--line); overflow: hidden; transition: border-color .2s; }
.faq-item.active { border-color: var(--gold); }
.faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--navy); font-size: 15px; gap: 16px; user-select: none; transition: background .2s; background: none; border: 0; width: 100%; text-align: left; font-family: var(--font); }
.faq-question:hover { background: var(--bg-light); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-size: 18px; font-weight: 900; flex-shrink: 0; transition: transform .25s, background .2s, color .2s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-answer { 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 { max-height: 460px; }
.faq-answer-inner { padding: 0 24px 22px; }

/* ---------- CTA section (navy + clip-path top, gold pill) ---------- */
.cta-section { background: var(--navy); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section.on-light::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 70px; background: var(--bg-light); clip-path: polygon(0 0, 100% 0, 100% 100%); }
.cta-section.on-white::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 70px; background: #fff; clip-path: polygon(0 0, 100% 0, 100% 100%); }
.cta-section::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: rgba(239,165,0,0.05); pointer-events: none; }
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(28px,4.5vw,44px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-inner h2 em { font-style: normal; color: var(--gold); }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Locations ---------- */
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px; box-shadow: 0 2px 14px rgba(15,33,69,0.06); }
.loc-card .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); background: var(--gold-soft); padding: 5px 12px; border-radius: 9999px; margin-bottom: 14px; }
.loc-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.loc-card p { font-size: 14px; color: var(--text-soft); margin-bottom: 6px; }
.loc-card .map { height: 160px; border-radius: 10px; margin-top: 16px; background: linear-gradient(135deg, #dbe6fb, #eef3fd); display: grid; place-items: center; color: var(--navy); font-size: 2rem; border: 1px solid var(--line); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font); font-size: 15px; background: #fff; color: var(--text);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(239,165,0,0.15); }
.field textarea { min-height: 130px; resize: vertical; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-soft); margin-bottom: 18px; }
.form-note { background: rgba(239,165,0,0.1); border: 1px solid var(--gold); color: var(--navy); border-radius: 10px; padding: 14px 16px; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: 16px; padding: 32px; }
.contact-info-card h3 { color: #fff; font-size: 20px; margin-bottom: 22px; }
.contact-info-card .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-card .row .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.1); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; color: var(--gold); }
.contact-info-card .row b { display: block; color: #fff; margin-bottom: 2px; }
.contact-info-card .row a, .contact-info-card .row span { color: rgba(255,255,255,0.75); font-size: 14px; }
.contact-info-card .row a:hover { color: var(--gold); }

/* ---------- Footer (NEST-Stil) ---------- */
.nest-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); }
.nest-footer__inner {
  max-width: var(--container, 1200px); margin: 0 auto; padding: 64px 40px 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem;
}
@media (max-width: 860px) { .nest-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 48px 24px 32px; } }
@media (max-width: 520px) { .nest-footer__inner { grid-template-columns: 1fr; } }
.nest-footer h4 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 1.1rem; }
.nest-footer__logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.1rem; }
.nest-footer__logo-img { height: 40px; width: auto; display: block; }
.nest-footer__desc { color: rgba(255,255,255,0.5); font-size: .92rem; line-height: 1.7; max-width: 38ch; }
.nest-footer__social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.nest-footer__social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: grid; place-items: center; color: #fff; transition: background .18s, color .18s, transform .18s;
}
.nest-footer__social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.nest-footer__social svg { width: 18px; height: 18px; }
.nest-footer__links { list-style: none; }
.nest-footer__links li { margin-bottom: .6rem; }
.nest-footer__links a { color: rgba(255,255,255,0.7); font-size: .94rem; transition: color .15s; }
.nest-footer__links a:hover { color: var(--gold); }
.nest-footer__contact-line { margin-bottom: .8rem; font-size: .94rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.nest-footer__contact-line a { color: rgba(255,255,255,0.7); }
.nest-footer__contact-line a:hover { color: var(--gold); }
.nest-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--container, 1200px); margin: 0 auto; padding: 1.5rem 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-size: .86rem;
}
@media (max-width: 860px) { .nest-footer__bottom { padding: 1.4rem 24px; } }
.nest-footer__bottom p { color: rgba(255,255,255,0.5); margin: 0; }
.nest-footer__badge {
  font-size: .78rem; font-weight: 700; color: var(--gold);
  background: rgba(239,165,0,0.12); border: 1px solid rgba(239,165,0,0.3);
  padding: 4px 12px; border-radius: 100px; letter-spacing: .02em;
}
.nest-footer__bottom-links { display: flex; gap: 1.2rem; }
.nest-footer__bottom-links a { color: rgba(255,255,255,0.55); }
.nest-footer__bottom-links a:hover { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Icons ---------- */
.ic-svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ---------- Berufe-Browser (schlanke Toolbar) ---------- */
.berufe-tools { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; margin-bottom: 22px; box-shadow: 0 2px 14px rgba(15,33,69,0.05); }

.bt-searchrow { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.berufe-search { position: relative; flex: 1; min-width: 0; }
.berufe-search input {
  width: 100%; padding: 12px 16px 12px 42px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font); font-size: 15px; background: #fff; color: var(--text);
}
.berufe-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(239,165,0,0.15); }
.berufe-search .search-ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-mute); }

.merk-toggle { display: inline-flex; align-items: center; gap: 7px; padding: 11px 16px; background: #fff; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 14px; color: var(--navy); font-family: var(--font); transition: all .2s; white-space: nowrap; }
.merk-toggle .ic-svg { color: var(--text-mute); transition: color .2s; }
.merk-toggle:hover { border-color: var(--gold); }
.merk-toggle.has .ic-svg { color: #e84055; }
.merk-toggle.has .ic-svg { fill: #e84055; }
.merk-toggle.active { background: rgba(232,64,85,0.08); border-color: #e84055; color: #c2415a; }
.merk-toggle b { background: var(--navy); color: #fff; border-radius: 9999px; padding: 1px 8px; font-size: 12px; min-width: 20px; text-align: center; }
.merk-toggle.active b { background: #e84055; }
@media (max-width: 560px) { .merk-toggle span { display: none; } }

.berufe-interests { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 14px; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.berufe-interests::-webkit-scrollbar { height: 5px; }
.berufe-interests::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.interest-tag {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; white-space: nowrap;
  background: var(--bg-light); border: 1.5px solid transparent; border-radius: 9999px;
  cursor: pointer; font-weight: 600; font-size: 13px; color: var(--navy); transition: all .18s; font-family: var(--font);
}
.interest-tag .ic-svg { color: var(--gold-dark); }
.interest-tag:hover { border-color: var(--gold); }
.interest-tag.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.interest-tag.active .ic-svg { color: var(--gold); }

.bt-filterrow { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--line); }
.select-wrap { position: relative; display: inline-flex; align-items: center; }
.select-wrap .sel-ic { position: absolute; left: 11px; color: var(--text-mute); pointer-events: none; }
.select-wrap select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding: 9px 30px 9px 32px; border: 1.5px solid var(--line); border-radius: 9999px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--navy);
}
.select-wrap select:focus { outline: none; border-color: var(--gold); }
.reset-btn { background: none; border: 0; cursor: pointer; font-weight: 600; font-size: 13px; color: var(--text-mute); font-family: var(--font); }
.reset-btn:hover { color: var(--gold-dark); }
.berufe-count { margin-left: auto; color: var(--text-mute); font-size: 13px; font-weight: 600; }

.beruf-cat { margin-bottom: 44px; }
.beruf-cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.beruf-cat-head .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; }
.beruf-cat-head h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 0; }
.beruf-cat-head p { font-size: 13px; color: var(--text-soft); margin: 2px 0 0; }
.beruf-cat-head .cat-count { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--gold-dark); background: var(--gold-soft); padding: 5px 12px; border-radius: 9999px; white-space: nowrap; }

.beruf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.beruf-card-wrap { position: relative; display: flex; }
.beruf-link {
  display: flex; flex-direction: column; align-items: stretch; overflow: hidden; width: 100%;
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 12px; transition: transform .18s, box-shadow .2s, border-color .2s;
}
.beruf-link:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(15,33,69,0.12); border-left-color: var(--navy); }
.merk-heart {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.92); box-shadow: 0 2px 8px rgba(15,33,69,0.18);
  color: #9aa3b2; display: grid; place-items: center; transition: transform .15s, background .2s, color .2s;
}
.merk-heart:hover { transform: scale(1.12); color: #e84055; }
.merk-heart.on { color: #e84055; }
.merk-heart.on .ic-svg { fill: #e84055; }
.beruf-thumb { aspect-ratio: 1 / 1; min-height: 180px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--navy); }
.beruf-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.beruf-thumb .bild-ic { color: #fff; opacity: .92; }
.beruf-link .bl-body { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 15px; }
.beruf-link .bl-name { font-weight: 700; color: var(--navy); font-size: 14px; line-height: 1.35; }
.beruf-link .bl-typ { display: block; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-dark); margin-top: 3px; }
.beruf-link .bl-arrow { color: var(--gold); display: flex; align-items: center; flex-shrink: 0; transition: transform .18s; }
.beruf-link:hover .bl-arrow { transform: translateX(3px); }
.beruf-empty { text-align: center; color: var(--text-mute); padding: 40px 0; font-size: 15px; }

/* ---------- Aktuelle Stellen (horizontale Leiste) ---------- */
.stellen-strip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.stellen-strip-head h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--navy); margin: 2px 0 4px; }
.stellen-strip-head p { font-size: 14px; color: var(--text-soft); margin: 0; }
.stellen-strip-head .btn { flex-shrink: 0; }
@media (max-width: 600px) { .stellen-strip-head .btn { display: none; } }

.stellen-orte { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.ort-chip { display: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; background: #fff; border: 1.5px solid var(--line); border-radius: 9999px; cursor: pointer; font-weight: 700; font-size: 13px; color: #888; font-family: var(--font); transition: all .2s; }
.ort-chip .ic-svg { color: var(--text-mute); }
.ort-chip:hover { border-color: rgba(239,165,0,0.5); color: var(--navy); }
.ort-chip.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.ort-chip.active .ic-svg { color: var(--gold); }

.stellen-strip {
  display: flex; gap: 16px; overflow-x: auto; padding: 4px 4px 16px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.stellen-strip::-webkit-scrollbar { height: 8px; }
.stellen-strip::-webkit-scrollbar-thumb { background: #d6deec; border-radius: 4px; }
.stellen-strip::-webkit-scrollbar-track { background: transparent; }
.stellen-card {
  flex: 0 0 268px; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px;
  box-shadow: 0 2px 12px rgba(15,33,69,0.06); display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .2s, border-color .2s;
}
.stellen-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(15,33,69,0.13); border-color: #d4def0; }
.sc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sc-logo { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 15px; }
.sc-flag { font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 9999px; }
.sc-flag.neu { background: rgba(27,158,90,0.14); color: #1b9e5a; }
.sc-flag.bald { background: rgba(194,65,90,0.14); color: #c2415a; }
.sc-titel { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 3px; }
.sc-firma { font-size: 13px; color: var(--text-soft); margin-bottom: 14px; }
.sc-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.sc-meta .sc-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--text-soft); background: var(--bg-light); border-radius: 7px; padding: 4px 9px; }
.sc-meta .sc-tag .ic-svg { color: var(--text-mute); }
.sc-art { display: inline-flex; align-items: center; font-size: 11.5px; font-weight: 700; border-radius: 7px; padding: 4px 9px; }
.sc-art.art-azubi { color: var(--gold-dark); background: var(--gold-soft); }
.sc-art.art-dual { color: #2f5fd6; background: rgba(47,95,214,0.1); }
.sc-art.art-prakt { color: #6d28d9; background: rgba(109,40,217,0.1); }
.sc-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.sc-rest { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; color: var(--text-soft); }
.sc-rest .ic-svg { color: var(--text-mute); }
.sc-go { display: inline-flex; align-items: center; gap: 3px; font-size: 12.5px; font-weight: 800; color: var(--gold-dark); flex-shrink: 0; }
.stellen-empty { color: var(--text-mute); font-size: 14px; padding: 24px 4px; }

/* ---------- Beruf-Detailseite ---------- */
.beruf-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
@media (max-width: 860px) { .beruf-layout { grid-template-columns: 1fr; } }
.beruf-hero-img { height: 260px; border-radius: 16px; margin-bottom: 28px; display: grid; place-items: center; overflow: hidden; background: var(--navy); box-shadow: 0 16px 50px rgba(15,33,69,0.18); }
.beruf-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.beruf-hero-img .bild-ic { color: #fff; opacity: .95; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25)); }
.detail-merk.on .ic-svg { fill: #e84055; color: #e84055; }
@media (max-width: 860px) { .beruf-hero-img { height: 200px; } }
.partner-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.partner-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--navy); background: var(--bg-light); border: 1px solid var(--line); border-radius: 9999px; padding: 7px 14px; }
.partner-chip.is-link { cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.partner-chip.is-link:hover { border-color: var(--gold); color: var(--gold-dark); background: #fff; }
.partner-chip.is-link .ic-svg { color: var(--gold-dark); transform: rotate(-45deg); }
.beruf-main h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin: 32px 0 12px; }
.beruf-main h2:first-child { margin-top: 0; }
.beruf-main p { font-size: 15px; color: var(--text-soft); line-height: 1.8; }
.steckbrief { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: 0 2px 14px rgba(15,33,69,0.06); position: sticky; top: 94px; }
.steckbrief h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.steckbrief .sb-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.steckbrief .sb-row:last-of-type { border-bottom: none; }
.steckbrief .sb-row .ic { color: var(--gold-dark); flex-shrink: 0; display: flex; align-items: center; }
.steckbrief .sb-row .lbl { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mute); }
.steckbrief .sb-row .val { font-size: 14px; font-weight: 700; color: var(--navy); }
.steckbrief .btn { width: 100%; justify-content: center; margin-top: 18px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; font-family: var(--font-alt); }
.breadcrumb a { color: var(--gold); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.badge-pill { display: inline-block; background: var(--gold-soft); color: var(--gold-dark); font-weight: 700; font-size: .82rem; padding: 6px 16px; border-radius: 9999px; }

/* =========================================================
   REDAKTIONELLER LOOK – ohne generische Icons
   icons.js wird nicht mehr geladen, daher sind alle
   [data-icon]-Container leer. Hier werden sie durch
   Nummern und Gold-Akzente ersetzt (weniger "Template"-Optik).
   ========================================================= */

/* --- Karten: editoriale Gold-Nummern (01, 02 …) statt Icon --- */
.card-grid { counter-reset: kardnum; }
.card-grid .card { counter-increment: kardnum; }
.card .icon {
  width: auto !important; height: auto !important;
  background: none !important; border-radius: 0 !important;
  display: block; margin-bottom: 12px; font-size: 0;
}
.card .icon::before {
  content: counter(kardnum, decimal-leading-zero);
  display: block; font-size: 42px; font-weight: 900; line-height: 1;
  letter-spacing: -1px; color: rgba(239,165,0,0.30);
  transition: color .25s ease;
}
.card:hover .icon::before { color: rgba(239,165,0,0.55); }

/* --- Hero-Mockup-Zeilen: schlanker Gold-Balken statt Symbol --- */
.hero-visual .mock-row .ic {
  width: 5px !important; height: 34px !important; border-radius: 3px !important;
  background: var(--gold) !important; font-size: 0 !important; color: transparent !important;
  overflow: hidden;
}

/* --- Split-Media-Panel: dezenter Marken-Schriftzug statt Glyph --- */
.split-media .ph-emoji { display: none; }
.split-media { position: relative; }
.split-media::after {
  content: "NEST"; position: absolute; inset: 0; margin: auto; height: 1em;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; letter-spacing: 8px; font-size: 26px; color: rgba(255,255,255,0.9);
}

/* --- Steckbrief: Gold-Akzentstrich statt Zeilen-Icon --- */
.steckbrief .sb-row .ic { display: none; }
.steckbrief .sb-row { position: relative; padding-left: 14px; }
.steckbrief .sb-row::before {
  content: ""; position: absolute; left: 0; top: 14px; bottom: 14px;
  width: 3px; border-radius: 2px; background: var(--gold);
}

/* --- Berufe-Browser: Kategorie-Icon weg, Such-/Filter-Icons weg --- */
.beruf-cat-head .ic { display: none; }
.berufe-search .search-ic { display: none; }
.berufe-search input { padding-left: 16px; }
.select-wrap .sel-ic { display: none; }
.select-wrap select { padding-left: 16px; }

/* --- Beruf-Karte: Merken-Button als typografischer Marker (+/✓) --- */
.merk-heart { font-size: 17px; font-weight: 800; color: #b9c0cc; line-height: 1; }
.merk-heart::after { content: "+"; }
.merk-heart.on { color: var(--gold-dark); }
.merk-heart.on::after { content: "\2713"; }
.beruf-link .bl-arrow { font-size: 18px; font-weight: 700; line-height: 1; }
.detail-merk { gap: 6px; }

/* --- Partner-Chips: typografischer Pfeil --- */
.partner-chip.is-link .ext { font-weight: 700; }

/* --- Kontakt-Info-Karte: Gold-Balken statt Symbol --- */
.contact-info-card .row .ic {
  width: 5px !important; height: 34px !important; border-radius: 3px !important;
  background: var(--gold) !important; font-size: 0 !important;
}

/* --- Standort-"Karte": dezenter Hinweis statt Pin --- */
.loc-card .map { font-size: 0; }
.loc-card .map::after {
  content: "Standort"; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy); opacity: .45;
}

/* --- wf-Sektion (Für Unternehmen): redundante Emoji-Symbole entfernen --- */
.wf-step-icon { display: none !important; }
.wf-result-icon { display: none !important; }
/* Mockup-Stellenliste: Buchstaben-Monogramm statt Emoji */
.la-job .ji { background: #0F2145; color: #EFA500; font-weight: 800; font-size: 13px; }

/* ---------- Blog-Inhalt ---------- */
.blog-content { color: var(--text); font-size: 17px; line-height: 1.8; }
.blog-content h2 { color: var(--navy); font-weight: 800; margin: 1.6em 0 .5em; }
.blog-content h3 { color: var(--navy); font-weight: 700; margin: 1.4em 0 .4em; }
.blog-content p { margin-bottom: 1.1em; }
.blog-content a { color: var(--gold-dark); font-weight: 600; }
.blog-content img { max-width: 100%; border-radius: 12px; margin: 1.2em 0; }
.blog-content ul, .blog-content ol { margin: 0 0 1.1em 1.3em; }
.blog-content li { margin-bottom: .4em; }

/* ---------- Hero: Phone-Mockup (Deine Zukunft) ---------- */
.hero-visual--phone { background: none !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; width: auto; position: relative; }
/* ambienter Gold-Schein hinter dem Phone */
.hero-visual--phone::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 128%; height: 82%;
  transform: translate(-50%, -50%); z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(239,165,0,0.20), rgba(239,165,0,0) 72%); filter: blur(8px);
}
.hero-phone {
  display: block; width: 234px; max-width: 66vw; margin: 14px auto; position: relative; z-index: 1;
  background: linear-gradient(155deg, #1d2f4a 0%, #0b1626 58%);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 38px; padding: 10px;
  box-shadow: 26px 40px 70px rgba(0,0,0,0.55), 0 8px 22px rgba(239,165,0,0.16), inset 0 0 0 2px rgba(255,255,255,0.05);
  transform: perspective(1100px) rotateY(-24deg) rotateX(8deg) rotate(1deg);
  transform-origin: center; transform-style: preserve-3d; will-change: transform;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease; text-decoration: none;
}
.hero-phone:hover {
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg) translateY(-6px);
  box-shadow: 18px 46px 84px rgba(0,0,0,0.6), 0 12px 30px rgba(239,165,0,0.26);
}
/* Seitentaste */
.hero-phone::after { content: ""; position: absolute; right: -2px; top: 86px; width: 2.5px; height: 44px; border-radius: 3px; background: rgba(255,255,255,0.18); }
.hero-phone .hp-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 64px; height: 16px; background: #0b1626; border: 1px solid rgba(255,255,255,0.06); border-radius: 9999px; z-index: 3; }
.hero-phone .hp-screen { position: relative; background: var(--bg-light); border-radius: 30px; padding: 28px 13px 15px; overflow: hidden; display: flex; flex-direction: column; gap: 10px; min-height: 430px; }
/* Glas-Sheen über dem Screen */
.hero-phone .hp-screen::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 30%); }
.hero-phone .hp-badge { align-self: flex-start; font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); background: var(--gold-soft); padding: 3px 9px; border-radius: 9999px; }
.hero-phone .hp-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-top: 6px; line-height: 1.2; }
.hero-phone .hp-search { background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 8px 12px; font-size: 11px; color: var(--text-mute); }
.hero-phone .hp-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.hero-phone .hp-chip { font-size: 10px; font-weight: 700; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 9999px; padding: 4px 9px; }
.hero-phone .hp-chip--on { background: var(--navy); color: #fff; border-color: var(--navy); }
.hero-phone .hp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hero-phone .hp-card { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 9px; overflow: hidden; }
.hero-phone .hp-card img { width: 100%; height: 46px; object-fit: cover; object-position: center top; display: block; }
.hero-phone .hp-name { display: block; font-size: 10px; font-weight: 700; color: var(--navy); padding: 5px 7px; line-height: 1.2; }

/* --- Chat bubbles for Kontakt phone screen --- */
.hp-chat-wrap { display: flex; flex-direction: column; gap: 5px; flex: 1; overflow: hidden; }
.hp-chat-in { background: #fff; border: 1px solid var(--line); border-radius: 0 9px 9px 9px; padding: 6px 9px; font-size: 9.5px; line-height: 1.4; color: var(--navy); max-width: 88%; align-self: flex-start; }
.hp-chat-out { background: var(--navy); border-radius: 9px 0 9px 9px; padding: 6px 9px; font-size: 9.5px; line-height: 1.4; color: #fff; max-width: 88%; align-self: flex-end; }
.hp-chat-time { font-size: 7px; opacity: 0.5; text-align: right; margin-top: 2px; }

/* --- Calendar day selected state --- */
.hp-cal-d--selected { background: var(--navy) !important; color: #fff !important; font-weight: 800 !important; }

/* Header: eingeloggt-Status im Partner-Button */
.nav-portal.is-eingeloggt { border-color: #1f9d63; color: #1f9d63; }
.login-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #1f9d63; margin-right: 7px; box-shadow: 0 0 0 0 rgba(31,157,99,0.5); animation: nestPulse 2s infinite; }
@keyframes nestPulse { 0% { box-shadow: 0 0 0 0 rgba(31,157,99,0.45); } 70% { box-shadow: 0 0 0 6px rgba(31,157,99,0); } 100% { box-shadow: 0 0 0 0 rgba(31,157,99,0); } }

/* =========================================================
   ERWEITERUNGEN – Icons, Mockups, Standortbilder, Carousel
   ========================================================= */

/* --- Keine automatischen Trennungen in Überschriften --- */
h1, h2, h3 { hyphens: none !important; overflow-wrap: break-word; }

/* --- Icon-SVG in Karten (ersetzt Counter 01/02/03) --- */
.card .icon.icon-svg {
  display: flex !important; align-items: center !important; justify-content: center !important;
  width: 52px !important; height: 52px !important;
  background: rgba(239,165,0,0.12) !important;
  border-radius: 14px !important; margin-bottom: 14px; color: var(--gold-dark);
}
.card .icon.icon-svg::before { content: none !important; }
.card .icon.icon-svg svg { width: 26px; height: 26px; flex-shrink: 0; }

/* --- Schritt-Icons (how-step-num mit SVG statt Ziffer) --- */
.how-step-num.step-icon {
  font-size: 0 !important;
  display: flex; align-items: center; justify-content: center;
}
.how-step-num.step-icon svg { width: 26px; height: 26px; color: var(--gold); }

/* --- Standort-Bilder-Paar im Split-Bereich --- */
.split-locs { display: flex; flex-direction: column; gap: 12px; }
.loc-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.loc-img { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 1/1; background: var(--navy); }
.loc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-2), var(--navy)); }
.loc-img-city { font-size: 18px; font-weight: 900; color: rgba(255,255,255,0.2); letter-spacing: 2px; }
.loc-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,33,69,0.88), transparent);
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 18px 10px 8px; text-align: center;
}

/* --- WhatsApp Chat Phone Screen --- */
.hp-screen--wa { padding: 0 !important; gap: 0 !important; display: flex !important; flex-direction: column !important; overflow: hidden; }
.hp-wa-header { background: #075e54; padding: 8px 10px; display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.hp-wa-avatar { width: 28px; height: 28px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 11px; color: #fff; flex-shrink: 0; }
.hp-wa-info { flex: 1; }
.hp-wa-name { font-size: 10px; font-weight: 800; color: #fff; line-height: 1.2; }
.hp-wa-status { font-size: 8px; color: rgba(255,255,255,0.75); }
.hp-wa-body { flex: 1; background: #e5ddd5; padding: 8px 8px; display: flex; flex-direction: column; gap: 5px; overflow: hidden; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23c0b8ad' stroke-width='0.5' opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3C/g%3E%3C/svg%3E"); }
.hp-wa-msg { max-width: 88%; border-radius: 7px; padding: 5px 8px; font-size: 9.5px; line-height: 1.4; color: #333; box-shadow: 0 1px 2px rgba(0,0,0,0.12); }
.hp-wa-msg-in { background: #fff; align-self: flex-start; border-radius: 0 7px 7px 7px; }
.hp-wa-msg-out { background: #dcf8c6; align-self: flex-end; border-radius: 7px 0 7px 7px; }
.hp-wa-msg-time { font-size: 7.5px; color: #999; text-align: right; margin-top: 1px; }
.hp-wa-input-row { background: #f0f0f0; padding: 5px 8px; display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.hp-wa-input-box { flex: 1; background: #fff; border-radius: 20px; padding: 4px 9px; font-size: 9px; color: #999; }

/* --- Calendar Phone Screen --- */
.hp-screen--cal { padding: 0 !important; gap: 0 !important; display: flex !important; flex-direction: column !important; overflow: hidden; background: #f5f5f5 !important; }
.hp-cal-topbar { background: var(--navy); padding: 8px 10px 6px; text-align: center; }
.hp-cal-app-name { font-size: 10px; font-weight: 800; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.hp-cal-monthrow { display: flex; align-items: center; justify-content: space-between; background: var(--navy-2); padding: 6px 10px; }
.hp-cal-mname { font-size: 11px; font-weight: 800; color: #fff; }
.hp-cal-wd-row { display: grid; grid-template-columns: repeat(7,1fr); background: rgba(15,33,69,0.06); padding: 4px 8px; }
.hp-cal-wd { font-size: 7.5px; font-weight: 800; text-align: center; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.3px; }
.hp-cal-body { padding: 4px 8px 8px; flex: 1; }
.hp-cal-week { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 2px; }
.hp-cal-d { width: 100%; aspect-ratio: 1/1; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8.5px; font-weight: 600; color: var(--text); }
.hp-cal-d--empty { background: none; }
.hp-cal-d--past { color: #ccc; }
.hp-cal-d--open { background: rgba(31,157,99,0.18); color: #1f9d63; font-weight: 800; cursor: pointer; }
.hp-cal-d--knapp { background: rgba(212,146,10,0.2); color: var(--gold-dark); font-weight: 800; }
.hp-cal-d--full { background: rgba(194,65,90,0.15); color: #c2415a; font-weight: 700; }
.hp-cal-legend { display: flex; gap: 8px; padding: 6px 8px; background: #fff; }
.hp-cal-legend-item { display: flex; align-items: center; gap: 3px; font-size: 7.5px; color: var(--text-mute); }
.hp-cal-legend-dot { width: 7px; height: 7px; border-radius: 50%; }

/* --- Job Listing Phone Screen --- */
.hp-screen--jobs { padding: 0 !important; gap: 0 !important; display: flex !important; flex-direction: column !important; overflow: hidden; background: #f0f4fa !important; }
.hp-jobs-topbar { background: var(--navy); padding: 8px 10px 6px; }
.hp-jobs-label { font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.hp-jobs-title { font-size: 12px; font-weight: 900; color: #fff; line-height: 1.2; }
.hp-jobs-sub { font-size: 8.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hp-job-list { display: flex; flex-direction: column; gap: 7px; padding: 10px 8px; flex: 1; overflow: hidden; }
.hp-job-card { background: #fff; border-radius: 10px; padding: 8px 10px; box-shadow: 0 1px 6px rgba(15,33,69,0.08); border-left: 3px solid var(--gold); }
.hp-job-badge { display: inline-block; font-size: 7.5px; font-weight: 800; padding: 2px 6px; border-radius: 9999px; margin-bottom: 3px; }
.hp-job-badge--neu { background: rgba(31,157,99,0.15); color: #1f9d63; }
.hp-job-badge--dual { background: rgba(47,95,214,0.12); color: #2f5fd6; }
.hp-job-badge--frei { background: var(--gold-soft); color: var(--gold-dark); }
.hp-job-title { font-size: 11px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.hp-job-firm { font-size: 9px; color: var(--text-soft); margin-top: 1px; }
.hp-job-type { font-size: 8.5px; color: var(--text-mute); margin-top: 3px; }

/* --- Partner Logos Phone Screen --- */
.hp-screen--partner { padding: 0 !important; gap: 0 !important; display: flex !important; flex-direction: column !important; overflow: hidden; background: #f3f7f7 !important; }
.hp-partner-topbar { background: var(--navy); padding: 8px 10px 10px; }
.hp-partner-label { font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.hp-partner-title { font-size: 13px; font-weight: 900; color: #fff; }
.hp-partner-sub { font-size: 9px; color: rgba(255,255,255,0.6); margin-top: 1px; }
.hp-partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 10px 8px; flex: 1; overflow: hidden; }
.hp-partner-chip { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px 6px; text-align: center; font-size: 8.5px; font-weight: 700; color: var(--navy); display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(15,33,69,0.06); }
.hp-partner-chip--wide { grid-column: span 2; font-size: 9px; }

/* --- Job Carousel Auto-Scroll --- */
.stellen-strip {
  animation: stellenScroll 30s linear infinite;
}
.stellen-strip:hover { animation-play-state: paused; }
@keyframes stellenScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.stellen-strip--wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* --- Merkliste teilen Button --- */
.merk-share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--navy); color: #fff;
  border-radius: 9999px; font-size: 13px; font-weight: 700;
  border: none; cursor: pointer; transition: background 0.2s;
  margin-top: 12px;
}
.merk-share-btn:hover { background: var(--navy-2); }
.merk-share-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 10px 20px; border-radius: 9999px;
  font-size: 14px; font-weight: 600; opacity: 0; transition: opacity 0.3s, transform 0.3s;
  z-index: 999; pointer-events: none;
}
.merk-share-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* --- Partner Portal: Ansprechpartner --- */
.ap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
@media (max-width: 760px) { .ap-grid { grid-template-columns: 1fr; } }
.ap-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(15,33,69,0.06); }
.ap-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top center; display: block; }
.ap-body { padding: 16px 18px 18px; }
.ap-topic { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.ap-name { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.ap-contacts { display: flex; flex-direction: column; gap: 5px; }
.ap-contact { font-size: 12.5px; color: var(--text-soft); display: flex; align-items: center; gap: 6px; }
.ap-contact a { color: var(--text-soft); text-decoration: none; }
.ap-contact a:hover { color: var(--gold-dark); }

/* --- Partner Portal: NESTplay Mockup Block --- */
.np-promo { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 100%); border-radius: 18px; padding: 32px; display: flex; align-items: center; gap: 32px; margin-bottom: 28px; }
@media (max-width: 760px) { .np-promo { flex-direction: column; gap: 18px; padding: 22px; } }
.np-promo-text { flex: 1; }
.np-promo-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.np-promo-h { font-size: 22px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.np-promo-h em { font-style: normal; color: var(--gold); }
.np-promo-p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 16px; }
.np-promo-phone { width: 160px; flex-shrink: 0; }
.np-mini-phone { width: 140px; background: #0a0b10; border: 1.5px solid rgba(255,255,255,0.18); border-radius: 28px; padding: 8px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.np-phone-screen { background: #EAF0FB; border-radius: 22px; overflow: hidden; }
.np-phone-head { background: var(--navy); padding: 20px 10px 10px; }
.np-phone-pl { font-size: 7px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.np-phone-h4 { font-size: 11px; font-weight: 900; color: #fff; margin: 0; }
.np-phone-body { padding: 9px; }
.np-phone-q { background: #fff; border-radius: 8px; padding: 7px 9px; font-size: 8.5px; font-weight: 700; color: #0c1829; line-height: 1.35; margin-bottom: 6px; }
.np-phone-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.np-phone-opt { border-radius: 7px; padding: 8px 5px; text-align: center; font-size: 7.5px; font-weight: 800; color: #fff; }
.np-o-a { background: #e63946; } .np-o-b { background: var(--gold); color: var(--navy); } .np-o-c { background: #0096c7; } .np-o-d { background: #6d28d9; }

/* --- Filterbarer Info-Bereich (Partner Portal) --- */
.info-filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.info-filter-btn { padding: 7px 16px; border-radius: 9999px; border: 1.5px solid var(--line); background: #fff; font-size: 13px; font-weight: 600; color: var(--navy); cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s; font-family: var(--font); }
.info-filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.info-filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.info-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0; overflow: hidden; box-shadow: 0 1px 6px rgba(15,33,69,0.05); transition: box-shadow 0.2s; display: flex; flex-direction: column; }
.info-card:hover { box-shadow: 0 4px 16px rgba(15,33,69,0.12); transform: translateY(-1px); }
.info-card[hidden] { display: none; }
.info-card-hd { padding: 13px 16px; display: flex; align-items: center; gap: 10px; }
.info-card-hd-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card-hd-icon svg { width: 17px; height: 17px; color: #fff; }
.info-card-hd-label { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }
.info-card--koop .info-card-hd { background: var(--navy); }
.info-card--play .info-card-hd { background: linear-gradient(135deg, #c47d00 0%, #EFA500 100%); }
.info-card--messe .info-card-hd { background: linear-gradient(135deg, #1a8550 0%, #1f9d63 100%); }
.info-card--netz .info-card-hd { background: linear-gradient(135deg, #4a3fc5 0%, #6c5fd3 100%); }
.info-card-body-wrap { padding: 14px 16px 16px; flex: 1; }
.info-card-title { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.info-card-text { font-size: 12.5px; color: var(--text-soft); line-height: 1.65; margin: 0; }

/* --- Terminbuchung Di/Do-Kalender --- */
.tb-cal-wrap { margin-bottom: 20px; background: #fff; border: 1.5px solid var(--line); border-radius: 18px; overflow: hidden; }
.tb-cal-nav { display: flex; align-items: center; justify-content: space-between; background: var(--navy); padding: 13px 16px; }
.tb-cal-month-label { font-size: 15px; font-weight: 800; color: #fff; }
.tb-cal-btn { background: rgba(255,255,255,0.12); border: none; border-radius: 10px; width: 34px; height: 34px; cursor: pointer; color: #fff; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 0.2s; font-family: var(--font); }
.tb-cal-btn:hover { background: rgba(239,165,0,0.35); }
.tb-cal-body { padding: 12px 12px 14px; }
.tb-cal-wd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.tb-cal-wd { text-align: center; font-size: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; padding: 6px 0; letter-spacing: 0.5px; background: var(--bg-light); border-radius: 8px; }
.tb-cal-weeks { display: flex; flex-direction: column; gap: 8px; }
.tb-cal-week { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tb-cal-day {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 10px; border-radius: 12px; cursor: pointer; border: 2px solid transparent;
  transition: all 0.17s; font-family: var(--font); min-height: 76px; position: relative;
}
.dido-n { font-size: 26px; font-weight: 900; line-height: 1; color: inherit; }
.dido-mon { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: inherit; opacity: 0.65; margin-top: 2px; }
.dido-rest { font-size: 9.5px; font-weight: 800; margin-top: 5px; padding: 2px 7px; border-radius: 20px; background: rgba(255,255,255,0.35); color: inherit; }
.dido-rest--full { background: rgba(194,65,90,0.2); }
.tb-cal-day--empty { background: none; border: none; cursor: default; min-height: 76px; }
.tb-cal-day--past { background: #f4f5f7; border-color: transparent; color: #c8ccd6; cursor: not-allowed; }
.tb-cal-day--available { background: #e6f7ef; border-color: #a8dfc0; color: #1a8550; }
.tb-cal-day--available:hover { background: #1f9d63; border-color: #1f9d63; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(31,157,99,0.25); }
.tb-cal-day--knapp { background: #fef3d0; border-color: #f5d98a; color: #b06800; }
.tb-cal-day--knapp:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(239,165,0,0.3); }
.tb-cal-day--full { background: #fdeaed; border-color: #f5b0bc; color: #c2415a; cursor: not-allowed; }
.tb-cal-day--selected { background: var(--navy) !important; border-color: var(--navy) !important; color: var(--gold) !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(15,33,69,0.25); }
.tb-cal-day--selected .dido-mon { opacity: 1; color: rgba(239,165,0,0.75); }
.tb-cal-legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }
.tb-cal-legend-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-mute); font-weight: 600; }
.tb-cal-legend-dot { width: 10px; height: 10px; border-radius: 4px; }
.tb-cal-legend-dot--free { background: #e6f7ef; border: 1.5px solid #1f9d63; }
.tb-cal-legend-dot--knapp { background: #fef3d0; border: 1.5px solid #b06800; }
.tb-cal-legend-dot--full { background: #fdeaed; border: 1.5px solid #c2415a; }
