    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* Primärfarben */
      --color-primary:        #1e8a8a;
      --color-primary-light:  #2fa8a8;
      --color-primary-dark:   #156666;
      --color-primary-xlight: #e6f4f4;
      --color-accent:         #f0a030;
      --color-accent-light:   #f5b354;
      --color-accent-dark:    #c47f1e;
      /* Neutralpalette */
      --color-dark:           #1a2e2e;
      --color-text:           #374151;
      --color-text-muted:     #6b7280;
      --color-border:         #e5e7eb;
      --color-bg:             #ffffff;
      --color-surface:        #f9fafb;
      --color-surface-alt:    #f5f9f9;
      /* Semantisch */
      --color-success:        #2da06a;
      --color-error:          #d94040;
      --color-warning:        #f0a030;
      /* Schatten */
      --shadow-sm:  0 1px 2px rgba(0,0,0,0.05);
      --shadow-md:  0 4px 6px rgba(0,0,0,0.07);
      --shadow-lg:  0 10px 15px rgba(0,0,0,0.1);
      --shadow-focus: 0 0 0 3px rgba(30,138,138,0.25);
      /* Radien */
      --radius-sm:   4px;
      --radius-md:   8px;
      --radius-lg:   12px;
      --radius-full: 9999px;
      /* Altnamen als Aliase für Rückwärtskompatibilität */
      --teal:        var(--color-primary);
      --teal-dark:   var(--color-primary-dark);
      --teal-light:  var(--color-primary-xlight);
      --accent:      var(--color-accent);
      --accent-dark: var(--color-accent-dark);
      --text-dark:   var(--color-dark);
      --text-mid:    var(--color-text-muted);
      --text-light:  var(--color-text-muted);
      --bg:          var(--color-bg);
      --bg-soft:     var(--color-surface);
      --border:      var(--color-border);
      --radius:      var(--radius-md);
      --shadow:      var(--shadow-md);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: Inter, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 17px;
      line-height: 1.65;
      color: var(--text-dark);
      background: var(--bg);
    }

    img { max-width: 100%; display: block; }
    a { color: var(--teal); text-decoration: none; }
    a:hover { text-decoration: underline; }
    a:focus-visible, button:focus-visible, .btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-sm); }

    /* ===== SKIP TO CONTENT ===== */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .skip-link:focus {
      position: fixed;
      top: 0;
      left: 0;
      width: auto;
      height: auto;
      padding: 12px 24px;
      background: var(--color-primary-dark);
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      z-index: 10000;
      border-radius: 0 0 var(--radius-sm) 0;
      text-decoration: none;
      box-shadow: var(--shadow-md);
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 {
      color: var(--text-dark);
    }
    h1 { font-size: clamp(2rem, 4vw, 2.25rem); font-weight: 700; line-height: 1.15; }
    h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; line-height: 1.2; }
    h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.25; }
    h4 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
    .lead { font-size: 1.125rem; line-height: 1.7; color: var(--text-mid); max-width: 640px; }
    .section-label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-block;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
      border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }
    .btn-primary:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
      text-decoration: none;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(240,160,48,0.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--teal-dark);
      border-color: var(--teal-dark);
    }
    .btn-outline:hover {
      background: var(--teal-light);
      text-decoration: none;
    }

    /* ===== HEADER / NAV ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(8px);
    }
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--teal-dark);
      letter-spacing: -0.02em;
    }
    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--teal-dark);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .logo-icon svg { width: 24px; height: 24px; }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-mid);
      font-weight: 500;
      font-size: 0.95rem;
    }
    .nav-links a:hover { color: var(--teal-dark); text-decoration: none; }
    .nav-cta { display: flex; gap: 12px; align-items: center; }

    /* ===== HAMBURGER MENÜ ===== */
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: var(--radius-sm);
      color: var(--color-dark);
      line-height: 0;
    }
    .nav-hamburger:focus-visible { box-shadow: var(--shadow-focus); outline: none; }
    .nav-hamburger svg { width: 24px; height: 24px; transition: opacity 0.2s; }
    .nav-hamburger .icon-close { display: none; }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; align-items: center; }

      /* Mobile Nav Overlay */
      .nav-mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        border-bottom: 1px solid var(--color-border);
        padding: 16px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        z-index: 99;
      }
      .nav-mobile-open .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--color-border);
        color: var(--color-dark);
      }
      .nav-mobile-open .nav-links li:last-child a { border-bottom: none; }
      .nav-mobile-open .nav-hamburger .icon-open  { display: none; }
      .nav-mobile-open .nav-hamburger .icon-close { display: block; }
    }

    /* ===== HERO ===== */
    .hero {
      padding: 80px 0 100px;
      background: linear-gradient(160deg, var(--bg) 0%, var(--teal-light) 100%);
      overflow: hidden;
      position: relative;
    }
    .hero::after {
      content: '';
      position: absolute;
      right: -120px;
      top: -80px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(30,138,138,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal-light);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 6px 16px 6px 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--teal-dark);
      margin-bottom: 20px;
    }
    .hero-badge-dot {
      width: 8px; height: 8px;
      background: var(--teal);
      border-radius: 50%;
    }
    .hero h1 { margin-bottom: 20px; }
    .hero h1 span { color: var(--teal); }
    .hero .lead { margin-bottom: 36px; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-visual {
      position: relative;
    }
    .hero-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 28px;
      border: 1px solid var(--border);
    }
    .hero-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .hero-card-name { font-weight: 600; font-size: 0.95rem; }
    .hero-card-role { font-size: 0.8rem; color: var(--text-light); }
    .task-list { display: flex; flex-direction: column; gap: 10px; }
    .task-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--bg-soft);
      font-size: 0.9rem;
    }
    .task-done { color: var(--text-light); }
    .task-done .task-icon { color: #4caf7d; }
    .task-active { background: var(--teal-light); color: var(--teal-dark); font-weight: 500; }
    .task-active .task-icon { color: var(--teal); }
    .task-icon { font-size: 1rem; flex-shrink: 0; }
    .time-saved {
      margin-top: 20px;
      padding: 12px 16px;
      background: linear-gradient(90deg, rgba(240,160,48,0.12), rgba(240,160,48,0.05));
      border-left: 3px solid var(--accent);
      border-radius: 0 8px 8px 0;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--accent-dark);
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
    }

    /* ===== PROBLEM ===== */
    .problem {
      padding: 80px 0;
      background: var(--text-dark);
      color: #fff;
    }
    .problem h2 { color: #fff; margin-bottom: 16px; }
    .problem .lead { color: rgba(255,255,255,0.72); margin-bottom: 48px; }
    .problem .section-label { color: var(--accent); }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .pain-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 24px;
    }
    .pain-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 8px;
    }
    .pain-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

    /* ===== FEATURES ===== */
    .features {
      padding: 100px 0;
      background: var(--bg);
    }
    .features-header { text-align: center; margin-bottom: 64px; }
    .features-header h2 { margin-bottom: 16px; }
    .features-header .lead { margin: 0 auto; text-align: center; }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }
    .feature-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 32px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .feature-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
    }
    .feature-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.6rem;
    }
    .feature-icon-1 { background: rgba(30,138,138,0.12); }
    .feature-icon-2 { background: rgba(240,160,48,0.12); }
    .feature-icon-3 { background: rgba(76,175,125,0.12); }
    .feature-icon-4 { background: rgba(103,58,183,0.12); }
    .feature-card h3 { margin-bottom: 12px; }
    .feature-card p { color: var(--text-mid); font-size: 0.95rem; }
    .feature-list {
      margin-top: 16px;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--text-mid);
    }
    .feature-list li::before {
      content: "✓";
      color: var(--teal);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ===== HOW IT WORKS ===== */
    .how {
      padding: 100px 0;
      background: var(--teal-light);
    }
    .how-header { text-align: center; margin-bottom: 64px; }
    .how-header h2 { margin-bottom: 16px; }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 32px;
      position: relative;
    }
    .step {
      text-align: center;
      padding: 0 16px;
    }
    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--teal-dark);
      color: #fff;
      font-size: 1.25rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .step h3 { margin-bottom: 8px; }
    .step p { color: var(--text-mid); font-size: 0.95rem; }

    /* ===== MISSION ===== */
    .mission {
      padding: 100px 0;
      background: var(--bg);
    }
    .mission-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .mission-quote {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.4;
      color: var(--teal-dark);
      border-left: 4px solid var(--accent);
      padding-left: 24px;
      margin-bottom: 32px;
    }
    .mission p { color: var(--text-mid); margin-bottom: 16px; }
    .mission-visual { display: flex; flex-direction: column; gap: 20px; }
    .stat-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 28px;
    }
    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--teal-dark);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { font-size: 0.9rem; color: var(--text-mid); }

    @media (max-width: 768px) {
      .mission-inner { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ===== VALUES ===== */
    .values {
      padding: 100px 0;
      background: var(--bg-soft);
    }
    .values-header { text-align: center; margin-bottom: 64px; }
    .values-header h2 { margin-bottom: 16px; }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 24px;
    }
    .value-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
    }
    .value-emoji { font-size: 2rem; margin-bottom: 12px; }
    .value-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .value-card p { font-size: 0.875rem; color: var(--text-mid); }

    /* ===== TEAM ===== */
    .team {
      padding: 100px 0;
      background: var(--teal-light);
    }
    .team-header { text-align: center; margin-bottom: 64px; }
    .team-header h2 { margin-bottom: 16px; }
    .team-inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 72px;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .team-photo-wrap { text-align: center; }
    .team-photo {
      width: 240px;
      height: 240px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid #fff;
      box-shadow: var(--shadow-lg);
      display: block;
      margin: 0 auto;
    }
    .team-photo-fallback {
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      font-weight: 800;
      color: #fff;
      margin: 0 auto;
      box-shadow: var(--shadow-lg);
      border: 5px solid #fff;
    }
    .team-bio h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--color-dark);
    }
    .team-role {
      font-size: 1rem;
      color: var(--color-primary);
      font-weight: 600;
      margin-bottom: 20px;
      display: block;
    }
    .team-bio p {
      color: var(--color-text);
      margin-bottom: 14px;
      font-size: 1rem;
      line-height: 1.7;
    }
    .team-trust {
      background: #fff;
      border-left: 4px solid var(--color-accent);
      padding: 16px 20px;
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      font-size: 1rem;
      color: var(--color-primary-dark);
      font-style: italic;
      font-weight: 500;
      margin: 24px 0 20px;
    }
    .team-linkedin {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-primary);
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
    }
    .team-linkedin:hover { text-decoration: underline; }
    .team-linkedin svg { width: 18px; height: 18px; flex-shrink: 0; }

    @media (max-width: 768px) {
      .team-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .team-trust { text-align: left; }
      .team-linkedin { justify-content: center; }
    }

    /* ===== FAQ ===== */
    .faq {
      padding: 100px 0;
      background: var(--bg);
    }
    .faq-header { text-align: center; margin-bottom: 64px; }
    .faq-header h2 { margin-bottom: 16px; }
    .faq-header .lead { margin: 0 auto; text-align: center; }
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 32px;
    }
    .faq-item h3 {
      font-size: 1.05rem;
      margin-bottom: 12px;
      color: var(--text-dark);
    }
    .faq-item p { font-size: 0.95rem; color: var(--text-mid); margin: 0; }
    .faq-item p + p { margin-top: 8px; }

    /* ===== VISION ===== */
    .vision {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--teal-dark) 0%, #0f4a4a 100%);
      color: #fff;
      text-align: center;
    }
    .vision .section-label { color: rgba(255,255,255,0.6); }
    .vision h2 { color: #fff; margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
    .vision .lead { color: rgba(255,255,255,0.75); margin: 0 auto 48px; text-align: center; }
    .vision-goals {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
    }
    .vision-goal {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50px;
      padding: 10px 20px;
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
    }

    /* ===== CTA ===== */
    .cta {
      padding: 100px 0;
      background: var(--bg);
      text-align: center;
    }
    .cta h2 { margin-bottom: 16px; }
    .cta .lead { margin: 0 auto 40px; text-align: center; }
    .cta-form {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 520px;
      margin: 0 auto 16px;
    }
    .cta-form input {
      flex: 1;
      min-width: 200px;
      padding: 14px 20px;
      border: 2px solid var(--border);
      border-radius: 50px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s;
      color: var(--text-dark);
      background: var(--bg-soft);
    }
    .cta-form input:focus { border-color: var(--teal); background: #fff; }
    .cta-form input::placeholder { color: var(--text-light); }
    .cta-note { font-size: 0.85rem; color: var(--text-light); }
    .cta-note a { color: var(--teal); }

    /* ===== FOOTER ===== */
    footer {
      background: var(--text-dark);
      color: rgba(255,255,255,0.75);
      padding: 60px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand .logo { color: #fff; margin-bottom: 16px; }
    .footer-brand p { font-size: 0.9rem; max-width: 280px; }
    .footer-col h4 {
      color: #fff;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
    .footer-links a:hover { color: #fff; text-decoration: none; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.85rem;
    }
    .footer-bottom a { color: rgba(255,255,255,0.75); }
    .footer-bottom a:hover { color: #fff; text-decoration: none; }

    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    }

    /* ===== SWISS BADGE ===== */
    .swiss-flag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-light);
      margin-top: 12px;
    }
    .swiss-flag .flag { font-size: 1rem; }

    /* ===== BETA BANNER ===== */
    .beta-banner {
      background: #fff3cd;
      border-bottom: 3px solid var(--accent);
      padding: 12px 0;
      font-size: 0.9rem;
      color: #6d4000;
      line-height: 1.5;
    }
    .beta-banner .container {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .beta-banner-icon {
      flex-shrink: 0;
      font-size: 1.1rem;
      margin-top: 1px;
    }
    .beta-banner strong { color: #4d2d00; }
