    /* ===================================================================
       betriebslogik.de — zentrales Stylesheet
       Design-System (Tokens, Basis, Komponenten) + seitenspezifische
       Sektionen. Eine Quelle der Wahrheit für alle Seiten.
    =================================================================== */

    /* ===================================================================
       SELBST GEHOSTETE FONTS (Datenschutz + schnellerer First Paint)
       Variable woff2 unter /assets/fonts/ — keine externen Origins.
    =================================================================== */
    @font-face {
      font-family: 'DM Sans';
      font-style: normal;
      font-weight: 300 800;
      font-display: swap;
      src: url('/assets/fonts/dmsans-variable.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400 600;
      font-display: swap;
      src: url('/assets/fonts/inter-variable.woff2') format('woff2');
    }

    /* ===================================================================
       DESIGN TOKENS
       Farbschema: Navy + Logo-Grün — Marken-Anker ist das Logo
       (Navy #1F4163, Grün #7AB544). Akzent durchgängig grün.
    =================================================================== */
    :root {
      --navy:        #1F4163;
      --navy-dark:   #16304A;
      --navy-light:  #2B527A;
      --accent:      #7AB544;
      --accent-hover:#688F33;
      --accent-light:#EEF7E6;
      --accent-border:#C9E3AE;
      --gold:        #A3D86A;
      --green:       #22C55E;

      --white:       #FFFFFF;
      --off-white:   #F8FAFC;
      --gray-100:    #F1F5F9;
      --gray-200:    #E2E8F0;
      --gray-400:    #94A3B8;
      --gray-600:    #475569;
      --gray-900:    #0F172A;

      --text-primary:   #0F172A;
      --text-secondary: #334155;
      --text-muted:     #64748B;

      --font-heading: 'DM Sans', system-ui, sans-serif;
      --font-body:    'Inter', system-ui, sans-serif;

      --r-sm:  6px;
      --r-md:  10px;
      --r-lg:  16px;
      --r-xl:  24px;

      --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.09);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
      --shadow-xl: 0 16px 56px rgba(0,0,0,0.14);

      --max-w: 1160px;
      --py-section: 96px;
    }

    /* ===================================================================
       RESET & BASE
    =================================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--text-primary);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul, ol { list-style: none; }
    button { font-family: inherit; }

    /* ===================================================================
       LAYOUT UTILITIES
    =================================================================== */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-label {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.022em;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 18px;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 620px;
    }

    .section-header { margin-bottom: 56px; }

    /* ===================================================================
       BUTTONS
    =================================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 26px;
      border-radius: var(--r-md);
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 15px;
      line-height: 1;
      cursor: pointer;
      border: 2px solid transparent;
      transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
      border-color: var(--accent);
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      border-color: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(122,181,68,0.32);
    }

    .btn-secondary {
      background: transparent;
      color: var(--navy);
      border-color: var(--gray-200);
    }
    .btn-secondary:hover {
      border-color: var(--navy);
      background: var(--navy);
      color: var(--white);
    }

    .btn-ghost-light {
      background: rgba(255,255,255,0.10);
      color: var(--white);
      border-color: rgba(255,255,255,0.35);
    }
    .btn-ghost-light:hover {
      background: rgba(255,255,255,0.18);
      border-color: rgba(255,255,255,0.65);
    }

    .btn-white {
      background: var(--white);
      color: var(--accent);
      border-color: var(--white);
      font-weight: 700;
    }
    .btn-white:hover {
      background: #F0F7E9;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.14);
    }

    .btn-lg {
      padding: 17px 34px;
      font-size: 17px;
    }

    .btn-block {
      width: 100%;
      justify-content: center;
    }

    /* Icon inside button */
    .btn svg { flex-shrink: 0; }

    /* ===================================================================
       NAVIGATION
    =================================================================== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--gray-200);
      padding: 14px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .nav-logo img { height: 38px; width: auto; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
    }

    .nav-links a {
      font-family: var(--font-heading);
      font-weight: 500;
      font-size: 15px;
      color: var(--text-secondary);
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--navy); }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      color: var(--text-primary);
      border-radius: var(--r-sm);
    }
    .nav-toggle:hover { background: var(--gray-100); }

    /* Mobile drawer */
    .nav-mobile {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 190;
    }

    .nav-mobile-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
    }

    .nav-mobile-panel {
      position: absolute;
      top: 0; right: 0; bottom: 0;
      width: min(320px, 85vw);
      background: var(--white);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .nav-mobile-close {
      align-self: flex-end;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: var(--r-sm);
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .nav-mobile-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .nav-mobile-links a {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 600;
      color: var(--text-primary);
      padding: 12px 8px;
      border-radius: var(--r-sm);
      display: block;
    }
    .nav-mobile-links a:hover { background: var(--gray-100); }

    .nav-mobile-cta {
      margin-top: 12px;
    }

    .nav-mobile.open { display: block; }

    /* ===================================================================
       HERO
    =================================================================== */
    .hero {
      background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, #2B4593 100%);
      color: var(--white);
      padding: 88px 0 80px;
      position: relative;
      overflow: hidden;
    }

    /* Subtle grid overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    /* Glow orb top-right */
    .hero::after {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(122,181,68,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.8);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 5px 14px 5px 10px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(34px, 4.2vw, 54px);
      font-weight: 800;
      line-height: 1.13;
      letter-spacing: -0.025em;
      margin-bottom: 22px;
    }

    .hero-accent { color: var(--gold); }

    .hero-sub {
      font-size: 18px;
      line-height: 1.72;
      color: rgba(255,255,255,0.78);
      max-width: 510px;
      margin-bottom: 36px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 40px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: rgba(255,255,255,0.58);
      font-family: var(--font-heading);
    }

    .hero-trust-item svg { color: var(--green); flex-shrink: 0; }

    /* Hero visual — Dashboard mockup */
    .hero-visual {
      position: relative;
    }

    .dashboard-mockup {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--r-xl);
      overflow: hidden;
      padding: 20px;
    }

    .dashboard-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
    }

    .db-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
    }
    .db-dot-r { background: #FF5F57; }
    .db-dot-y { background: #FEBC2E; }
    .db-dot-g { background: #28C840; }

    .db-title {
      font-family: var(--font-heading);
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      margin-left: 4px;
    }

    /* KPI row */
    .db-kpi-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }

    .db-kpi {
      background: rgba(255,255,255,0.07);
      border-radius: var(--r-md);
      padding: 14px 12px;
    }

    .db-kpi-label {
      font-size: 10px;
      color: rgba(255,255,255,0.45);
      font-family: var(--font-heading);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .db-kpi-value {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .db-kpi-change {
      font-size: 10px;
      color: var(--green);
      margin-top: 4px;
    }

    /* Chart bars */
    .db-chart {
      background: rgba(255,255,255,0.04);
      border-radius: var(--r-md);
      padding: 14px 12px;
      margin-bottom: 12px;
    }

    .db-chart-label {
      font-size: 10px;
      color: rgba(255,255,255,0.45);
      font-family: var(--font-heading);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .db-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 56px;
    }

    .db-bar {
      flex: 1;
      background: rgba(255,255,255,0.12);
      border-radius: 3px 3px 0 0;
      transition: background 0.2s;
    }
    .db-bar.active { background: var(--accent); }
    .db-bar.accent-light { background: rgba(122,181,68,0.45); }

    /* Two-col bottom */
    .db-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .db-table {
      background: rgba(255,255,255,0.05);
      border-radius: var(--r-md);
      padding: 10px;
    }

    .db-table-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 11px;
    }
    .db-table-row:last-child { border-bottom: none; }

    .db-table-row span:first-child { color: rgba(255,255,255,0.55); }
    .db-table-row span:last-child {
      color: var(--white);
      font-weight: 600;
      font-family: var(--font-heading);
    }

    .db-status-list {
      background: rgba(255,255,255,0.05);
      border-radius: var(--r-md);
      padding: 10px;
    }

    .db-status-item {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 4px 0;
      font-size: 11px;
      color: rgba(255,255,255,0.55);
    }

    .db-status-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ===================================================================
       STATS STRIP
    =================================================================== */
    .stats-strip {
      background: var(--navy-dark);
      padding: 24px 0;
    }

    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      color: var(--white);
      text-align: center;
      padding: 8px 16px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-right: none; }

    .stat-number {
      font-family: var(--font-heading);
      font-size: 30px;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 12.5px;
      color: rgba(255,255,255,0.54);
      line-height: 1.45;
    }

    /* ===================================================================
       PROBLEM SECTION
    =================================================================== */
    .problem {
      background: var(--off-white);
      padding: var(--py-section) 0;
    }

    .problem-highlight {
      background: var(--navy);
      border-radius: var(--r-lg);
      padding: 36px 48px;
      margin-bottom: 48px;
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .problem-highlight-num {
      font-family: var(--font-heading);
      font-size: 72px;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .problem-highlight-text {
      color: var(--white);
    }

    .problem-highlight-text strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .problem-highlight-text p {
      font-size: 15px;
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
    }

    .problem-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .problem-card {
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 32px;
      border: 1px solid var(--gray-200);
      border-top: 4px solid var(--accent);
      box-shadow: var(--shadow-sm);
    }

    .problem-icon {
      width: 48px;
      height: 48px;
      background: var(--accent-light);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--accent);
    }

    .problem-card h3 {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

    .problem-card p {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ===================================================================
       SOLUTION / APPROACH
    =================================================================== */
    .solution {
      background: var(--white);
      padding: var(--py-section) 0;
    }

    .solution-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .solution-text p {
      font-size: 17px;
      line-height: 1.72;
      color: var(--text-secondary);
      margin-bottom: 20px;
    }

    .solution-promise {
      background: var(--accent-light);
      border: 1px solid var(--accent-border);
      border-radius: var(--r-md);
      padding: 18px 22px;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 16px;
      color: var(--accent);
      margin-bottom: 32px;
    }

    .solution-steps-card {
      background: var(--off-white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-lg);
      padding: 36px;
    }

    .solution-steps-title {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .solution-steps { display: flex; flex-direction: column; }

    .solution-step {
      display: flex;
      gap: 16px;
    }

    .step-track {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }

    .step-num {
      width: 36px;
      height: 36px;
      background: var(--accent);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
    }

    .step-line {
      width: 2px;
      flex: 1;
      min-height: 20px;
      background: var(--gray-200);
      margin: 4px 0;
    }

    .step-body {
      padding-top: 6px;
      padding-bottom: 24px;
    }

    .solution-step:last-child .step-body { padding-bottom: 0; }

    .step-body h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 15px;
      color: var(--text-primary);
      margin-bottom: 5px;
    }

    .step-body p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ===================================================================
       SERVICES
    =================================================================== */
    .services {
      background: var(--off-white);
      padding: var(--py-section) 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--r-lg);
      border: 1px solid var(--gray-200);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.22s, transform 0.22s;
    }

    .service-card:hover {
      box-shadow: var(--shadow-xl);
      transform: translateY(-4px);
    }

    .sc-head {
      background: var(--navy);
      padding: 28px 28px 24px;
      color: var(--white);
    }

    .sc-tag {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .sc-head h3 {
      font-family: var(--font-heading);
      font-size: 19px;
      font-weight: 700;
      line-height: 1.32;
    }

    .sc-body {
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .sc-result {
      background: var(--accent-light);
      border: 1px solid var(--accent-border);
      border-radius: var(--r-sm);
      padding: 14px 16px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 22px;
      display: flex;
      gap: 9px;
      align-items: flex-start;
      line-height: 1.5;
    }

    .sc-result svg { flex-shrink: 0; margin-top: 1px; }

    .sc-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
      flex: 1;
    }

    .sc-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.55;
    }

    .sc-features li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

    /* ===================================================================
       WHY SECTION
    =================================================================== */
    .why {
      background: var(--white);
      padding: var(--py-section) 0;
    }

    .why-inner {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
    }

    .why-left { position: sticky; top: 100px; }

    .profile-card {
      background: var(--off-white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-xl);
      padding: 36px 32px;
      text-align: center;
    }

    .profile-photo {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: var(--gray-100);
      margin: 0 auto 18px;
      overflow: hidden;
      border: 4px solid var(--white);
      box-shadow: 0 0 0 3px var(--navy);
    }

    .profile-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .profile-name {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 4px;
    }

    .profile-role {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .profile-divider {
      border: none;
      border-top: 1px solid var(--gray-200);
      margin-bottom: 20px;
    }

    .profile-contacts {
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: left;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      color: var(--text-secondary);
      padding: 10px 12px;
      border-radius: var(--r-sm);
      border: 1px solid var(--gray-200);
      background: var(--white);
      transition: border-color 0.15s, background 0.15s;
      word-break: break-all;
    }

    .contact-link:hover { border-color: var(--navy); background: var(--gray-100); }
    .contact-link svg { color: var(--navy); flex-shrink: 0; }

    /* Timeline */
    .credentials-timeline {
      display: flex;
      flex-direction: column;
      margin-bottom: 48px;
    }

    .cred-item {
      display: flex;
      gap: 18px;
      position: relative;
    }

    .cred-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 19px;
      top: 40px;
      width: 2px;
      bottom: 0;
      background: var(--gray-200);
    }

    .cred-bubble {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .cred-bubble.top { background: var(--accent); }

    .cred-body {
      padding: 8px 0 26px;
    }

    .cred-year {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 3px;
    }

    .cred-title {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 15.5px;
      color: var(--text-primary);
      margin-bottom: 3px;
    }

    .cred-desc {
      font-size: 13.5px;
      color: var(--text-secondary);
      line-height: 1.55;
    }

    /* Career Track */
    .career-track {
      background: var(--off-white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-lg);
      padding: 24px 28px;
      margin-bottom: 32px;
    }

    .career-track-label {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .career-steps {
      display: flex;
      flex-direction: column;
    }

    .career-step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      position: relative;
      padding-bottom: 14px;
    }

    .career-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 12px;
      bottom: 0;
      width: 2px;
      background: var(--gray-200);
    }

    .career-step:last-child { padding-bottom: 0; }

    .career-step-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gray-200);
      border: 2px solid var(--white);
      flex-shrink: 0;
      margin-top: 3px;
      position: relative;
      z-index: 1;
    }

    .career-step--current .career-step-dot {
      background: var(--accent);
      width: 14px;
      height: 14px;
      box-shadow: 0 0 0 3px rgba(122,181,68,0.18);
    }

    .career-step-content {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 8px;
      line-height: 1.45;
    }

    .career-step-badge {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--accent);
      color: var(--white);
      padding: 2px 8px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .career-step-title {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
    }

    .career-step--current .career-step-title {
      font-weight: 700;
      color: var(--navy);
    }

    .why-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 4px;
    }

    .pillar {
      background: var(--navy);
      color: var(--white);
      border-radius: var(--r-lg);
      padding: 22px 18px;
      text-align: center;
    }

    .pillar-icon {
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.1);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      color: var(--gold);
    }

    .pillar-title {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .pillar-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
    }

    /* ===================================================================
       TRUST STRIP
    =================================================================== */
    .trust {
      background: var(--navy-dark);
      padding: 64px 0;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
    }

    .trust-col { color: var(--white); }

    .trust-col-title {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .trust-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      color: rgba(255,255,255,0.75);
      line-height: 1.55;
      margin-bottom: 12px;
    }

    .trust-list li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

    .trust-quote {
      border-left: 3px solid var(--accent);
      padding-left: 20px;
    }

    .trust-quote blockquote {
      font-size: 15.5px;
      line-height: 1.7;
      color: rgba(255,255,255,0.8);
      font-style: italic;
      margin-bottom: 14px;
    }

    .trust-quote cite {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      font-style: normal;
    }

    /* ===================================================================
       FAQ / GEO SECTION
    =================================================================== */
    .faq {
      background: var(--off-white);
      padding: var(--py-section) 0;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-md);
      padding: 26px 28px;
    }

    .faq-item h3 {
      font-family: var(--font-heading);
      font-size: 15.5px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.42;
    }

    .faq-item p {
      font-size: 14.5px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ===================================================================
       FINAL CTA
    =================================================================== */
    .cta-final {
      background: linear-gradient(140deg, var(--accent) 0%, #4F7A2B 100%);
      padding: 96px 24px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cta-final::before {
      content: '';
      position: absolute;
      top: -100px; left: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }

    .cta-final::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: rgba(0,0,0,0.08);
      pointer-events: none;
    }

    .cta-final-inner {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin: 0 auto;
    }

    .cta-final h2 {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .cta-final p {
      font-size: 18px;
      line-height: 1.7;
      color: rgba(255,255,255,0.83);
      margin-bottom: 36px;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 22px;
    }

    .cta-footnote {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.03em;
    }

    /* ===================================================================
       FOOTER
    =================================================================== */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.55);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
      gap: 40px;
      padding: 60px 0 48px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-brand .footer-logo { margin-bottom: 16px; }

    .footer-brand p {
      font-size: 13.5px;
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-col-title {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-bottom: 16px;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col li a {
      font-size: 13.5px;
      color: rgba(255,255,255,0.55);
      transition: color 0.15s;
    }
    .footer-col li a:hover { color: var(--white); }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13.5px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      font-size: 12.5px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      color: rgba(255,255,255,0.4);
      transition: color 0.15s;
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.8); }

    /* ===================================================================
       RESPONSIVE
    =================================================================== */
    @media (max-width: 960px) {
      /* minmax(0,1fr) verhindert Grid-Blowout: ohne 0 wächst die 1fr-Spalte
         auf die min-content-Breite des Dashboards und überläuft den Container.
         Visual + Buttons strecken auf volle (eingerückte) Containerbreite =
         bündig & zentriert. Interne Dashboard-Grids ebenfalls gegen Blowout
         absichern, damit das Dashboard sauber in den Container passt. */
      .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 0; }
      .hero-visual { display: block; margin: 4px 0 30px; }
      .db-kpi-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .db-bottom { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

      /* Badge linksbündig mit der Headline, kompakt (kein Rechts-Überlauf).
         Als Block mit normalem Textfluss, damit der Punkt beim Text bleibt. */
      .hero-badge { display: block; text-align: left; width: fit-content; max-width: 100%; margin-inline: 0; }
      .hero-badge .hero-badge-dot { display: inline-block; vertical-align: middle; margin-right: 6px; }

      .solution-inner { grid-template-columns: 1fr; gap: 48px; }

      .why-inner { grid-template-columns: 1fr; gap: 48px; }
      .why-left { position: static; }
      .profile-card {
        display: flex;
        align-items: center;
        gap: 28px;
        text-align: left;
      }
      .profile-photo { margin: 0; flex-shrink: 0; }
      .profile-contacts { flex-direction: row; flex-wrap: wrap; }

      .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    }

    @media (max-width: 768px) {
      :root { --py-section: 64px; }

      .nav-links, .nav-right .btn { display: none; }
      .nav-toggle { display: block; }

      .problem-highlight { flex-direction: column; text-align: center; padding: 28px; }
      .problem-highlight-num { font-size: 56px; }
      .problem-cards { grid-template-columns: 1fr; }

      .services-grid { grid-template-columns: 1fr; }

      .trust-grid { grid-template-columns: 1fr; gap: 36px; }

      .faq-grid { grid-template-columns: 1fr; }

      .why-pillars { grid-template-columns: 1fr; }

      .profile-card { flex-direction: column; text-align: center; }
      .profile-photo { margin: 0 auto; }

      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .hero { padding: 64px 0 56px; }
      .hero-ctas { flex-direction: column; }
      .hero-ctas .btn { width: 100%; justify-content: center; }
      .cta-buttons { flex-direction: column; align-items: stretch; }
      .cta-buttons .btn { justify-content: center; }
    }

    /* ===================================================================
       PRINT / MOTION PREFERENCES
    =================================================================== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition-duration: 0.01ms !important; }
      html { scroll-behavior: auto; }
    }
  
    /* ===================================================================
       SEITENSPEZIFISCH: LEISTUNGEN
    =================================================================== */
.section { padding: var(--py-section) 0; }

.section-sm { padding: 64px 0; }

.badge {
      display: inline-flex; align-items: center;
      background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.9);
      border: 1px solid rgba(255,255,255,0.25); border-radius: 999px;
      font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600;
      letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 14px;
      margin-bottom: 20px;
    }

.badge-navy {
      background: rgba(27,43,78,0.08); color: var(--navy);
      border-color: rgba(27,43,78,0.18);
    }

.btn:active { transform: scale(0.97); }

.nav-links a.active { font-weight: 600; }

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.intro-text {
      font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.75;
      max-width: 740px;
    }

.intro-text strong { color: var(--navy); }

.pakete-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 56px;
    }

