*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --primary: #FBF3E8;
      --primary-light: #EEE7D8;
      --white: #15332B;
      --accent: #C46929;
      --accent-hover: #A85620;
      --on-accent: #FFFFFF;
      --cyan: #9A4516;
      --support: #F3E6D5;
      --success: #C2641C;
      --warning: #A06F37;
      --text-muted: #6F7568;
      --text-secondary: #3F5B51;
      --border: rgba(21, 51, 43, 0.13);
      --glass: rgba(255, 255, 255, 0.72);
      --glass-border: rgba(21, 51, 43, 0.13);
      --surface: #FFFFFF;
      --surface-alt: #F0E8D8;
      --radius: 14px;
      --radius-sm: 8px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--primary);
      color: var(--white);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 22px 0;
      transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
    }
    nav.scrolled {
      background: rgba(251, 243, 232, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--border);
      padding: 14px 0;
    }
    nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      font-size: 26px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--white);
      text-decoration: none;
    }
    .logo span { color: var(--accent); }
    .logo img {
      height: 110px;
      width: auto;
      display: block;
      transition: height 0.3s;
    }
    nav.scrolled .logo img { height: 50px; }
    footer .logo img { height: 70px; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      margin-left: auto;
      margin-right: 24px;
    }
    .nav-links a {
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 20px;
      background: var(--accent);
      color: var(--on-accent);
      border: none;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 36px;
      background: var(--accent);
      color: var(--on-accent);
      border: none;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.25s;
      box-shadow: 0 14px 30px rgba(196, 105, 41, 0.22);
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(196, 105, 41, 0.26);
    }
    .btn-primary svg { width: 18px; height: 18px; }

    /* ── SECTION SHARED ── */
    section { padding: 112px 0; }
    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--success);
      margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(30px, 4.4vw, 52px);
      font-weight: 750;
      line-height: 1.15;
      letter-spacing: -0.8px;
      margin-bottom: 20px;
    }
    .section-subtitle {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 640px;
      line-height: 1.7;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
      padding-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      display: block;
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 56px 56px;
      -webkit-mask-image: radial-gradient(115% 90% at 100% 0%, #000 0%, transparent 58%);
      mask-image: radial-gradient(115% 90% at 100% 0%, #000 0%, transparent 58%);
      pointer-events: none;
      z-index: 0;
    }
    .hero .container {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      gap: 56px;
      align-items: center;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }

    /* Status-Pill */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 18px 9px 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-secondary);
      box-shadow: 0 4px 16px rgba(21, 51, 43, 0.05);
      margin-bottom: 22px;
    }
    .hero-badge-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 0 rgba(196, 105, 41, 0.5);
      animation: pulse-dot 2.2s ease-out infinite;
    }
    @keyframes pulse-dot {
      0% { box-shadow: 0 0 0 0 rgba(196, 105, 41, 0.5); }
      70% { box-shadow: 0 0 0 7px rgba(196, 105, 41, 0); }
      100% { box-shadow: 0 0 0 0 rgba(196, 105, 41, 0); }
    }

    /* Hero CTAs */
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-text {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 18px 12px;
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      transition: color 0.2s, gap 0.2s;
    }
    .btn-text svg { width: 18px; height: 18px; }
    .btn-text:hover { color: var(--accent); gap: 12px; }
    .hero h1 {
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -1.4px;
      margin-bottom: 22px;
      max-width: 640px;
    }
    .hero h1 .highlight {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: var(--accent);
      text-decoration-thickness: 0.08em;
      text-underline-offset: 0.12em;
    }
    .hero h1 .mark {
      color: #FFFFFF;
      font-weight: 900;
      text-shadow: 0 2px 10px rgba(21, 51, 43, 0.38), 0 1px 2px rgba(21, 51, 43, 0.28);
    }
    .hero-sub {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 30px;
      max-width: 560px;
    }
    .hero-trust {
      margin-top: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-trust span {
      font-size: 14px;
      color: var(--text-muted);
    }
    .trust-badges {
      display: flex;
      gap: 6px;
    }
    .trust-badge {
      padding: 6px 14px;
      background: rgba(255,255,255,0.62);
      border: 1px solid var(--glass-border);
      border-radius: 50px;
      font-size: 13px;
      color: var(--text-secondary);
    }

    /* Hero Visual */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-graphic {
      width: 100%;
      max-width: 600px;
      aspect-ratio: 1;
      position: relative;
      background: none;
      border: none;
      box-shadow: none;
      overflow: visible;
    }
    .hero-graphic .ring {
      position: absolute;
      border: 3px dashed rgba(21, 51, 43, 0.16);
      border-radius: 50%;
      animation: ring-spin 70s linear infinite;
    }
    .hero-graphic .ring-1 { inset: 8%; }
    .hero-graphic .ring-2 { inset: 25%; animation-direction: reverse; animation-duration: 90s; }
    .hero-graphic .ring-3 { inset: 32%; animation-duration: 55s; }
    @keyframes ring-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes orbit {
      from { transform: rotate(var(--start)) translateX(var(--orbit)); }
      to { transform: rotate(calc(var(--start) + 360deg)) translateX(var(--orbit)); }
    }

    .hero-graphic .node {
      position: absolute;
      top: calc(50% - 38px);
      left: calc(50% - 38px);
      width: 76px;
      height: 76px;
      background: #FFFFFF;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px rgba(21, 51, 43, 0.1);
      z-index: 2;
      animation: orbit var(--duration) linear infinite, node-glow 4s ease-in-out infinite;
    }
    @keyframes node-glow {
      0%, 100% { box-shadow: 0 10px 26px rgba(21, 51, 43, 0.10); }
      50% { box-shadow: 0 16px 38px rgba(196, 105, 41, 0.30); }
    }
    .hero-graphic .node svg {
      width: 34px;
      height: 34px;
      color: var(--success);
      animation: node-bob 3.6s ease-in-out infinite;
    }
    @keyframes node-bob {
      0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
      50% { transform: translateY(-5px) rotate(3deg) scale(1.07); }
    }
    /* Äußere Bahn — 3 Symbole, gleichmäßig 120° versetzt, synchron */
    .hero-graphic .node:nth-child(4) { --start: -90deg; --orbit: 250px; --duration: 115s; }
    .hero-graphic .node:nth-child(5) { --start: 30deg;  --orbit: 250px; --duration: 115s; }
    .hero-graphic .node:nth-child(6) { --start: 150deg; --orbit: 250px; --duration: 115s; }
    /* Innere Bahn — 2 Symbole, 180° versetzt, synchron (gegenläufig) */
    .hero-graphic .node:nth-child(7) { --start: 0deg;   --orbit: 150px; --duration: 95s; animation-direction: reverse; }
    .hero-graphic .node:nth-child(8) { --start: 180deg; --orbit: 150px; --duration: 95s; animation-direction: reverse; }
    .hero-graphic .node:nth-child(4) svg { animation-delay: -0.4s; animation-duration: 4.1s; }
    .hero-graphic .node:nth-child(5) svg { animation-delay: -1.6s; animation-duration: 3.2s; }
    .hero-graphic .node:nth-child(6) svg { animation-delay: -2.4s; animation-duration: 4.6s; }
    .hero-graphic .node:nth-child(7) svg { animation-delay: -0.9s; animation-duration: 3.8s; }
    .hero-graphic .node:nth-child(8) svg { animation-delay: -3.1s; animation-duration: 3.4s; }
    .hero-graphic .node:nth-child(5) { animation-delay: 0s, -1.2s; }
    .hero-graphic .node:nth-child(6) { animation-delay: 0s, -0.6s; }
    .hero-graphic .node:nth-child(7) { animation-delay: 0s, -2.1s; }
    .hero-graphic .node:nth-child(8) { animation-delay: 0s, -1.7s; }

    .hero-graphic .center-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 150px;
      height: 150px;
      background: var(--cyan);
      border-radius: 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 3;
      box-shadow: 0 18px 44px rgba(154, 69, 22, 0.25);
      animation: badge-glow 3.4s ease-in-out infinite;
    }
    @keyframes badge-glow {
      0%, 100% { box-shadow: 0 18px 44px rgba(154, 69, 22, 0.22); }
      50% { box-shadow: 0 22px 64px rgba(196, 105, 41, 0.45); }
    }
    .center-badge svg {
      width: 46px;
      height: 46px;
      color: var(--on-accent);
      margin-bottom: 6px;
      animation: badge-breathe 3.4s ease-in-out infinite;
    }
    @keyframes badge-breathe {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.09); }
    }
    .center-badge span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--on-accent); }

    /* ── PROBLEM / VERGLEICH ── */
    .problems { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .problems-header { text-align: center; max-width: 720px; margin: 0 auto; }
    .problems-header .section-subtitle { margin: 0 auto; }
    .problems .section-label {
      color: var(--success);
      font-weight: 600;
    }
    .problems .section-title {
      color: var(--white);
      font-weight: 700;
      letter-spacing: -0.2px;
    }
    .problems .section-subtitle { color: var(--text-secondary); }
    .compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }
    .compare-col {
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 34px 30px;
      background: #F9F7F1;
    }
    .compare-bad { border-top: 4px solid rgba(160, 111, 55, 0.38); }
    .compare-good { border-top: 4px solid rgba(196, 105, 41, 0.62); }
    .compare-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 24px;
    }
    .compare-bad .compare-tag {
      background: rgba(110, 92, 55, 0.1);
      color: var(--warning);
    }
    .compare-good .compare-tag {
      background: rgba(196, 105, 41, 0.1);
      color: var(--success);
    }
    .compare-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
    .compare-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 14.5px;
      font-weight: 400;
      line-height: 1.62;
      color: var(--text-secondary);
    }
    .compare-list svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 3px;
      opacity: 0.78;
      stroke-width: 1.55;
    }
    .compare-bad .compare-list svg { color: var(--warning); }
    .compare-good .compare-list svg { color: var(--success); }

    /* ── SOLUTION ── */
    .solution { position: relative; }
    .solution::before { display: none; }
    .solution-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .solution-header .section-subtitle { margin: 0 auto; }
    .solution-features {
      display: flex;
      flex-direction: column;
      gap: 56px;
      margin-top: 64px;
    }
    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      padding: 36px;
      background: rgba(255,255,255,0.56);
      border: 1px solid var(--border);
      border-radius: 24px;
    }
    .feature-row:nth-child(even) .feature-visual { order: 2; }
    .feature-visual {
      aspect-ratio: 16 / 11;
      border-radius: var(--radius);
      background: #EDF1E4;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .feature-visual::before {
      content: '';
      position: absolute;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(196, 105, 41, 0.22) 0%, transparent 70%);
    }
    .feature-visual svg { width: 76px; height: 76px; color: var(--cyan); position: relative; z-index: 1; }
    .feature-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
    .feature-step {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--success);
      margin-bottom: 10px;
    }
    .feature-text h3 {
      font-size: clamp(22px, 2.6vw, 28px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .feature-text p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.75;
    }
    .feature-list {
      list-style: none;
      margin-top: 18px;
      display: grid;
      gap: 10px;
    }
    .feature-list li {
      position: relative;
      padding-left: 26px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-secondary);
      line-height: 1.5;
    }
    .feature-list li::before {
      content: '';
      position: absolute;
      left: 3px;
      top: 7px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px rgba(196, 105, 41, 0.18);
    }

    /* ── STEPS ── */
    .steps {
      background: var(--support);
      color: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .steps .section-label { color: var(--success); }
    .steps .section-subtitle { color: var(--text-secondary); }
    .steps-header { text-align: center; margin-bottom: 64px; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 44px;
      left: 16%;
      right: 16%;
      height: 2px;
      background: linear-gradient(90deg, rgba(21, 51, 43, 0.1), rgba(21, 51, 43, 0.24), rgba(21, 51, 43, 0.1));
      opacity: 1;
    }
    .step {
      text-align: center;
      position: relative;
      padding: 0 18px;
    }
    .step-number {
      width: 88px;
      height: 88px;
      margin: 0 auto 24px;
      background: #FFFFFF;
      border: 1px solid rgba(21, 51, 43, 0.16);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      font-weight: 800;
      color: var(--success);
      position: relative;
      z-index: 2;
      box-shadow: 0 10px 26px rgba(21, 51, 43, 0.08);
    }
    .step h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .step p {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 320px;
      margin: 0 auto;
    }

    /* ── PROOF ── */
    .proof { position: relative; }
    .proof-header { text-align: center; margin-bottom: 60px; }
    .featured-testimonial {
      max-width: 840px;
      margin: 0 auto 64px;
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 56px 56px 48px;
      position: relative;
      text-align: center;
      overflow: hidden;
    }
    .featured-testimonial .quote-mark {
      font-size: 140px;
      font-weight: 800;
      color: rgba(196, 105, 41, 0.16);
      line-height: 1;
      position: absolute;
      top: 8px;
      left: 36px;
      pointer-events: none;
    }
    .featured-testimonial .badge {
      display: inline-block;
      padding: 7px 16px;
      background: rgba(196, 105, 41, 0.12);
      border: 1px solid rgba(196, 105, 41, 0.22);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      color: var(--success);
      margin-bottom: 28px;
      position: relative;
    }
    .featured-testimonial blockquote {
      font-size: clamp(20px, 2.4vw, 26px);
      color: var(--white);
      line-height: 1.55;
      font-style: italic;
      font-weight: 500;
      margin-bottom: 32px;
      position: relative;
    }
    .testimonial-author {
      font-size: 14px;
      color: var(--text-muted);
    }
    .testimonial-author strong {
      color: var(--white);
      font-weight: 600;
      display: block;
      margin-bottom: 2px;
    }

    .stats-bar {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .stat { text-align: center; }
    .stat-number {
      font-size: 36px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--success), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

    /* ── METRICS / DATEN ── */
    .proof-header { text-align: center; margin-bottom: 52px; }
    .proof-header .section-subtitle { margin: 0 auto; }
    .metrics-note {
      display: inline-block;
      margin-top: 14px;
      font-style: normal;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.3px;
      color: var(--text-muted);
      background: var(--surface-alt);
      border: 1px solid var(--border);
      padding: 5px 14px;
      border-radius: 999px;
    }
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 28px;
    }
    .metric-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
    }
    .metric-value {
      font-size: clamp(34px, 4vw, 48px);
      font-weight: 800;
      letter-spacing: -1.4px;
      line-height: 1.05;
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .metric-label {
      font-size: 14px;
      color: var(--text-secondary);
      margin-top: 10px;
      line-height: 1.5;
    }

    .dashboard {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px 32px 32px;
      box-shadow: 0 26px 60px rgba(21, 51, 43, 0.08);
    }
    .dash-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 26px;
    }
    .dash-title { font-size: 17px; font-weight: 700; display: block; }
    .dash-sub { font-size: 13px; color: var(--text-muted); }
    .dash-live {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--success);
    }
    .dash-live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 0 rgba(196, 105, 41, 0.5);
      animation: pulse-dot 2.2s ease-out infinite;
    }
    .dash-body {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }
    .dash-bars { display: grid; gap: 22px; min-width: 0; }
    .dash-bar-top {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin-bottom: 9px;
      color: var(--text-secondary);
    }
    .dash-bar-val { font-weight: 700; color: var(--white); }
    .bar-track {
      height: 10px;
      background: rgba(21, 51, 43, 0.08);
      border-radius: 999px;
      overflow: hidden;
    }
    .bar-fill {
      height: 100%;
      width: 0;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
      transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .dashboard.visible .bar-fill { width: var(--w); }
    .dash-ring {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .dash-ring svg { width: 168px; height: 168px; transform: rotate(-90deg); }
    .dash-ring circle { fill: none; stroke-width: 12; }
    .dash-ring .ring-bg { stroke: rgba(21, 51, 43, 0.10); }
    .dash-ring .ring-fg {
      stroke: var(--accent);
      stroke-linecap: round;
      stroke-dasharray: 327;
      stroke-dashoffset: 327;
      transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .dashboard.visible .dash-ring .ring-fg { stroke-dashoffset: 26; }
    .ring-center { position: absolute; text-align: center; }
    .ring-center strong {
      display: block;
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--white);
    }
    .ring-center span { font-size: 12px; color: var(--text-muted); }

    /* ── WER WIR SIND ── */
    .about-main {
      display: grid;
      grid-template-columns: 0.95fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .about-visual {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      align-items: center;
    }
    .about-photo {
      aspect-ratio: 4 / 5;
      border-radius: var(--radius);
      background: #FFFFFF;
      border: 1px dashed rgba(21, 51, 43, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--text-muted);
    }
    .about-photo:nth-child(2) { transform: translateY(36px); }
    .about-photo svg { width: 64px; height: 64px; opacity: 0.5; }
    .about-photo span { font-size: 13px; }
    .about-content .section-title { font-size: clamp(26px, 3.4vw, 38px); margin-top: 12px; }
    .about-lead {
      font-size: 18px;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .about-content p { color: var(--text-muted); line-height: 1.75; }
    .about-signature {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }
    .founder-card {
      border-left: 2px solid var(--accent);
      padding-left: 14px;
    }
    .founder-card strong { display: block; color: var(--white); font-size: 16px; }
    .founder-card span { font-size: 14px; color: var(--text-muted); }
    .values {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 72px;
      padding-top: 56px;
      border-top: 1px solid var(--border);
    }
    .value-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(196, 105, 41, 0.12);
      border: 1px solid rgba(196, 105, 41, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .value-icon svg { width: 22px; height: 22px; color: var(--success); }
    .value h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
    .value p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* ── FAQ ── */
    .faq { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .faq-header { text-align: center; margin-bottom: 48px; }
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      font-size: 17px;
      font-weight: 600;
      color: var(--white);
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--success); }
    .faq-question .icon {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
    }
    .faq-question .icon svg { width: 18px; height: 18px; color: var(--success); }
    .faq-item.open .faq-question .icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer p {
      padding-bottom: 24px;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── FINAL CTA ── */
    .final-cta {
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before { display: none; }
    .final-cta .section-title { max-width: 600px; margin: 0 auto 16px; }
    .final-cta .section-subtitle { margin: 0 auto 40px; text-align: center; }
    .final-cta .contact-alt {
      margin-top: 24px;
      font-size: 15px;
      color: var(--text-muted);
    }
    .final-cta .contact-alt a {
      color: var(--accent);
      text-decoration: none;
    }
    .final-cta .contact-alt a:hover { text-decoration: underline; }

    /* ── FOOTER ── */
    footer {
      padding: 40px 0;
      border-top: 1px solid var(--border);
    }
    footer .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      font-size: 14px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-copy {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--text-muted);
      transition: color 0.2s, border-color 0.2s;
    }
    .footer-social a:hover { color: var(--white); border-color: var(--accent); }
    .footer-social svg { width: 16px; height: 16px; }

    /* ── SCROLL ANIMATION ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .hero .container { grid-template-columns: 1fr; gap: 48px; }
      .hero-content { max-width: 640px; }
      .hero-visual { margin-top: 8px; }
      .hero-graphic { max-width: 440px; }
      .hero-graphic .center-badge { width: 138px; height: 138px; }
      .hero-graphic .node:nth-child(4) { --orbit: 198px; }
      .hero-graphic .node:nth-child(5) { --orbit: 198px; }
      .hero-graphic .node:nth-child(6) { --orbit: 198px; }
      .hero-graphic .node:nth-child(7) { --orbit: 120px; }
      .hero-graphic .node:nth-child(8) { --orbit: 120px; }
      .about-main { gap: 40px; }
      .about-photo:nth-child(2) { transform: translateY(24px); }
    }

    @media (max-width: 768px) {
      section { padding: 72px 0; }
      .compare,
      .steps-grid,
      .values {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .feature-row { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
      .feature-row:nth-child(even) .feature-visual { order: 0; }
      .about-main { grid-template-columns: 1fr; gap: 32px; }
      .about-visual { max-width: 520px; margin: 0 auto; }
      .about-photo:nth-child(2) { transform: translateY(0); }
      .about-signature { grid-template-columns: 1fr; }
      .values { margin-top: 48px; padding-top: 40px; }
      .steps-grid::before { display: none; }
      .stats-bar { gap: 32px; }
      .stat-number { font-size: 28px; }
      .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .dashboard { padding: 24px 20px 26px; }
      .dash-body { grid-template-columns: 1fr; gap: 30px; justify-items: center; }
      .dash-bars { width: 100%; }
      footer .container { flex-direction: column; text-align: center; }
      .logo img { height: 60px; }
      nav.scrolled .logo img { height: 42px; }
      .hero h1 { letter-spacing: -1.2px; }
      .hero-actions { width: 100%; }
      .hero-actions .btn-primary { width: 100%; justify-content: center; }
      .hero-graphic { max-width: 340px; }
      .hero-graphic .node { width: 54px; height: 54px; top: calc(50% - 27px); left: calc(50% - 27px); }
      .hero-graphic .node svg { width: 26px; height: 26px; }
      .hero-graphic .center-badge { width: 104px; height: 104px; border-radius: 22px; }
      .hero-graphic .center-badge svg { width: 36px; height: 36px; }
      .hero-graphic .node:nth-child(4) { --orbit: 144px; }
      .hero-graphic .node:nth-child(5) { --orbit: 144px; }
      .hero-graphic .node:nth-child(6) { --orbit: 144px; }
      .hero-graphic .node:nth-child(7) { --orbit: 86px; }
      .hero-graphic .node:nth-child(8) { --orbit: 86px; }
    }

    /* ── COOKIE PLACEHOLDER ── */
    .cookie-banner {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--primary-light);
      border-top: 1px solid var(--border);
      padding: 20px;
      z-index: 200;
    }
    .cookie-banner.show { display: block; }
    .cookie-banner .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .cookie-banner p { font-size: 14px; color: var(--text-muted); flex: 1; }
    .cookie-banner .cookie-actions { display: flex; gap: 12px; }
    .cookie-btn {
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      font-family: inherit;
      transition: all 0.2s;
    }
    .cookie-accept { background: var(--accent); color: var(--on-accent); }
    .cookie-accept:hover { background: var(--accent-hover); }
    .cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
    .cookie-decline:hover { border-color: var(--text-muted); }

    /* ── FEATURE-LINK (Mehr Informationen) ── */
    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      padding: 11px 22px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--surface);
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, gap 0.2s, box-shadow 0.2s;
    }
    .feature-link:hover {
      border-color: var(--accent);
      color: var(--accent);
      gap: 12px;
      box-shadow: 0 6px 18px rgba(196, 105, 41, 0.14);
    }
    .feature-link svg { width: 16px; height: 16px; }

    /* ── LEISTUNGS-SEITEN ── */
    .page-hero {
      padding: 150px 0 64px;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 56px 56px;
      -webkit-mask-image: radial-gradient(115% 90% at 100% 0%, #000 0%, transparent 58%);
      mask-image: radial-gradient(115% 90% at 100% 0%, #000 0%, transparent 58%);
      pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 2; }
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-secondary);
      text-decoration: none;
      margin-bottom: 24px;
      transition: gap 0.2s, color 0.2s;
    }
    .back-link:hover { color: var(--accent); gap: 12px; }
    .back-link svg { width: 16px; height: 16px; }
    .page-hero h1 {
      font-size: clamp(34px, 5vw, 56px);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.08;
      margin: 8px 0 18px;
      max-width: 760px;
    }
    .page-hero .lead {
      font-size: 18px;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 640px;
      margin-bottom: 32px;
    }
    .page-section { padding: 80px 0; }
    .detail-grid {
      display: grid;
      gap: 22px;
      max-width: 920px;
    }
    .detail-card {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 24px;
      align-items: start;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 30px 34px;
    }
    .detail-num {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(196, 105, 41, 0.10);
      border: 1px solid rgba(196, 105, 41, 0.22);
      color: var(--accent);
      font-size: 17px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .detail-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .detail-card p { font-size: 15.5px; color: var(--text-muted); line-height: 1.7; }
    @media (max-width: 640px) {
      .detail-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
    }
    .more-services {
      margin-top: 52px;
      padding-top: 34px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .more-services span { font-size: 14px; font-weight: 600; color: var(--text-muted); }
    .more-services .feature-link { margin-top: 0; }

    /* Volle-Breite Bild-Band */
    .page-band { width: 100%; line-height: 0; position: relative; }
    .page-band img {
      width: 100%;
      height: clamp(220px, 30vw, 380px);
      object-fit: cover;
      display: block;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .page-section-head { max-width: 720px; margin-bottom: 52px; }
    .page-section-head .section-title { margin-top: 10px; }
