
/* Lokale Raleway Fonts */
@font-face {
  font-family: 'Raleway';
  src: url('../../medien/fonts/raleway-v28-latin-regular.woff2') format('woff2'),
       url('../../medien/fonts/raleway-v28-latin-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../../medien/fonts/raleway-v28-latin-500.woff2') format('woff2'),
       url('../../medien/fonts/raleway-v28-latin-500.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../../medien/fonts/raleway-v28-latin-600.woff2') format('woff2'),
       url('../../medien/fonts/raleway-v28-latin-600.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../../medien/fonts/raleway-v28-latin-700.woff2') format('woff2'),
       url('../../medien/fonts/raleway-v28-latin-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../../medien/fonts/raleway-v28-latin-900.woff2') format('woff2'),
       url('../../medien/fonts/raleway-v28-latin-900.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


  :root {
    --ww-orange: #29739d;
    --ww-orange-dark: #1d5577;
    --ww-orange-light: #e8f2f8;
    --ww-dark: #1A1A1A;
    --ww-gray: #F5F4F2;
    --ww-muted: #6B6B6B;
    --ww-border: #E0DED9;
    --ww-white: #FFFFFF;
    --ww-green: #2E7D45;
    --ww-green-light: #EAF5ED;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Raleway', sans-serif;
    background: var(--ww-white);
    color: var(--ww-dark);
    line-height: 1.6;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: #202020;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo img { height: 42px; filter: brightness(0) invert(1); }
  .nav-cta {
    background: #29739d;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: #1d5577; }
  .nav-phone { font-size: 14px; color: rgba(255,255,255,0.6); }
  .nav-phone strong { color: #ffffff; }

  /* HERO */
  .hero-bg { background: #29739d; }
  .hero {
    padding: 120px 2rem 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .hero-badge span { width: 8px; height: 8px; background: rgba(255,255,255,0.8); border-radius: 50%; }
  h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 20px;
  }
  h1 em { color: #f6a318; font-style: normal; }
  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary {
    background: #ffffff;
    color: #29739d;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #e8f2f8; transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1.5px solid rgba(255,255,255,0.45);
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); }
  .hero-img { border-radius: 16px; overflow: hidden; }
  .hero-img img { width: 100%; display: block; border-radius: 16px; }

  /* TRUST BAR */
  .trust-bar {
    background: var(--ww-dark);
    padding: 20px 2rem;
  }
  .trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
  .trust-icon { width: 20px; height: 20px; background: var(--ww-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .trust-icon svg { width: 11px; height: 11px; fill: white; }

  /* SECTION LAYOUT */
  section { padding: 80px 2rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ww-orange);
    margin-bottom: 12px;
  }
  h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
  }
  h2 em { color: var(--ww-orange); font-style: normal; }
  .section-desc { font-size: 17px; color: var(--ww-muted); max-width: 560px; line-height: 1.7; margin-bottom: 48px; }

  /* BENEFITS GRID */
  .benefits { background: var(--ww-gray); }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .benefit-card {
    background: white;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--ww-border);
  }
  .benefit-num {
    width: 40px; height: 40px;
    background: var(--ww-orange);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Raleway', monospace;
    font-weight: 500;
    color: white;
    font-size: 15px;
    margin-bottom: 16px;
  }
  .benefit-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
  .benefit-card p { font-size: 14px; color: var(--ww-muted); line-height: 1.65; }

  /* SPLIT SECTION */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .split img { width: 100%; border-radius: 14px; }

  /* BUCHARTEN SECTION */
  .bucharten { background: var(--ww-dark); color: white; }
  .bucharten h2 { color: white; }
  .bucharten .section-label { color: #6bbde0; }
  .bucharten .section-desc { color: rgba(255,255,255,0.6); }
  .bucharten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 36px;
  }
  .buch-item {
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex; align-items: center; gap: 10px;
  }
  .buch-item.yes { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.9); }
  .buch-item.no { background: transparent; color: rgba(255,255,255,0.25); }
  .buch-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .buch-item.yes .buch-dot { background: #4ade80; }
  .buch-item.no .buch-dot { background: rgba(255,255,255,0.15); }

  /* COMPARISON TABLE */
  .table-wrap { overflow-x: auto; margin-top: 48px; }
  table { width: 100%; border-collapse: collapse; font-size: 14px; }
  thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: var(--ww-gray);
    border-bottom: 2px solid var(--ww-border);
  }
  thead th:first-child { border-radius: 12px 0 0 0; }
  thead th:last-child { border-radius: 0 12px 0 0; }
  thead th.highlight { background: var(--ww-orange-light); color: var(--ww-orange-dark); }
  tr:not(:last-child) td { border-bottom: 1px solid var(--ww-border); }
  td { padding: 13px 20px; vertical-align: top; color: var(--ww-dark); }
  td.feature { font-weight: 500; color: #333; }
  td.note { font-size: 13px; color: var(--ww-muted); }
  td.highlight { background: #FFFAF8; }
  .check { color: var(--ww-green); font-size: 16px; font-weight: 700; }
  .cross { color: #ccc; font-size: 16px; }
  .partial { color: #F59E0B; font-size: 13px; font-weight: 600; }
  .cat-header td {
    background: var(--ww-dark);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
  }
  .col-header-sub { font-size: 11px; font-weight: 400; color: var(--ww-muted); display: block; margin-top: 2px; }
  .col-header-sub.hl { color: var(--ww-orange); }
  .table-badge {
    display: inline-block;
    background: var(--ww-orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
    letter-spacing: 0.5px;
    vertical-align: middle;
  }

  /* LEAD FORM SECTION */
  .form-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    position: relative;
    overflow: hidden;
  }
  .form-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(41,115,157,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .form-left h2 { color: white; }
  .form-left .section-label { color: #6bbde0; }
  .form-left .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
  .form-trust {
    display: flex; flex-direction: column; gap: 12px;
    margin-top: 32px;
  }
  .form-trust-item { display: flex; align-items: center; gap: 12px; }
  .form-trust-icon {
    width: 32px; height: 32px;
    background: rgba(232,84,26,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .form-trust-icon svg { width: 16px; height: 16px; fill: var(--ww-orange); }
  .form-trust-item span { font-size: 14px; color: rgba(255,255,255,0.7); }
  .form-trust-item strong { color: white; }
  .form-right {
    background: white;
    border-radius: 20px;
    padding: 36px;
  }
  .form-right h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.4px; }
  .form-right p { font-size: 14px; color: var(--ww-muted); margin-bottom: 28px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #444; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--ww-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    color: var(--ww-dark);
    background: white;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--ww-orange); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
  .form-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--ww-orange); }
  .form-checkbox label { font-size: 13px; color: var(--ww-muted); line-height: 1.5; }
  .form-checkbox label a { color: var(--ww-orange); text-decoration: none; }
  .form-submit {
    width: 100%;
    padding: 15px;
    background: var(--ww-orange);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--ww-orange-dark); }
  .existing-user {
    display: flex; align-items: center; gap: 10px;
    background: var(--ww-orange-light);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
  }
  .existing-user input[type="checkbox"] { accent-color: var(--ww-orange); width: 16px; height: 16px; }
  .existing-user label { font-size: 13px; font-weight: 600; color: var(--ww-orange-dark); cursor: pointer; }

  /* FOOTER */
  footer {
    background: #111;
    color: rgba(255,255,255,0.5);
    padding: 32px 2rem;
    font-size: 13px;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; }
  .footer-links a:hover { color: rgba(255,255,255,0.8); }
  footer img { height: 28px; opacity: 0.6; filter: invert(1); }

  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; gap: 40px; }
    .hero-img { order: -1; }
    .benefits-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .form-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .trust-bar-inner { justify-content: center; }
    thead th, td { padding: 10px 12px; }
  }