.paket-card {
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      border: 1px solid var(--gray-200);
    }

.paket-card-header {
      background: var(--navy);
      padding: 28px 28px 24px;
    }

.paket-number {
      font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
      color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
      margin-bottom: 8px;
    }

.paket-title {
      font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800;
      color: var(--white); line-height: 1.35;
    }

.paket-card-body {
      background: var(--white);
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

.paket-problem-box {
      background: var(--accent-light);
      border: 1px solid var(--accent-border);
      border-radius: var(--r-md);
      padding: 16px;
    }

.paket-box-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 6px;
    }

.paket-problem-box .paket-box-label { color: var(--accent); }

.paket-problem-text {
      font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
    }

.paket-ergebnis-box {
      background: #F0FDF4;
      border: 1px solid #BBF7D0;
      border-radius: var(--r-md);
      padding: 16px;
    }

.paket-ergebnis-box .paket-box-label { color: #15803D; }

.paket-ergebnis-text {
      font-size: 0.9rem; color: #15803D; font-weight: 600; line-height: 1.6;
    }

.paket-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

.paket-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

.paket-features li svg {
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--accent);
    }

.paket-time-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--navy);
      color: var(--white);
      border-radius: 999px;
      font-size: 0.8125rem;
      font-weight: 600;
      padding: 5px 14px;
    }

