*, *::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.95);
    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 img {
	  width: 250px;
	  height: auto;
  }
  .nav-logo span { color: var(--red); }
  .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: 80vh;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 6rem 5rem;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
  /*  color: var(--red);*/
  color: #666;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5.2rem);
    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-family: var(--sans);
    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; }
  .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;
    align-self: flex-start;
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
  .btn-secondary {
    display: inline-block;
    background: transparent;
    color: #aaa;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    padding: 0.9rem 0;
    text-decoration: none;
    margin-left: 2rem;
    border-bottom: 1px solid #555;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-secondary:hover { color: var(--white); border-color: #aaa; }
  .hero-actions { display: flex; align-items: center; }

  .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-quote {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
  }
  .hero-quote blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    border-left: 3px solid var(--red);
    padding-left: 1.8rem;
  }
  .hero-quote cite {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.2rem;
    padding-left: 1.8rem;
  }

  /* Red accent bar left */
  .hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--red);
    z-index: 10;
  }

  /* ── TRUST BAR ────────────────────────────────────────────────── */
  .trust {
    background: var(--lgray);
    padding: 2rem 5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .trust-label {
    font-size: 12px;
    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;
    align-items: center;
  }
  .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;
  }

  /* ── POSITIONING ─────────────────────────────────────────────── */
  .positioning {
    padding: 7rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .positioning-left {}
  .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(2rem, 3.5vw, 3rem);
    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-right {
    background: var(--black);
    padding: 3.5rem;
    position: relative;
  }
  .positioning-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
  }
  .pos-quote {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 2rem;
  }
  .pos-quote strong {
    color: var(--red);
    font-style: normal;
  }
  .pos-meta {
    font-size: 13px;
    color: #666;
    letter-spacing: 0.05em;
  }

  /* ── WHAT ────────────────────────────────────────────────────── */
  .what {
    background: var(--lgray);
    padding: 7rem 5rem;
  }
  .what-header {
    max-width: 600px;
    margin-bottom: 4rem;
  }
  .what-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: #ddd;
  }
  .what-item {
    background: var(--white);
    padding: 2.8rem 2.8rem;
    position: relative;
  }
  .what-item-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--lgray);
    line-height: 1;
    margin-bottom: 1rem;
    position: absolute;
    top: 1.5rem; right: 2rem;
    pointer-events: none;
  }
  .what-item-title {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }
  .what-item-body {
    font-size: 0.92rem;
    color: var(--dgray);
    line-height: 1.75;
    font-weight: 300;
  }
  .what-item-accent {
    width: 28px; height: 3px;
    background: var(--red);
    margin-bottom: 1.2rem;
  }

  /* ── AGENDA ──────────────────────────────────────────────────── */
  .agenda {
    padding: 7rem 5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
  }
  .agenda-left {}
  .agenda-right {}
  .agenda-steps { display: flex; flex-direction: column; gap: 0; }
  .agenda-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 2rem;
    padding-bottom: 0;
    position: relative;
  }
  .step-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step-num {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--red);
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .step-line {
    width: 1px;
    flex: 1;
    background: #e0e0e0;
    margin-top: 4px;
    min-height: 2.5rem;
  }
  .agenda-step:last-child .step-line { display: none; }
  .step-content {
    padding: 0.6rem 0 2.8rem;
  }
  .step-time {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mgray);
    margin-bottom: 0.35rem;
  }
  .step-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .step-body {
    font-size: 0.92rem;
    color: var(--dgray);
    line-height: 1.75;
    font-weight: 300;
  }

  /* ── HONESTY BOX ─────────────────────────────────────────────── */
  .honesty {
    background: var(--black);
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .honesty::after {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 400px; height: 400px;
    border: 1px solid rgba(200,12,9,0.15);
    border-radius: 50%;
    pointer-events: none;
  }
  .honesty::before {
    content: '';
    position: absolute;
    right: 30px; top: 30px;
    width: 260px; height: 260px;
    border: 1px solid rgba(200,12,9,0.1);
    border-radius: 50%;
    pointer-events: none;
  }
  .honesty-inner {
    max-width: 700px;
    position: relative; z-index: 2;
  }
  .honesty .section-title { color: var(--white); }
  .honesty .section-body { color: #aaa; font-weight: 300; }
  .honesty-points {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .honesty-point {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .honesty-check {
    width: 22px; height: 22px;
    background: var(--red);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }
  .honesty-check svg { width: 12px; height: 12px; }
  .honesty-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.65;
    font-weight: 300;
  }
  .honesty-text strong { color: var(--white); font-weight: 500; }

  /* ── DELIVERABLES ─────────────────────────────────────────────── */
  .deliverables {
    padding: 7rem 5rem;
    background: var(--white);
  }
  .deliverables-header { margin-bottom: 4rem; }
  .del-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e8e8e8;
  }
  .del-item {
    background: var(--white);
    padding: 2.5rem 2.2rem;
  }
  .del-icon {
    width: 44px; height: 44px;
    background: var(--red-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
  }
  .del-icon svg { width: 20px; height: 20px; }
  .del-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }
  .del-body {
    font-size: 0.9rem;
    color: var(--dgray);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── BRIDGE TO STEP 2 ─────────────────────────────────────────── */
  .bridge {
    background: var(--lgray);
    padding: 5rem;
    border-left: 4px solid var(--red);
  }
  .bridge-inner {
    max-width: 760px;
  }
  .bridge .section-label { margin-bottom: 1rem; }
  .bridge-text {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 1.5rem;
  }
  .bridge-sub {
    font-size: 1rem;
    color: var(--dgray);
    font-weight: 300;
    line-height: 1.75;
    max-width: 600px;
  }

  /* ── CTA SECTION ─────────────────────────────────────────────── */
  .cta-section {
    background: var(--red);
    padding: 7rem 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .cta-left {}
  .cta-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    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 3rem;
  }
  .form-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1.8rem;
  }
  .form-group {
    margin-bottom: 1.1rem;
  }
  .form-group label {
    display: block;
    font-size: 12px;
    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;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--red); }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .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 {
    padding: 7rem 5rem;
    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-right {
    background: var(--lgray);
    padding: 3rem;
  }
  .about-facts { display: flex; flex-direction: column; gap: 1.4rem; }
  .about-fact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .fact-dot {
    width: 3px;
    height: 3px;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 0.65rem;
  }
  .fact-text {
    font-size: 0.95rem;
    color: var(--dgray);
    line-height: 1.65;
    font-weight: 300;
  }
  .fact-text strong { color: var(--black); font-weight: 500; }

  /* ── FAQ ─────────────────────────────────────────────────────── */
  .faq {
    background: var(--lgray);
    padding: 7rem 5rem;
  }
  .faq-header { max-width: 500px; margin-bottom: 3.5rem; }
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #ddd;
  }
  .faq-item {
    background: var(--white);
    padding: 2.2rem 2.5rem;
  }
  .faq-q {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }
  .faq-a {
    font-size: 0.9rem;
    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.4rem, 2.5vw, 2rem);
    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 #222;
    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: #555;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--mgray); }

  /* ── ANIMATIONS ──────────────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    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-quote   { animation: fadeUp 0.9s ease both; animation-delay: 0.7s; }

  /* ── RESPONSIVE ──────────────────────────────────────────────── */
  @media (max-width: 860px) {
    nav { padding: 1rem 1.5rem; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 7rem 2rem 4rem; }
    .hero-right { display: none; }
    .trust { padding: 2rem; }
    .positioning, .agenda, .about, .cta-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
    .what, .deliverables, .faq, .honesty, .bridge { padding: 4rem 2rem; }
    .what-grid, .del-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; }
  }