@charset "UTF-8";
/* =========================================================
   NEX – Die Unternehmerschmiede
   ========================================================= */

:root{
  --bg:        #F7F6F3;   /* Creme-Weiß, Original: rgb(247,246,243) */
  --bg-alt:    #F1F1F1;   /* Hellgrau, Original: rgb(241,241,241)   */
  --bg-dark:   #1A1A1A;   /* Footer / dunkle Fläche, rgb(26,26,26)  */
  --white:     #FFFFFF;
  --navy:      #233C83;   /* Button-Blau, rgb(35,60,131)            */
  --blue:      #3D90E5;   /* Hover-Blau, rgb(61,144,229)            */
  --text:      #1A1A1A;
  --muted:     #676F7E;   /* rgb(103,111,126)                       */
  --border:    #9C9C9C;   /* rgb(156,156,156)                       */
  --green:     #00D615;   /* Listen-Bullet, rgb(0,214,21)           */
  --radius-img: 12px;
  --radius-btn: 8px;
  --maxw: 1224px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5em;
  font-weight:500;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4,h5,h6{ font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-weight:700; line-height:1.2; margin:0; }
h1{ font-size:60px; }
h2{ font-size:48px; }
h3{ font-size:28px; }
h5{ font-size:20px; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- Beim Scrollen einblenden ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal-visible{ opacity:1; transform:translateY(0); }

.feature-row .feature-card:nth-child(1){ transition-delay:0s; }
.feature-row .feature-card:nth-child(2){ transition-delay:.08s; }
.feature-row .feature-card:nth-child(3){ transition-delay:.16s; }
.feature-row .feature-card:nth-child(4){ transition-delay:.24s; }

.process-grid .process-card:nth-child(1){ transition-delay:0s; }
.process-grid .process-card:nth-child(2){ transition-delay:.1s; }
.process-grid .process-card:nth-child(3){ transition-delay:.2s; }

.values-grid .value-card:nth-child(1){ transition-delay:0s; }
.values-grid .value-card:nth-child(2){ transition-delay:.1s; }
.values-grid .value-card:nth-child(3){ transition-delay:.2s; }

.founder-block .founder-item:nth-child(1){ transition-delay:0s; }
.founder-block .founder-item:nth-child(2){ transition-delay:.08s; }
.founder-block .founder-item:nth-child(3){ transition-delay:.16s; }

.wrap{ max-width: var(--maxw); margin:0 auto; padding:0 16px; }
.section{ padding: 80px 0; }
.section--bg{ background: var(--bg); }
.section--alt{ background: var(--bg-alt); }
.section--white{ background: var(--white); }
.muted{ color: var(--muted); }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background: var(--white);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:71px;
}
.brand img{ height:52px; width:auto; }

.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{ font-size:14px; font-weight:500; color: var(--text); }
.nav-links a.active{ font-weight:700; }
.nav-links a.btn-primary{ color:#fff; }

.nav-social{ display:flex; align-items:center; color: var(--text); margin-left:auto; }
.nav-social svg{ width:20px; height:20px; }

.nav-toggle{
  display:none;
  width:40px; height:40px;
  border:none; background:none;
  align-items:center; justify-content:center;
  cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:20px; height:2px; background: var(--text);
  position:relative; transition: all .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  font-size:14.5px;
  font-weight:500;
  padding:13px 20px;
  border-radius: var(--radius-btn);
  border:1px solid transparent;
  cursor:pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary{ background: var(--navy); color:#fff; border-color: rgb(0,0,0); }
.btn-primary:hover{ background: var(--blue); }
.btn-outline{ background: transparent; color:#fff; border-color: var(--border); }
.btn-outline:hover{ background: var(--blue); border-color: rgb(57,72,255); }
.btn-outline--dark{ color: var(--text); border-color: var(--text); }
.btn-outline--dark:hover{ background: var(--blue); color:#fff; border-color:#000; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:flex-start;
  background-image: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.32)), url('../assets/hero.jpg');
  background-size:cover;
  background-position:center 21%;
  color:#fff;
}
.hero .wrap{ padding-top:96px; padding-bottom:100px; width:100%; }
.hero-cta{ margin-top:48px; }
.hero-eyebrow{ display:block; color:#fff; font-size:14px; font-weight:500; letter-spacing:4px; line-height:1.3; text-transform:uppercase; margin-bottom:16px; opacity:.92; }
.hero-headline{ font-size:clamp(40px, calc(27px + 4.2vw), 74px); font-weight:700; line-height:1.0; letter-spacing:-0.025em; margin-bottom:24px; }
.hero-accent{ color: var(--blue); }
.hero .lede{ font-weight:400; font-size:18px; max-width:60ch; }
.hero .intro{ font-size:22px; font-weight:400; line-height:1.45; margin:0; max-width:60ch; }

/* ---------- Hero-Einstieg beim Laden ---------- */
.hero-eyebrow, .hero-headline, .hero-headline ~ .intro, .hero-headline ~ .hero-cta{
  opacity:0;
  transform:translateY(18px);
  animation: hero-fade-in .7s ease forwards;
}
.hero-eyebrow{ animation-delay:.05s; }
.hero-headline{ animation-delay:.15s; }
.hero-headline ~ .intro{ animation-delay:.3s; }
.hero-headline ~ .hero-cta{ animation-delay:.42s; }

.hero-ueberuns h1, .hero-ueberuns .lede, .hero-ueberuns .hero-cta{
  opacity:0;
  transform:translateY(18px);
  animation: hero-fade-in .7s ease forwards;
}
.hero-ueberuns h1{ animation-delay:.05s; }
.hero-ueberuns .lede{ animation-delay:.2s; }
.hero-ueberuns .hero-cta{ animation-delay:.35s; }

@keyframes hero-fade-in{
  to{ opacity:1; transform:translateY(0); }
}
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; }

/* ---------- Stats ---------- */
.stats-row{ display:flex; gap:64px; flex-wrap:wrap; margin-top:40px; }
.stat h2{ font-size:24px; margin-bottom:8px; }
.stat p{ color: var(--muted); }

/* ---------- Intro / positioning ---------- */
.intro-grid{ display:block; }
.intro-top{ max-width: 900px; margin-bottom:40px; }
.intro-top h2{ margin-bottom:24px; }
.intro-top h2 em{ color: var(--blue); font-style:italic; }
.intro-top p{ font-size:18px; color:#5E5E5E; max-width:75ch; }

.intro-bottom{ display:flex; gap:32px; align-items:stretch; }
.check-list{ flex:0 0 300px; display:flex; flex-direction:column; justify-content:center; }
.check-list li{ display:flex; align-items:flex-start; gap:10px; margin-bottom:16px; font-size:16px; }
.check-list li::before{ content:""; width:6px; height:6px; border-radius:50%; background: var(--green); margin-top:9px; flex:none; }

.intro-right{ flex:1; display:flex; gap:32px; align-items:stretch; }
.intro-photo{ flex:1.7; border-radius: var(--radius-img); overflow:hidden; }
.intro-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.intro-stats-col{ flex:1; display:flex; flex-direction:column; justify-content:center; gap:36px; }
.intro-stat{ border-left:3px solid var(--blue); padding-left:18px; }
.intro-stat .num{ font-size:38px; font-weight:800; line-height:1.05; margin-bottom:10px; }
.intro-stat .label{ color: var(--muted); font-size:15px; line-height:1.4; }

/* ---------- Feature icons row ---------- */
.section-heading-center{ text-align:center; max-width:640px; margin:0 auto 56px; }
.section-heading-center h2{ font-size:40px; margin-bottom:16px; }
.section-heading-center p{ color: var(--muted); font-size:18px; }

.feature-row{ display:grid; grid-template-columns: repeat(4,1fr); gap:14px; }
.feature-card{ background:#fff; border-radius:16px; padding:32px 16px; display:flex; flex-direction:column; gap:18px; }
.icon-badge{ width:56px; height:56px; border-radius:14px; background:#E9E8FD; display:flex; align-items:center; justify-content:center; }
.icon-badge img{ width:26px; height:26px; }
.feature-card h2{ font-size:22px; margin:0; white-space:nowrap; }
.feature-card p{ color: var(--muted); font-size:16px; margin:0; }

/* ---------- Process ---------- */
.process-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.process-card{ background: var(--bg); border-radius:16px; padding:32px 28px; }
.process-card .icon-badge{ margin-bottom:24px; }
.process-card h5{ margin-bottom:12px; font-size:20px; }
.process-card p{ color: var(--muted); font-size:16px; }

/* ---------- Split media ---------- */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center; }
.split-media{ border-radius: var(--radius-img); overflow:hidden; }
.split-media img{ width:100%; height:100%; object-fit:cover; }
.split-copy h2{ margin-bottom:8px; }
.split-copy .lead{ font-size:18px; margin-bottom:16px; }
.split-copy p{ margin-bottom:16px; font-size:16px; }

/* ---------- Dark panel (Mehr als ein Job) ---------- */
.dark-panel{ background: var(--blue); border-radius:24px; overflow:hidden; }
.dark-panel-grid{ display:grid; grid-template-columns: 1fr 1fr; align-items:center; }
.dark-panel-copy{ padding:64px 56px; color:#fff; }
.dark-panel-copy h2{ font-size:36px; line-height:1.2; margin-bottom:24px; }
.dark-panel-copy p{ font-size:18px; margin-bottom:15px; }
.dark-panel-media{ padding:24px; }
.dark-panel-media img{ width:100%; height:auto; aspect-ratio: 4/3; object-fit:cover; object-position: center 35%; display:block; border-radius:16px; }
.dark-panel .btn{ margin-top:24px; background:#fff; color:#1A1A1A; }
.dark-panel .btn:hover{ background: var(--navy); color:#fff; }
.dark-panel-copy .check-list{ flex:none; width:100%; }

/* ---------- Values (Über uns) ---------- */
.values-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; margin-top:48px; }
.value-card{ background: var(--bg); border-radius:16px; padding:32px 28px; }
.value-card .num{ color: var(--blue); font-size:14px; font-weight:700; margin-bottom:14px; }
.value-card h5{ margin-bottom:10px; font-size:20px; }
.value-card p{ color: var(--muted); font-size:16px; }

/* ---------- Founder ---------- */
.founder-block{ margin-top:40px; display:flex; flex-direction:column; gap:0; }
.founder-item{ padding:24px 0; border-top:1px solid #E7E7E3; }
.founder-item:last-child{ padding-bottom:0; }
.founder-block h4{ font-size:19px; margin-bottom:10px; }
.founder-block p{ color: var(--muted); font-size:16px; max-width:70ch; margin-bottom:0; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--bg-dark); color:#fff; }
.footer-top{ padding:64px 0 40px; display:grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap:32px; }
.footer-brand{ text-align:left; }
.footer-brand img{ display:block; height:40px; width:auto; margin-bottom:14px; }
.footer-brand p{ font-size:11px; }
.footer-col p:first-child{ font-weight:700; font-size:16px; margin-bottom:32px; }
.footer-col a, .footer-col p{ display:block; font-size:12px; margin-bottom:16px; color:#fff; }
.footer-col:nth-child(3) p:not(:first-child),
.footer-col:nth-child(3) a{ margin-bottom:4px; }
.footer-social{ display:flex; margin-top:8px; }
.footer-social svg{ width:22px; height:22px; }
.footer-bottom{ padding:20px 0; text-align:center; font-size:12px; }

/* ---------- Legal pages ---------- */
.legal{ padding:64px 0 100px; }
.legal .wrap{ max-width:820px; }
.legal h1{ font-size:40px; margin-bottom:32px; overflow-wrap:break-word; word-break:break-word; }
.legal h2{ font-size:24px; margin-top:40px; margin-bottom:12px; overflow-wrap:break-word; word-break:break-word; }
.legal h3{ font-size:18px; margin-top:22px; margin-bottom:8px; overflow-wrap:break-word; word-break:break-word; }
.legal p, .legal li{ font-size:16px; color: var(--muted); margin-bottom:12px; overflow-wrap:break-word; word-break:break-word; }
.legal ul{ padding-left:0; margin-bottom:16px; }
.legal li{ position:relative; padding-left:18px; }
.legal li::before{ content:"–"; position:absolute; left:0; }
.legal a{ color: var(--navy); text-decoration:underline; }
.legal strong{ color: var(--text); }

/* ---------- Datenschutz-/Cookie-Hinweis ---------- */
.privacy-notice{
  position:fixed; left:16px; right:16px; bottom:16px;
  max-width:880px; margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 16px 40px rgba(16,27,45,.16);
  padding:22px 26px;
  z-index:500;
  display:none;
}
.privacy-notice.visible{ display:block; }
.privacy-notice-inner{ display:flex; align-items:center; gap:28px; justify-content:space-between; }
.privacy-notice-text strong{ display:block; font-size:15px; color: var(--ink); margin-bottom:4px; }
.privacy-notice-text p{ font-size:13.5px; color: var(--muted); margin:0; line-height:1.5; }
.privacy-notice-actions{ display:flex; align-items:center; gap:18px; flex:none; }
.privacy-notice-actions .btn-ghost{ font-size:13.5px; white-space:nowrap; }
.privacy-notice-actions .btn{ white-space:nowrap; }

@media (max-width: 760px){
  .privacy-notice{ left:12px; right:12px; bottom:12px; padding:18px; }
  .privacy-notice-inner{ flex-direction:column; align-items:stretch; gap:14px; }
  .privacy-notice-actions{ justify-content:space-between; }
}

/* ---------- Kicker label ---------- */
.kicker{ display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color: var(--navy); }
.kicker::before{ content:""; width:20px; height:2px; background: var(--blue); display:inline-block; }

/* ---------- Kontakt ---------- */
.contact-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap:56px; }
.contact-info h2{ font-size:32px; margin-bottom:16px; }
.contact-info p{ color: var(--muted); font-size:16px; }
.contact-detail{ margin-top:36px; display:flex; flex-direction:column; gap:20px; }
.contact-detail .k{ font-size:13px; color: var(--muted); margin-bottom:4px; }
.contact-detail .v{ font-size:15px; }
.contact-detail a{ color: var(--navy); }
.avatar-circle{ width:56px; height:56px; border-radius:50%; background:#fff; border:1.5px solid #C7C7C7; box-shadow: 0 1px 3px rgba(0,0,0,.08); display:flex; align-items:center; justify-content:center; flex:none; overflow:hidden; }
.avatar-circle img{ width:62%; height:62%; object-fit:contain; }
.btn-ghost{ color: var(--navy); text-decoration:underline; text-underline-offset:2px; }
.btn-ghost:hover{ color: var(--blue); }

.form-panel{ background: var(--bg); border-radius: var(--radius-img); padding:40px; }
.field{ margin-bottom:22px; }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:8px; }
.field input, .field textarea{
  width:100%; border:1px solid #DADADA; border-radius:8px;
  background:#fff; padding:12px 14px; font-family:inherit; font-size:15px; color:var(--text);
}
.field input:focus, .field textarea:focus{ outline:none; border-color: var(--navy); }
.field textarea{ resize:vertical; min-height:90px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.consent{ display:flex; gap:10px; align-items:flex-start; margin-bottom:26px; }
.consent label{ font-size:13px; color: var(--muted); }
.form-note{ margin-top:16px; font-size:13px; color: var(--muted); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--blue); outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  h1{ font-size:40px; }
  h2{ font-size:36px; }
  .section{ padding:64px 0; }
  .hero{ min-height:auto; }
  .hero .wrap{ padding-top:64px; padding-bottom:56px; }
  .hero-cta{ margin-top:56px; }
  .fund-grid, .split, .contact-grid, .dark-panel-grid{ grid-template-columns:1fr; }
  .intro-bottom{ flex-direction:column; }
  .check-list{ flex:none; }
  .intro-right{ flex-direction:column; }
  .intro-photo img, .split-media img{ height:auto; aspect-ratio: 4/3; }
  .intro-stats-col{ flex-direction:row; flex-wrap:wrap; gap:24px; }
  .dark-panel-media{ order:-1; padding:24px; }
  .feature-row{ grid-template-columns: repeat(2,1fr); }
  .process-grid{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .stats-row, .mini-stats{ gap:32px; }
}

@media (max-width: 760px){
  .section{ padding:48px 0; }
  .hero{ min-height:calc(100svh - 71px) !important; }
  .hero:not(.hero-ueberuns) .wrap{ padding-top:120px; }
  .hero-ueberuns{ background-position: 78% 21% !important; }
  .hero .intro{ font-size:18px; }
  .hero-eyebrow{ font-size:11px; letter-spacing:1px; }
  .feature-row{ grid-template-columns:1fr; }
  .feature-card h2{ font-size:26px; }
  .intro-stats-col{ flex-direction:column; align-items:flex-start; gap:24px; }
  .legal h1{ font-size:30px; }
  .legal h2{ font-size:19px; }
  .legal h3{ font-size:16px; }
  .field input, .field textarea, .field select{ font-size:16px; }
  .label-break{ display:block; }

  .nav-links{
    position:fixed; top:71px; left:0; right:0;
    background: var(--white);
    flex-direction:column; align-items:flex-start;
    padding: 0 16px; gap:20px;
    max-height:0;
    overflow:hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav-links.open{ max-height:420px; padding:24px 16px 28px; }
  .nav-links a{ font-size:17px; }
  .nav-social{ margin-left:0; }

  .nav-overlay{
    position:fixed; inset:71px 0 0 0;
    background: rgba(16,27,45,.4);
    opacity:0; visibility:hidden;
    transition: opacity .3s ease;
    z-index:40;
  }
  .nav-overlay.open{ opacity:1; visibility:visible; }

  .nav-toggle{ display:flex; z-index:60; position:relative; }
  .nav-toggle.open span{ background:transparent; }
  .nav-toggle.open span::before{ transform: rotate(45deg); top:0; }
  .nav-toggle.open span::after{ transform: rotate(-45deg); top:0; }

  .field-row{ grid-template-columns:1fr; }
  .form-panel{ padding:24px; }
  .footer-top{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "nav legal"
      "contact contact";
    gap:32px 24px;
    padding-left:28px;
    padding-right:28px;
  }
  .footer-brand{ grid-area: brand; }
  .footer-col:nth-child(2){ grid-area: nav; }
  .footer-col:nth-child(3){ grid-area: contact; }
  .footer-col:nth-child(4){ grid-area: legal; }
  .footer-col p:first-child{ margin-bottom:18px; }
  .footer-col a, .footer-col p{ margin-bottom:12px; }
  .footer-col:nth-child(3) p:not(:first-child),
  .footer-col:nth-child(3) a{ margin-bottom:4px; }
  .footer-bottom{ padding-left:28px; padding-right:28px; }
  .dark-panel-copy{ padding:0 24px 36px; }
  .dark-panel-copy h2{ font-size:28px; }
  .contact-info h2{ font-size:26px; }
}