.paket-cta { margin-top: auto; }

.prozess-section { background: var(--gray-100); }

.prozess-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

.prozess-step {
      text-align: center;
    }

.prozess-step-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
    }

.prozess-step-title {
      font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700;
      color: var(--navy); margin-bottom: 10px;
    }

.prozess-step-text {
      font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65;
    }

.prozess-connector {
      display: none;
    }

.faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 800px;
      margin: 48px auto 0;
    }

.faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 22px 8px 22px 0;
      font-family: var(--font-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.15s;
    }

.faq-question:hover { color: var(--accent); }

.faq-icon { flex-shrink: 0; transition: transform 0.25s; }

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
      display: none;
      padding: 0 8px 22px 0;
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

.faq-item.open .faq-answer { display: block; }

.cta-section {
      background: var(--accent);
    }

.cta-inner {
      text-align: center;
      padding: 80px 0;
    }

.cta-inner h2 {
      font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 800; color: var(--white); margin-bottom: 16px;
    }

.cta-inner p {
      font-size: 1.0625rem; color: rgba(255,255,255,0.85);
      max-width: 560px; margin: 0 auto 32px; line-height: 1.65;
    }

@media (max-width: 960px) {
  .pakete-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .prozess-steps { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}


    /* ===================================================================
       SEITENSPEZIFISCH: UEBER-MICH
    =================================================================== */
.intro-grid {
      display: grid;
      grid-template-columns: 1fr 400px;
      grid-template-rows: auto 1fr;
      grid-template-areas:
        "text  photo"
        "actions photo";
      column-gap: 64px;
      row-gap: 28px;
      align-items: start;
    }

.intro-text-block { grid-area: text; }
.intro-photo { grid-area: photo; align-self: start; }
.intro-actions { grid-area: actions; align-self: start; display: flex; gap: 14px; flex-wrap: wrap; }

.intro-text-block p {
      font-size: 1.0625rem;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 16px;
    }

.intro-text-block p:last-child { margin-bottom: 0; }

.intro-photo {
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      aspect-ratio: 4/5;
    }

.intro-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

.timeline-section { background: var(--gray-100); }

.timeline {
      position: relative;
      max-width: 760px;
      margin: 48px auto 0;
    }

.timeline::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--accent), var(--navy));
    }

