 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red:      #c80c09;
    --red-dark: #9a0907;
    --red-light:#f5e5e5;
    --black:    #0d0d0d;
    --dgray:    #646262;
    --mgray:    #979596;
    --lgray:    #f2f2f2;
    --white:    #ffffff;
    --serif:    'Playfair Display', Georgia, serif;
    --sans:     'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--black);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }
  
    .nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
  .nav__logo-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dgray);
  border-left: 1px solid rgba(0,0,0,.12);
  padding-left: 12px;
  margin-left: 4px;
  margin-top: 5px;
}

.error {
	  color: #aa0000;
	  font-size: 14px;
  }	  

.dschutz {
	margin-bottom: 20px;
}

.dschutz input {
	width: 20px;
	margin-right: 10px;
	margin-top: 3px;
	float: left;
}

.dschutz label {
	float: left;
	width: 90%;
	display: block;
	font-size: 14px;
	line-height: 18px !important;
	color: #333;
}

.dschutz a {
	color: #aa0000;
	text-decoration: underline;
}

.dschutz a:hover {
	text-decoration: none;
}

.fehler {
	border: 1px solid #aa0000 !important;
}


  /* ── NAV ─────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 2.5rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-logo { font-family: var(--sans); font-weight: 500; font-size: 15px; color: var(--black); letter-spacing: 0.01em; text-decoration: none; }
  .nav-logo span { color: var(--red); }
  .nav-logo img {
	  width: 250px;
	  height: auto;
  }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-link { font-size: 13px; color: var(--dgray); text-decoration: none; transition: color 0.2s; }
  .nav-link:hover { color: var(--black); }
  .nav-cta { background: var(--red); color: var(--white); font-family: var(--sans); font-size: 14px; font-weight: 500; padding: 0.55rem 1.4rem; border: none; cursor: pointer; letter-spacing: 0.02em; text-decoration: none; transition: background 0.2s; }
  .nav-cta:hover { background: var(--red-dark); }

  /* ── HERO ─────────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); z-index: 10; }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 4rem 6rem 5rem;
    position: relative; z-index: 2;
  }
  .hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; color: var(--red); text-transform: uppercase; margin-bottom: 1.8rem; }

  .hero-title { font-family: var(--serif); font-size: clamp(2.8rem, 4.5vw, 4.8rem); font-weight: 900; line-height: 1.0; color: var(--white); margin-bottom: 1rem; }
  .hero-title em { font-style: italic; color: var(--red); }

  .hero-subtitle { font-size: 1.05rem; color: #aaa; line-height: 1.75; max-width: 460px; margin-bottom: 3rem; font-weight: 300; }
  .hero-subtitle strong { color: var(--white); font-weight: 500; }

  .hero-actions { display: flex; align-items: center; gap: 0; flex-wrap: wrap; gap: 0; }
  .btn-primary { display: inline-block; background: var(--red); color: var(--white); font-family: var(--sans); font-size: 15px; font-weight: 500; padding: 1.05rem 2.4rem; text-decoration: none; letter-spacing: 0.02em; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
  .btn-ghost { display: inline-block; background: transparent; color: #aaa; font-size: 14px; padding: 0.9rem 0; text-decoration: none; margin-left: 2rem; border-bottom: 1px solid #555; transition: color 0.2s, border-color 0.2s; }
  .btn-ghost:hover { color: var(--white); border-color: #aaa; }

  .hero-right { position: relative; overflow: hidden; }
  .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 80px),
                repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 80px);
    z-index: 1;
  }
  .hero-visual { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: 80%; }

  /* Stufenvisualisierung im Hero */
  .hero-stages { display: flex; flex-direction: column; gap: 1rem; }
  .hero-stage { display: flex; align-items: center; gap: 1.2rem; }
  .stage-num { width: 44px; height: 44px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
  .stage-num.dim { background: #2a2a2a; color: #555; }
  .stage-info {}
  .stage-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); font-weight: 500; }
  .stage-label.dim { color: #444; }
  .stage-title { font-size: 1rem; font-weight: 500; color: var(--white); line-height: 1.3; }
  .stage-title.dim { color: #3a3a3a; }
  .stage-sub { font-size: 0.88rem; color: #666; }
  .stage-connector { width: 2px; height: 1rem; background: #2a2a2a; margin-left: 21px; }

  /* ── TRUST BAR ─────────────────────────────────────────────── */
  .trust { background: var(--lgray); padding: 1.8rem 5rem; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
  .trust-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mgray); white-space: nowrap; }
  .trust-items { display: flex; gap: 2.5rem; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 14px; color: var(--dgray); }
  .trust-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }

  /* ── SECTIONS ─────────────────────────────────────────────── */
  section { padding: 7rem 5rem; }
  .section-label { font-size: 16px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 1.4rem; }
  .section-title { font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 700; line-height: 1.15; color: var(--black); margin-bottom: 1.5rem; }
  .section-body { font-size: 1.05rem; color: var(--dgray); line-height: 1.8; font-weight: 300; }
  .section-body + .section-body { margin-top: 1rem; }

  /* ── POSITIONING ──────────────────────────────────────────── */
  .positioning { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .dark-quote { background: var(--black); padding: 3.5rem; position: relative; }
  .dark-quote::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
  .dark-quote blockquote { font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--white); line-height: 1.55; margin-bottom: 1.5rem; }
  .dark-quote blockquote strong { color: var(--red); font-style: normal; }
  .dark-quote cite { font-size: 12px; color: #555; letter-spacing: 0.08em; font-style: normal; }

  /* ── STUFEN ───────────────────────────────────────────────── */
  .stufen-section { background: var(--lgray); }
  .stufen-intro { max-width: 680px; margin-bottom: 4rem; }
  .stufen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #d8d8d8; }
  .stufe-card { background: var(--white); padding: 0; position: relative; display: flex; flex-direction: column; }

  .stufe-header { padding: 2.2rem 2.8rem 1.5rem; position: relative; }
  .stufe-num { font-family: var(--serif); font-size: 5rem; font-weight: 900; line-height: 1; color: var(--lgray); position: absolute; top: 1.2rem; right: 2rem; pointer-events: none; }
  .stufe-badge { display: inline-block; background: var(--red); color: var(--white); font-size: 10px; font-weight: 500; padding: 0.25rem 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
  .stufe-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 0.6rem; }
  .stufe-meta { font-size: 13px; color: var(--mgray); display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .stufe-meta span { display: flex; align-items: center; gap: 0.3rem; }
  .stufe-meta span::before { content: '·'; color: var(--red); }
  .stufe-meta span:first-child::before { display: none; }

  .stufe-divider { height: 3px; background: var(--red); }

  .stufe-body { padding: 1.8rem 2.8rem 2.2rem; flex: 1; }
  .stufe-desc { font-size: 1rem; color: var(--dgray); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; }

  .stufe-ziele { margin-bottom: 1.8rem; }
  .stufe-ziele-label { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 0.7rem; }
  .stufe-ziel { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.6rem; }
  .stufe-ziel-dot { width: 16px; height: 16px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
  .stufe-ziel-dot svg { width: 9px; height: 9px; }
  .stufe-ziel-text { font-size: 0.92rem; color: var(--dgray); line-height: 1.55; font-weight: 300; }

  .stufe-inhalte { background: var(--lgray); padding: 1.2rem 1.5rem; margin-bottom: 1.5rem; }
  .stufe-inhalte-label { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dgray); margin-bottom: 0.6rem; }
  .stufe-inhalt { font-size: 0.88rem; color: var(--mgray); line-height: 1.65; }

  .stufe-footer { padding: 0 2.8rem 2.2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .stufe-price { font-size: 13px; color: var(--mgray); }
  .stufe-price strong { color: var(--black); font-size: 15px; }
  .stufe-cta { background: var(--black); color: var(--white); font-size: 13px; font-weight: 500; padding: 0.7rem 1.5rem; text-decoration: none; letter-spacing: 0.03em; transition: background 0.2s; }
  .stufe-cta:hover { background: var(--red); }

  /* ── ABLAUF ───────────────────────────────────────────────── */
  .ablauf-section { background: var(--white); }
  .ablauf-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; }
  .ablauf-steps { display: flex; flex-direction: column; }
  .ablauf-step { display: grid; grid-template-columns: 60px 1fr; gap: 0 1.8rem; }
  .step-left { display: flex; flex-direction: column; align-items: center; }
  .step-num { width: 40px; height: 40px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--white); flex-shrink: 0; }
  .step-num.neutral { background: var(--dgray); }
  .step-line { width: 1px; flex: 1; background: #e8e8e8; margin-top: 4px; min-height: 2.2rem; }
  .ablauf-step:last-child .step-line { display: none; }
  .step-content { padding: 0.4rem 0 2.5rem; }
  .step-time { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mgray); font-weight: 500; margin-bottom: 0.3rem; }
  .step-title { font-size: 1rem; font-weight: 500; color: var(--black); margin-bottom: 0.4rem; }
  .step-body { font-size: 0.9rem; color: var(--dgray); line-height: 1.7; font-weight: 300; }

  /* ── DIFFERENZIERUNG ──────────────────────────────────────── */
  .diff-section { background: var(--black); }
  .diff-section .section-title { color: var(--white); }
  .diff-section .section-body { color: #aaa; }
  .diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #222; margin-top: 3.5rem; }
  .diff-item { background: #111; padding: 2.2rem 2rem; }
  .diff-icon { width: 40px; height: 40px; background: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
  .diff-icon svg { width: 18px; height: 18px; }
  .diff-title { font-size: 0.98rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; line-height: 1.3; }
  .diff-body { font-size: 0.88rem; color: #666; line-height: 1.7; font-weight: 300; }

  /* ── VERKNÜPFUNG WORKSHOP ─────────────────────────────────── */
  .link-section { background: var(--lgray); border-left: 4px solid var(--red); }
  .link-inner { max-width: 800px; }
  .link-text { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 700; line-height: 1.4; color: var(--black); margin-bottom: 1.2rem; }
  .link-sub { font-size: 1rem; color: var(--dgray); font-weight: 300; line-height: 1.75; max-width: 620px; margin-bottom: 1.8rem; }
  .link-arrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 14px; color: var(--red); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; font-weight: 500; }
  .link-arrow:hover { border-color: var(--red); }

  /* ── CTA SECTION ──────────────────────────────────────────── */
  .cta-section { background: var(--red); display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
  .cta-title { font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 1.2rem; }
  .cta-sub { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75; font-weight: 300; margin-bottom: 0.5rem; }
  .cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 1rem; }

  .cta-form { background: var(--white); padding: 3rem; }
  .form-title { font-size: 1rem; font-weight: 500; color: var(--black); margin-bottom: 1.8rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mgray); margin-bottom: 0.4rem; }
  .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 0.9rem; font-family: var(--sans); font-size: 15px; color: var(--black); background: var(--white); border: 1px solid #d8d8d8; outline: none; transition: border-color 0.2s; appearance: none; border-radius: 0; }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
  .form-group textarea { resize: vertical; min-height: 70px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .form-submit { width: 100%; background: var(--black); color: var(--white); font-family: var(--sans); font-size: 15px; font-weight: 500; padding: 1rem; border: none; cursor: pointer; letter-spacing: 0.04em; transition: background 0.2s; margin-top: 0.5rem; }
  .form-submit:hover { background: var(--red-dark); }
  .form-privacy { font-size: 12px; color: var(--mgray); text-align: center; margin-top: 0.8rem; line-height: 1.5; }

  /* ── ABOUT ────────────────────────────────────────────────── */
  .about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .about-badge { display: inline-block; background: var(--red-light); color: var(--red); font-size: 12px; font-weight: 500; padding: 0.4rem 1rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }
  .about-facts { background: var(--lgray); padding: 2.8rem; }
  .about-fact { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.2rem; }
  .about-fact:last-child { margin-bottom: 0; }
  .fact-marker { width: 3px; height: 3px; background: var(--red); flex-shrink: 0; margin-top: 0.65rem; }
  .fact-text { font-size: 0.93rem; color: var(--dgray); line-height: 1.65; font-weight: 300; }
  .fact-text strong { color: var(--black); font-weight: 500; }

  /* ── FAQ ──────────────────────────────────────────────────── */
  .faq-section { background: var(--lgray); }
  .faq-header { max-width: 480px; margin-bottom: 3.5rem; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #d8d8d8; }
  .faq-item { background: var(--white); padding: 2rem 2.4rem; }
  .faq-q { font-size: 0.97rem; font-weight: 500; color: var(--black); margin-bottom: 0.55rem; line-height: 1.4; }
  .faq-a { font-size: 0.88rem; color: var(--dgray); line-height: 1.75; font-weight: 300; }
  .faq-a a { color: var(--red); text-decoration: none; }
  .faq-a a:hover { text-decoration: underline; }

  /* ── FINAL CTA BAR ────────────────────────────────────────── */
  .final-cta { background: var(--black); padding: 4rem 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
  .final-cta-text { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 700; color: var(--white); line-height: 1.25; }
  .final-cta-text em { font-style: italic; color: var(--red); }

  /* ── FOOTER ───────────────────────────────────────────────── */
  footer { background: var(--black); border-top: 1px solid #1a1a1a; padding: 2rem 5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-logo { font-family: var(--sans); font-weight: 500; font-size: 14px; color: var(--mgray); }
  .footer-logo span { color: var(--red); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 13px; color: #444; text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--mgray); }

  /* ── ANIMATIONS ───────────────────────────────────────────── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .hero-eyebrow { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
  .hero-title    { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
  .hero-subtitle { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
  .hero-actions  { animation: fadeUp 0.7s ease both; animation-delay: 0.55s; }
  .hero-visual   { animation: fadeUp 0.9s ease both; animation-delay: 0.7s; }

  /* ── RESPONSIVE ───────────────────────────────────────────── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 7rem 2rem 4rem; }
    .hero-right { display: none; }
    .trust { padding: 2rem; }
    section { padding: 4rem 2rem; }
    .positioning, .ablauf-grid, .about-section, .cta-section { grid-template-columns: 1fr; gap: 3rem; }
    .stufen-grid, .diff-grid, .faq-grid { grid-template-columns: 1fr; }
    .final-cta { flex-direction: column; align-items: flex-start; padding: 3rem 2rem; }
    footer { padding: 2rem; flex-direction: column; align-items: flex-start; }
    .cta-form { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; }
  }