.timeline-item {
      display: flex;
      gap: 32px;
      padding-bottom: 36px;
      position: relative;
    }

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
      position: relative;
    }

.timeline-dot.current {
      background: var(--accent);
      border-color: var(--accent);
    }

.timeline-dot svg { color: var(--navy); }

.timeline-dot.current svg { color: var(--white); }

.timeline-content {
      padding-top: 8px;
      flex: 1;
    }

.timeline-year {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
    }

.timeline-title {
      font-family: var(--font-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

.timeline-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

.quali-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

.quali-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s, transform 0.2s;
    }

.quali-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

.quali-year {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.06em;
      margin-bottom: 6px;
    }

.quali-title {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.35;
    }

.quali-org {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 4px;
    }

.prinzipien-section {
      background: var(--navy);
    }

.prinzipien-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 48px;
    }

.prinzip-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--r-lg);
      padding: 32px;
    }

.prinzip-icon {
      width: 48px; height: 48px;
      background: var(--accent);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      color: var(--white);
    }

.prinzip-title {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.35;
    }

.prinzip-text {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
    }

@media (max-width: 960px) {
  .intro-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "text" "photo" "actions";
  }
  .intro-photo { max-width: 360px; aspect-ratio: 3/4; align-self: start; }
  .quali-grid { grid-template-columns: repeat(2, 1fr); }
  .prinzipien-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .quali-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 18px; }
}


    /* ===================================================================
       SEITENSPEZIFISCH: KONTAKT
    =================================================================== */
.page-hero {
      background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, #2B4593 100%);
      color: var(--white);
      padding: 72px 0 64px;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 48px 48px;
    }

.page-hero::after {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(122,181,68,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }

.page-hero-breadcrumb { font-family: var(--font-heading); font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 18px; }

.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); }

.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.8); }

.page-hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.025em;
      margin-bottom: 18px;
    }

.page-hero-accent { color: var(--gold); }

.page-hero p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.78); max-width: 520px; }

.contact-section {
      padding: var(--py-section) 0;
      background: var(--white);
    }

.contact-inner {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 72px;
      align-items: start;
    }

.contact-form-wrap {}

.contact-form-title {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

.contact-form-sub {
      font-size: 15.5px;
      color: var(--text-secondary);
      margin-bottom: 32px;
      line-height: 1.65;
    }

.form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

.form-group {
      margin-bottom: 18px;
    }

.form-label {
      display: block;
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 7px;
    }

.form-label .optional {
      font-weight: 400;
      color: var(--text-muted);
      margin-left: 4px;
    }

.form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--r-md);
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--text-primary);
      background: var(--white);
      transition: border-color 0.15s, box-shadow 0.15s;
      outline: none;
    }

.form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(27,43,78,0.08);
    }

.form-note {
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }

.form-submit-row {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

.form-success {
      display: none;
      background: rgba(34,197,94,0.1);
      border: 1px solid rgba(34,197,94,0.3);
      border-radius: var(--r-md);
      padding: 14px 18px;
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 600;
      color: #166534;
      margin-top: 16px;
    }

.contact-sidebar {}

.contact-sidebar-card {
      background: var(--navy);
      border-radius: var(--r-xl);
      padding: 36px;
      color: var(--white);
      margin-bottom: 24px;
    }

.contact-sidebar-card-title {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 22px;
    }

.contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.09);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }

.contact-detail-label {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 3px;
    }

.contact-detail-value {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.4;
    }

.contact-detail-value a { color: var(--white); }

.contact-detail-value a:hover { color: var(--gold); }

.contact-hours-card {
      background: var(--off-white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-lg);
      padding: 24px 26px;
      margin-bottom: 24px;
    }

.contact-hours-title {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 14px;
    }

.contact-hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 13.5px;
      padding: 5px 0;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--gray-100);
    }

.contact-hours-row:last-child { border-bottom: none; }

.contact-hours-row span:first-child { font-family: var(--font-heading); font-weight: 500; }

.check-cta-card {
      background: linear-gradient(135deg, var(--accent) 0%, #4F7A2B 100%);
      border-radius: var(--r-lg);
      padding: 24px 26px;
    }

.check-cta-card-title {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 8px;
    }

.check-cta-card-text {
      font-size: 13.5px;
      color: rgba(255,255,255,0.82);
      margin-bottom: 16px;
      line-height: 1.55;
    }

.analyse-section {
      background: var(--off-white);
      padding: var(--py-section) 0;
    }

.analyse-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

.analyse-text {}

.analyse-text h2 {
      font-family: var(--font-heading);
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 14px;
      line-height: 1.2;
    }

.analyse-text p {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 18px;
    }

.analyse-steps {
      background: var(--navy);
      border-radius: var(--r-xl);
      padding: 36px;
      color: var(--white);
    }

.analyse-steps-title {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 22px;
    }

.analyse-step {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
    }

.analyse-step:last-child { margin-bottom: 0; }

.analyse-step-num {
      width: 32px; height: 32px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 13px;
      color: var(--white);
      flex-shrink: 0;
    }

.analyse-step-content h4 {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

.analyse-step-content p {
      font-size: 13.5px;
      color: rgba(255,255,255,0.62);
      line-height: 1.55;
    }

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

@media (max-width: 768px) {
  .nav-links, .nav-right .btn { display: none; }
  .form-row { grid-template-columns: 1fr; }
}


    /* ===================================================================
       SEITENSPEZIFISCH: BETRIEBS-CHECK
    =================================================================== */
.page-hero-layout {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      grid-template-rows: auto auto 1fr;
      grid-template-areas:
        "text   visual"
        "action visual"
        "meta   visual";
      column-gap: 64px;
      row-gap: 0;
      align-items: start;
    }

.page-hero-text { grid-area: text; }
.page-hero-cta { grid-area: action; justify-self: start; }
.hero-meta { grid-area: meta; }
.score-preview { grid-area: visual; align-self: center; }

.page-hero-text p {
      font-size: 18px;
      line-height: 1.7;
      color: rgba(255,255,255,0.78);
      max-width: none;
      margin-bottom: 28px;
    }

.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; }

.hero-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: rgba(255,255,255,0.58);
      font-family: var(--font-heading);
    }

.hero-meta-item svg { color: var(--green); flex-shrink: 0; }

.score-preview {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: var(--r-xl);
      padding: 28px;
    }

.score-preview-title {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
    }

.score-tier {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 14px;
      border-radius: var(--r-md);
      margin-bottom: 8px;
      background: rgba(255,255,255,0.05);
    }

.score-tier:last-child { margin-bottom: 0; }

.score-tier-bar {
      width: 10px;
      border-radius: 3px;
      flex-shrink: 0;
    }

.score-tier-info { flex: 1; }

.score-tier-label {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
    }

.score-tier-range {
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      margin-top: 2px;
    }

.coverage {
      background: var(--off-white);
      padding: var(--py-section) 0;
    }

.coverage-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

.coverage-topics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

.topic-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-md);
      padding: 12px 14px;
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
    }

.topic-chip-num {
      width: 22px; height: 22px;
      background: var(--accent);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      flex-shrink: 0;
    }

.coverage-text h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 14px;
      line-height: 1.3;
    }

.coverage-text p {
      font-size: 15.5px;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 20px;
    }

.promise-box {
      background: var(--navy);
      border-radius: var(--r-lg);
      padding: 24px 26px;
      color: var(--white);
      margin-top: 28px;
    }

.promise-box-title {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 12px;
    }

.promise-list { display: flex; flex-direction: column; gap: 10px; }

.promise-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: rgba(255,255,255,0.82);
      line-height: 1.55;
    }

.promise-dot {
      width: 7px; height: 7px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 6px;
    }

.results-section {
      background: var(--white);
      padding: var(--py-section) 0;
    }

.results-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

.result-card {
      border-radius: var(--r-lg);
      padding: 28px 22px;
      border: 1px solid var(--gray-200);
    }

.result-score-bar {
      width: 40px; height: 6px;
      border-radius: 3px;
      margin-bottom: 16px;
    }

.result-icon {
      width: 44px; height: 44px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

.result-title {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 8px;
      line-height: 1.3;
    }

.result-range {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

.result-desc {
      font-size: 13.5px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

.big-cta {
      background: linear-gradient(135deg, var(--accent) 0%, #B84700 100%);
      padding: 80px 0;
    }

.big-cta-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }

.big-cta h2 {
      font-family: var(--font-heading);
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 12px;
    }

.big-cta p {
      font-size: 17px;
      color: rgba(255,255,255,0.82);
      line-height: 1.65;
      max-width: 560px;
    }

.big-cta-action { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.big-cta-trust {
      font-family: var(--font-heading);
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      text-align: right;
    }

.faq-question svg { flex-shrink: 0; color: var(--accent); transition: transform 0.2s; }

.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }

.faq-answer.open {
      max-height: 300px;
      padding: 0 22px 18px;
    }

.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 1024px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .page-hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "text" "visual" "action" "meta";
    row-gap: 28px;
  }
  .page-hero-text p { margin-bottom: 0; }
  .hero-meta { margin-top: 0; }
  .score-preview { max-width: 420px; align-self: start; }
  .coverage-inner { grid-template-columns: 1fr; gap: 48px; }
  .big-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .big-cta-action { align-items: flex-start; }
  .big-cta-trust { text-align: left; }
}

@media (max-width: 768px) {
  .coverage-topics { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
}


    /* ===================================================================
       SEITENSPEZIFISCH: BETRIEBS-CHECK-STARTEN
    =================================================================== */
.main {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 48px 24px 80px;
    }

.quiz-card {
      background: var(--white);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow-lg);
      padding: 48px;
      max-width: 720px;
      width: 100%;
    }

.quiz-header {
      text-align: center;
      margin-bottom: 36px;
    }

.quiz-header-title {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
    }

.quiz-header-title span { color: var(--accent); }

.quiz-header-sub {
      font-size: 0.9375rem;
      color: var(--text-muted);
    }

.progress-wrap {
      margin-bottom: 32px;
    }

.progress-bar-bg {
      background: var(--gray-200);
      border-radius: 999px;
      height: 8px;
      overflow: hidden;
      margin-bottom: 10px;
    }

.progress-bar-fill {
      height: 100%;
      background: var(--accent);
      border-radius: 999px;
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      width: 0%;
    }

.progress-label {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-muted);
      text-align: right;
    }

.question-area {
      transition: opacity 0.25s ease;
    }

.question-area.fade-out {
      opacity: 0;
    }

.question-text {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.45;
      margin-bottom: 24px;
    }

.answers-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

.answer-card {
      display: block;
      width: 100%;
      text-align: left;
      padding: 16px 20px;
      border: 2px solid var(--navy);
      border-radius: var(--r-md);
      background: var(--white);
      color: var(--navy);
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
      line-height: 1.5;
    }

.answer-card:hover {
      background: var(--navy);
      color: var(--white);
      box-shadow: var(--shadow-md);
    }

.answer-card:active {
      transform: scale(0.97);
    }

.answer-card.selected {
      background: var(--navy);
      color: var(--white);
      transform: scale(0.97);
    }

.result-area {
      display: none;
    }

.result-area.visible {
      display: block;
    }

.result-score-wrap {
      text-align: center;
      margin-bottom: 32px;
      padding: 32px 24px;
      background: var(--gray-100);
      border-radius: var(--r-lg);
    }

.result-score-label {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 8px;
    }

.result-score-number {
      font-family: var(--font-heading);
      font-size: 4rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 6px;
    }

.result-score-max {
      font-size: 1.25rem;
      color: var(--text-muted);
      font-weight: 400;
    }

.result-category {
      font-family: var(--font-heading);
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 4px;
    }

.result-status {
      font-size: 0.9375rem;
      color: var(--text-muted);
    }

.result-recommendation {
      background: var(--accent-light);
      border: 1px solid var(--accent-border);
      border-radius: var(--r-lg);
      padding: 24px;
      margin-bottom: 28px;
    }

.result-recommendation-label {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 10px;
    }

.result-recommendation-text {
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

.result-cta-label {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
    }

.result-cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

/* CTA-Buttons im Ergebnis dürfen umbrechen statt überzulaufen */
.result-cta-buttons .btn {
      white-space: normal;
      padding-left: 20px;
      padding-right: 20px;
      text-align: center;
    }

/* Empfohlener Startpunkt (Chip unter der Einschätzung) */
.result-start {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--accent-border);
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 4px 10px;
    }

.result-start-label {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
    }

.result-start-value {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--navy);
    }

/* Nächster Schritt */
.result-next-text {
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 18px;
    }

.result-restart {
      display: block;
      margin: 16px auto 0;
      padding: 6px 10px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-family: var(--font-body);
      font-size: 0.875rem;
      text-decoration: underline;
      cursor: pointer;
    }

.result-restart:hover { color: var(--text-primary); }

@media (max-width: 768px) {
  .quiz-card { padding: 28px 20px; }
  .question-text { font-size: 1.0625rem; }
  .result-score-number { font-size: 3rem; }
}



    /* ===================================================================
       MOBILE-ENHANCEMENTS (primärer Use-Case: Smartphone)
    =================================================================== */
    /* Body-Scroll-Lock bei offenem Mobil-Drawer */
    body.nav-open { overflow: hidden; }

    /* Sticky Conversion-Bar — nur Mobil */
    .sticky-cta { display: none; }

    @media (max-width: 768px) {
      .sticky-cta {
        display: flex;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 180;
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(8px);
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
      }
      .sticky-cta .btn { flex: 1; justify-content: center; min-height: 48px; padding: 13px 16px; }
      .sticky-cta-wa {
        flex: 0 0 52px;
        background: #25D366;
        border-color: #25D366;
        color: #fff;
        padding: 13px;
      }
      .sticky-cta-wa:hover { background: #1FB855; border-color: #1FB855; }
      body.has-sticky-cta { padding-bottom: 76px; }

      /* Touch-Targets ≥ 44px */
      .btn { min-height: 44px; }
      .nav-mobile-links a,
      .faq-question,
      .answer-card,
      .footer-col li a,
      .footer-legal a { min-height: 44px; display: flex; align-items: center; }
      .nav-toggle, .nav-mobile-close { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
      .nav-toggle { display: inline-flex; }

      /* iOS-Auto-Zoom in Feldern verhindern: Eingaben ≥ 16px */
      .form-input, .form-select, .form-textarea { font-size: 16px; }

      /* Kein horizontales Scrollen */
      html, body { overflow-x: hidden; }
    }

    /* Social-Brand-Icons (inline-SVG, einheitliche Größe) */
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .social-link svg { display: block; }

    /* ===================================================================
       MARKEN-LOGO (Icon-SVG + Wortmarke in DM Sans)
       Helle Variante (Footer/Hero) über .brand--light bzw. .footer-logo.
    =================================================================== */
    .nav-logo, .footer-logo, .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .brand-icon { display: block; flex-shrink: 0; height: 34px; width: 34px; }
    .nav-logo .brand-icon { height: 36px; width: 36px; }
    .brand-word {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 21px;
      letter-spacing: -0.02em;
      line-height: 1;
      white-space: nowrap;
    }
    .footer-logo .brand-word { font-size: 20px; }
    .brand-b { color: var(--navy); }
    .brand-l { color: var(--accent); }
    .footer-logo .brand-b,
    .brand--light .brand-b { color: var(--white); }

    /* ===================================================================
       SKIP-LINK (Tastatur-/Screenreader-Zugang) + FOOTER-SOCIALS
    =================================================================== */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 300;
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-heading);
      font-weight: 600;
      padding: 12px 18px;
      border-radius: 0 0 var(--r-sm) 0;
    }
    .skip-link:focus { left: 0; }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }
    .footer-socials a {
      width: 40px;
      height: 40px;
      border-radius: var(--r-sm);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.7);
      transition: color 0.15s, border-color 0.15s, background 0.15s;
    }
    .footer-socials a:hover {
      color: var(--white);
      border-color: rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.06);
    }

    /* ===================================================================
       RECHTSSEITEN / EINFACHE TEXTSEITEN
    =================================================================== */
    .legal { max-width: 760px; }
    .legal h2 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--navy); margin: 34px 0 10px; }
    .legal h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-primary); margin: 22px 0 6px; }
    .legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 12px; }
    .legal ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
    .legal a { color: var(--accent); text-decoration: underline; }
    .legal-note {
      background: var(--accent-light);
      border: 1px solid var(--accent-border);
      border-radius: var(--r-md);
      padding: 16px 18px;
      font-size: 14px;
      color: var(--text-primary);
      margin-bottom: 28px;
    }

    /* Keine automatische Silbentrennung in Headlines; lange Komposita
       brechen nur als ganzes Wort um. Hero-H1 so groß wie möglich, ohne dass
       "Prozessautomatisierung" auf 320–414px umbricht (7vw bleibt unter der
       verfügbaren H1-Breite). */
    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(22px, 7vw, 30px); }
      .hero h1, .section-title, .page-hero h1, .cta-final h2, .big-cta h2, .cta-inner h2 {
        hyphens: manual;
        -webkit-hyphens: manual;
        overflow-wrap: break-word;
        word-break: normal;
      }
      /* Badge kompakter; Dashboard-KPIs einheitlich klein, kein Umbruch vor € */
      .hero-badge { font-size: 11px; }
      .db-kpi-value { font-size: 15px; white-space: nowrap; }
    }

    /* ===================================================================
       ANPASSUNGEN (Originallogo, Footer, Betriebs-Check, Cookie-Banner)
    =================================================================== */
    /* Originallogo als Bild */
    .nav-logo .brand-full { height: 44px; width: auto; display: block; }
    .footer-logo .brand-full { height: 44px; width: auto; display: block; }

    /* Footer-Kontakt: E-Mail einzeilig (#22) */
    .footer-contact-item { font-size: 13px; }
    .footer-mail { white-space: nowrap; }

    /* Kontakt: Nachrichtenfeld doppelt so hoch (#45) */
    .form-textarea { min-height: 230px; resize: vertical; }

    /* Betriebs-Check Hero (#37): volle Breite + Meta einzeilig */
    .page-hero-inner--wide { max-width: none; }
    .hero-meta { flex-wrap: nowrap; }
    .big-cta-trust { text-align: left; }
    @media (max-width: 768px) {
      .hero-meta { flex-wrap: wrap; }
    }

    /* Cookie-Banner (#3) — self-hosted, CSP-sicher */
    .cookie-banner {
      position: fixed;
      left: 16px; right: 16px; bottom: 16px;
      z-index: 250;
      background: var(--navy);
      color: rgba(255,255,255,0.9);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--r-md);
      box-shadow: var(--shadow-lg);
      padding: 18px 20px;
      display: flex;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap;
    }
    .cookie-banner p { font-size: 13.5px; line-height: 1.55; flex: 1 1 340px; margin: 0; }
    .cookie-banner a { color: var(--accent); text-decoration: underline; }
    .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-actions .btn { padding: 11px 20px; font-size: 14px; }
    @media (max-width: 600px) {
      .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 16px; }
      .cookie-actions { width: 100%; }
      .cookie-actions .btn { flex: 1; justify-content: center; }
    }

    /* S1: Desktop-Hero. Dashboard absolut in die rechte Spalte, damit der
       linke Textfluss (badge/h1/sub → CTAs → trust) unverändert bleibt und
       die CTAs per margin-collapse bündig an der Dashboard-Unterkante sitzen.
       Spaltenbreiten reproduzieren exakt das frühere Grid (1.1fr / 0.9fr,
       gap 64px). */
    @media (min-width: 961px) {
      .hero-inner { display: block; }
      .hero-text,
      .hero-ctas,
      .hero-trust { width: calc((100% - 64px) * 0.55); }
      .hero-visual {
        position: absolute;
        top: 0;
        right: 0;
        width: calc((100% - 64px) * 0.45);
      }
      .hero-ctas { margin-top: 40px; margin-bottom: 22px; }
    }
