/* ===================================================================
   Gestaltung der Seite sofortruf.com  (Farben, Schriften, Abstaende)
   -------------------------------------------------------------------
   Diese Datei bestimmt, wie die Seite AUSSIEHT. Was auf ihr STEHT,
   steht in index.html. Was sie TUT, steht in js/seite.js.
   Eingebunden im Kopf von index.html per <link rel="stylesheet">.
   =================================================================== */

  :root{
    --bg: #f9f8f4;
    --bg-elev: #f2f0e8;
    --bg-card: #ffffff;
    --bg-card-hi: #fbfaf6;
    --border: #e0ddd2;
    --border-soft: #eae7dc;
    --text: #232a25;
    --text-muted: #5c6359;
    --text-dim: #8a8f83;
    --accent: #bd4f18;
    --accent-hi: #d1651f;
    --accent-dim: #97400f;
    --accent-soft: rgba(189,79,24,0.09);
    --teal: #2f6b78;
    --teal-soft: rgba(47,107,120,0.08);
    --ok: #3f8a52;
    --radius: 10px;
    --maxw: 1080px;

    /* feste, dunkle "Terminal"-Farben – bewusst unabhängig vom hellen Theme,
       aber deutlich zurückhaltender/heller als reines Schwarz-Navy */
    --term-bg: #2b323d;
    --term-elev: #333b47;
    --term-border: #454e5c;
    --term-border-soft: #3a4350;
    --term-text: #f1ede4;
    --term-text-muted: #b3b9c2;
    --term-text-dim: #868e9c;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background: var(--bg);
    color: var(--text);
    font-family: 'Source Sans 3', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  .mono{ font-family: 'IBM Plex Mono', monospace; }
  .display{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
  }
  a{ color: inherit; text-decoration:none; }
  .wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  img.noimg{display:none;}

  /* subtle background texture: faint grid, like a dispatch schematic */
  .bg-grid{
    position: fixed; inset: 0; pointer-events:none; z-index:0;
    background-image:
      linear-gradient(rgba(35,42,37,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(35,42,37,0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 900px 500px at 50% 0%, black 0%, transparent 65%);
  }

  /* ---------- NAV ---------- */
  header{
    position: sticky; top:0; z-index: 50;
    background: rgba(249,248,244,0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
  }
  nav.wrap{
    display:flex; align-items:center; justify-content:space-between;
    height: 68px;
  }
  .brand{
    display:flex; align-items:center; gap:10px;
    font-family:'Oswald', sans-serif; font-weight:700; font-size:20px;
    letter-spacing:0.03em; text-transform:uppercase;
  }
  .brand .dot{
    width:9px; height:9px; border-radius:50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
  }
  .navlinks{ display:flex; gap: 28px; align-items:center; }
  .nav-toggle{
    display:none;
    background:none; border:none; cursor:pointer;
    width:42px; height:42px;
    flex-direction:column; align-items:center; justify-content:center; gap:5px;
    border-radius:7px;
  }
  .nav-toggle span{
    display:block; width:20px; height:2px;
    background: var(--text); border-radius:2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-toggle:hover span{ background: var(--accent-hi); }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .navlinks button.navlink{
    background:none; border:none; cursor:pointer;
    color: var(--text-muted); font-size: 14.5px; font-weight:600;
    font-family:'Source Sans 3',sans-serif;
    letter-spacing:0.02em;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
  }
  .navlinks button.navlink:hover{ color: var(--text); }
  .navlinks button.navlink.active{ color: var(--text); border-color: var(--accent); }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    background: var(--accent);
    color: #14100c;
    font-weight: 700;
    font-size: 14.5px;
    padding: 11px 20px;
    border-radius: 7px;
    border: none;
    cursor:pointer;
    transition: background .15s ease, transform .1s ease;
  }
  .btn:hover{ background: var(--accent-hi); }
  .btn:active{ transform: translateY(1px); }
  .btn-ghost{
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
  }
  .btn-ghost:hover{ background: var(--bg-card-hi); }

  main{ position:relative; z-index:1; }
  section{ padding: 88px 0; }
  section.tight{ padding: 64px 0; }
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    color: var(--accent);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display:flex; align-items:center; gap:10px;
  }
  .eyebrow::before{
    content:''; width:20px; height:1px; background: var(--accent);
  }
  h1{
    font-family:'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: 0.005em;
    text-transform: none;
    max-width: 780px;
  }
  h1 em{
    font-style: normal;
    color: var(--accent-hi);
  }
  h2{
    font-family:'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 3.2vw, 36px);
    text-transform: none;
    letter-spacing:0;
    margin-bottom: 14px;
  }
  p.lead{
    font-size: 18px;
    color: var(--text-muted);
    max-width: 620px;
    margin-top: 18px;
  }

  /* ---------- HERO ---------- */
  .hero{ padding-top: 76px; padding-bottom: 60px; }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
  }
  .hero-ctas{ display:flex; gap:12px; margin-top: 30px; flex-wrap:wrap; }
  .hero-meta{
    margin-top: 28px; display:flex; gap: 22px; flex-wrap:wrap;
  }
  .hero-meta .item{
    font-family:'IBM Plex Mono', monospace;
    font-size: 12.5px; color: var(--text-dim);
    display:flex; align-items:center; gap:7px;
  }
  .hero-meta .item .sw{ color: var(--teal); }

  /* ---------- SIGNATURE: dispatch log ---------- */
  /* bewusst eine dunkle "Bildschirm"-Insel im hellen, freundlichen Umfeld –
     wie ein Einsatz-Display, nicht die Grundstimmung der Seite */
  .log-card{
    background: var(--term-bg);
    border: 1px solid var(--term-border);
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow: 0 10px 24px -16px rgba(35,42,37,0.22);
  }
  .log-head{
    display:flex; align-items:center; justify-content:space-between;
    padding: 13px 16px;
    border-bottom: 1px solid var(--term-border-soft);
    background: var(--term-elev);
  }
  .log-head .title{
    font-family:'IBM Plex Mono', monospace;
    font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase;
    color: var(--term-text-dim);
  }
  .log-head .status{
    display:flex; align-items:center; gap:6px;
    font-family:'IBM Plex Mono', monospace;
    font-size:11px; color: #7fc98d;
  }
  .log-head .status .p{
    width:6px; height:6px; border-radius:50%; background: #7fc98d;
    box-shadow: 0 0 0 3px rgba(127,201,141,0.18);
  }
  .log-body{
    padding: 18px 16px 20px;
    font-family:'IBM Plex Mono', monospace;
    font-size: 13px;
    min-height: 230px;
  }
  .log-line{
    margin-bottom: 13px;
    opacity: 0;
    transform: translateY(4px);
    animation: reveal .4s ease forwards;
  }
  @keyframes reveal{ to{ opacity:1; transform:none; } }
  .log-line .tag{
    display:inline-block;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight:600;
  }
  .tag-in{ background: rgba(127,178,201,0.18); color: #8fc3d9; }
  .tag-level{ background: rgba(234,106,28,0.18); color: #ff9a54; }
  .tag-action{ background: rgba(127,201,141,0.16); color: #7fc98d; }
  .log-line .txt{ color: var(--term-text); }
  .log-line .dim{ color: var(--term-text-dim); }
  .log-divider{
    border-top: 1px dashed var(--term-border);
    margin: 16px 0;
  }
  .log-foot{
    padding: 12px 16px;
    border-top: 1px solid var(--term-border-soft);
    background: var(--term-elev);
    font-family:'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--term-text-dim);
  }

  /* ---------- PROBLEM ---------- */
  .problem-grid{
    display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-top:36px;
  }
  .stat-card{
    background: var(--bg-card);
    border:1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
  }
  .stat-card .num{
    font-family:'Oswald', sans-serif;
    font-size: 40px; color: var(--accent-hi); line-height:1;
  }
  .stat-card .lbl{
    margin-top: 10px; color: var(--text-muted); font-size: 14px;
  }

  /* ---------- STORY ---------- */
  .story{
    background: var(--bg-elev);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
  }
  .story-grid{
    display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items:center;
  }
  .story-badge{
    width:100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    background:
      radial-gradient(circle at 30% 20%, rgba(232,89,12,0.16), transparent 55%),
      linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card-hi) 100%);
    border: 1px solid var(--border);
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap: 14px;
    position:relative;
    overflow:hidden;
  }
  .story-badge .init{
    font-family:'Oswald', sans-serif; font-size:64px; color: var(--accent-hi);
    border: 2px solid var(--accent-dim);
    width:110px; height:110px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .story-badge .role{
    font-family:'IBM Plex Mono', monospace; font-size:12px; color: var(--text-dim);
    text-align:center; letter-spacing:0.05em; text-transform:uppercase;
    padding: 0 24px;
  }
  .story-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:22px; }
  .story-tag{
    font-family:'IBM Plex Mono', monospace; font-size:11.5px;
    padding: 5px 10px; border-radius: 5px;
    background: var(--bg-card); border:1px solid var(--border);
    color: var(--text-muted);
  }
  .story-text p{ color: var(--text-muted); margin-bottom: 16px; font-size: 16.5px; }
  .story-text p strong{ color: var(--text); font-weight:600; }

  /* ---------- STEPS ---------- */
  .steps{ display:flex; flex-direction:column; gap:0; margin-top: 40px; }
  .step{
    display:grid; grid-template-columns: 64px 1fr; gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--border-soft);
  }
  .step:last-child{ border-bottom: 1px solid var(--border-soft); }
  .step .n{
    font-family:'Oswald', sans-serif; font-size:28px; color: var(--accent);
  }
  .step h3{
    font-family:'Source Sans 3', sans-serif; font-weight:700; font-size:17px; margin-bottom:6px;
  }
  .step p{ color: var(--text-muted); font-size:15px; max-width:560px; }

  /* ---------- TERMINVERGABE ---------- */
  .termin-grid{
    display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 52px; align-items:center; margin-top: 36px;
  }
  .cal-card{
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 14px 34px -20px rgba(35,42,37,0.18);
  }
  .cal-head{
    display:flex; align-items:center; justify-content:space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg-card-hi);
  }
  .cal-head .title{
    font-family:'IBM Plex Mono', monospace;
    font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase;
    color: var(--text-dim);
  }
  .cal-head .status{
    display:flex; align-items:center; gap:6px;
    font-family:'IBM Plex Mono', monospace;
    font-size:11px; color: var(--ok);
  }
  .cal-head .status .p{
    width:6px; height:6px; border-radius:50%; background: var(--ok);
    box-shadow: 0 0 0 3px rgba(63,138,82,0.16);
  }
  .cal-days{
    display:grid; grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 20px 18px 8px;
  }
  .day-col{ display:flex; flex-direction:column; gap:8px; }
  .day-label{
    font-family:'IBM Plex Mono', monospace;
    font-size: 11px; color: var(--text-dim);
    text-align:center; margin-bottom: 2px;
  }
  .day-label .num{ display:block; font-size:15px; color: var(--text); font-family:'Source Sans 3',sans-serif; font-weight:700; }
  .slot{
    border: 1px dashed var(--border);
    border-radius: 6px;
    padding: 8px 6px;
    font-size: 11px;
    color: var(--text-dim);
    text-align:center;
    min-height: 30px;
    display:flex; align-items:center; justify-content:center;
    transition: background .5s ease, border-color .5s ease, color .5s ease;
  }
  .slot.booked{
    border: 1px solid var(--accent-dim);
    background: var(--accent-soft);
    color: var(--accent-dim);
    font-weight: 600;
  }
  .cal-caption{
    margin: 4px 18px 18px;
    padding: 11px 14px;
    border-radius: 7px;
    background: rgba(63,138,82,0.09);
    border: 1px solid rgba(63,138,82,0.22);
    font-family:'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #2c6b3c;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .cal-caption.show{ opacity:1; transform:none; }
  .cal-foot{
    padding: 12px 18px;
    border-top: 1px solid var(--border-soft);
    background: var(--bg-card-hi);
    font-family:'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
  }
  .termin-points{ list-style:none; display:flex; flex-direction:column; gap:16px; margin-top:22px; }
  .termin-points li{ display:flex; gap:12px; }
  .termin-points .ico{
    flex:none; width:30px; height:30px; border-radius:7px;
    background: var(--teal-soft); color: var(--teal);
    display:flex; align-items:center; justify-content:center;
    font-family:'IBM Plex Mono', monospace; font-size:13px;
  }
  .termin-points .txt strong{ display:block; font-size:15px; margin-bottom:2px; }
  .termin-points .txt span{ color: var(--text-muted); font-size:14px; }

  /* ---------- DIFFERENCE ---------- */
  .diff-grid{
    display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px;
  }
  .diff-card{
    background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius);
    padding: 26px;
  }
  .diff-card .icon{
    width:38px; height:38px; border-radius:8px;
    background: var(--accent-soft);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:16px;
    color: var(--accent-hi); font-family:'Oswald',sans-serif; font-size:18px;
  }
  .diff-card h3{ font-size:16.5px; font-weight:700; margin-bottom:8px; }
  .diff-card p{ color: var(--text-muted); font-size:14.5px; }

  /* ---------- GEWERKE ---------- */
  .gewerke-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
  .gewerke-pill{
    font-size:14px; padding: 9px 16px; border-radius: 22px;
    border: 1px solid var(--border); color: var(--text-muted);
    background: var(--bg-card);
  }
  .gewerke-pill.grow{
    border-style:dashed; color: var(--accent-hi); border-color: var(--accent-dim);
  }

  /* ---------- PRICING TEASER on home ---------- */
  .price-teaser{
    background: linear-gradient(135deg, rgba(232,89,12,0.10), rgba(91,149,163,0.06));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 40px;
    display:flex; align-items:center; justify-content:space-between; gap:24px;
    flex-wrap:wrap;
  }
  .price-teaser h3{ font-family:'Oswald',sans-serif; font-size:22px; margin-bottom:6px; }
  .price-teaser p{ color: var(--text-muted); font-size:14.5px; max-width:420px; }

  /* ---------- TRUST ---------- */
  .trust-grid{
    display:grid; grid-template-columns: 1.2fr 1fr; gap: 40px; margin-top: 36px; align-items:start;
  }
  .quote-card{
    background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius);
    padding: 28px;
  }
  .quote-card .qmark{ font-family:'Oswald',sans-serif; font-size:38px; color: var(--accent); line-height:0.5; display:block; margin-bottom:10px; }
  .quote-card p.quote{ font-size:16px; color: var(--text); margin-bottom: 16px; }
  .quote-card .who{ font-family:'IBM Plex Mono', monospace; font-size:12px; color: var(--text-dim); }
  .trust-badges{ display:flex; flex-direction:column; gap:12px; }
  .badge-line{
    display:flex; align-items:center; gap:12px;
    padding: 14px 16px;
    background: var(--bg-card); border:1px solid var(--border); border-radius: 8px;
    font-size:14px; color: var(--text-muted);
  }
  .badge-line .ico{ color: var(--teal); font-family:'IBM Plex Mono',monospace; font-size:13px; }

  /* ---------- CTA / CONTACT ---------- */
  .cta-section{
    background: var(--bg-elev);
    border-top: 1px solid var(--border-soft);
    text-align:center;
  }
  .cta-section h2{ max-width:600px; margin:0 auto 14px; }
  .cta-section p.lead{ margin-left:auto; margin-right:auto; }
  .cta-section .hero-ctas{ justify-content:center; margin-top:28px; }

  footer{
    border-top: 1px solid var(--border-soft);
    padding: 32px 0;
  }
  footer .wrap{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  }
  footer .fbrand{ font-family:'Oswald',sans-serif; font-weight:700; letter-spacing:0.03em; }
  footer .fmeta{ color: var(--text-dim); font-size:13px; }
  .flegal{ display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
  .flegal a, .flegal button{
    color: var(--text-dim); font-size: 13px;
    border-bottom: 1px solid transparent;
    transition: color .15s ease, border-color .15s ease;
    font-family: 'Source Sans 3', sans-serif;
  }
  .flegal a:hover, .flegal button:hover{ color: var(--text); border-color: var(--border); }
  .flegal button{
    background:none; border-top:none; border-left:none; border-right:none;
    padding:0 0 1px; cursor:pointer;
  }
  footer .copy{
    border-top: 1px solid var(--border-soft);
    margin-top: 26px; padding-top: 18px;
    color: var(--text-dim); font-size: 13px;
  }

  /* ---------- PRICING PAGE ---------- */
  .price-hero{ padding-top: 60px; padding-bottom: 20px; text-align:center; }
  .price-hero h1{ max-width:720px; margin:0 auto; text-align:center; }
  .price-hero p.lead{ margin: 18px auto 0; text-align:center; }

  .pricing-wrap{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; margin-top: 48px; align-items:start; }

  .plan-card{
    background: var(--bg-card);
    border: 1px solid var(--accent-dim);
    border-radius: var(--radius);
    padding: 34px;
    position:relative;
    overflow:hidden;
  }
  .plan-card::before{
    content:'PILOTPHASE';
    position:absolute; top:18px; right:-38px;
    background: var(--accent);
    color:#14100c; font-family:'IBM Plex Mono',monospace; font-size:10.5px; font-weight:700;
    padding: 4px 42px; transform: rotate(35deg);
    letter-spacing:0.08em;
  }
  .plan-card .plan-name{ font-family:'IBM Plex Mono',monospace; color: var(--accent-hi); font-size:13px; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:14px; }
  .plan-price{ display:flex; align-items:baseline; gap:8px; margin-bottom:4px; }
  .plan-price .amount{ font-family:'Oswald',sans-serif; font-size:56px; }
  .plan-price .cycle{ color: var(--text-muted); font-size:15px; }
  .plan-minutes{ color: var(--text-muted); font-size:14.5px; margin-bottom:24px; }
  .plan-features{ list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom: 28px; }
  .plan-features li{ display:flex; gap:10px; font-size:14.5px; color: var(--text); align-items:flex-start; }
  .plan-features li .chk{ color: var(--ok); font-family:'IBM Plex Mono',monospace; margin-top:1px; }

  .connect-card{
    background: var(--bg-card-hi); border:1px solid var(--border); border-radius: var(--radius);
    padding: 28px;
  }
  .connect-card .lbl{ font-family:'IBM Plex Mono',monospace; font-size:12px; color: var(--teal); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:10px; }
  .connect-card .amount{ font-family:'Oswald',sans-serif; font-size:40px; margin-bottom:6px; }
  .connect-card p{ color: var(--text-muted); font-size:14px; margin-bottom:18px; }

  table.compare{
    width:100%; border-collapse: collapse; margin-top: 56px;
    font-size: 14.5px;
  }
  table.compare caption{ text-align:left; margin-bottom:16px; }
  table.compare th, table.compare td{
    padding: 14px 16px; text-align:left; border-bottom: 1px solid var(--border-soft);
  }
  table.compare thead th{
    font-family:'IBM Plex Mono',monospace; font-size:11.5px; letter-spacing:0.08em;
    text-transform:uppercase; color: var(--text-dim); font-weight:500;
    border-bottom: 1px solid var(--border);
  }
  table.compare tbody tr:hover{ background: var(--bg-elev); }
  table.compare td.hl{ color: var(--accent-hi); font-family:'IBM Plex Mono',monospace; }

  .price-note{
    margin-top: 40px;
    padding: 20px 22px;
    background: var(--teal-soft);
    border: 1px solid rgba(91,149,163,0.3);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-muted);
  }
  .price-note strong{ color: var(--text); }

  .price-faq{ margin-top: 56px; }
  .faq-item{ border-top: 1px solid var(--border-soft); padding: 20px 0; }
  .faq-item:last-child{ border-bottom: 1px solid var(--border-soft); }
  .faq-item h4{ font-size:15.5px; margin-bottom:8px; }
  .faq-item p{ color: var(--text-muted); font-size:14.5px; }

  /* ---------- responsive ---------- */
  @media (max-width: 880px){
    .hero-grid, .story-grid, .pricing-wrap{ grid-template-columns: 1fr; }
    .problem-grid, .diff-grid{ grid-template-columns: 1fr 1fr; }
    .nav-toggle{ display:flex; }
    .navlinks{
      display:flex; flex-direction:column; align-items:stretch;
      position:absolute; top:68px; left:0; right:0;
      background: var(--bg);
      border-bottom: 1px solid var(--border-soft);
      padding: 0 24px;
      gap: 2px;
      box-shadow: 0 14px 24px -18px rgba(35,42,37,0.3);
      max-height:0; overflow:hidden; opacity:0;
      transition: max-height .25s ease, opacity .2s ease, padding .2s ease;
    }
    .navlinks.open{ max-height:340px; opacity:1; padding-top:10px; padding-bottom:16px; }
    .navlinks button.navlink{ font-size:16px; padding:11px 2px; width:100%; text-align:left; border-bottom:1px solid var(--border-soft); }
    section{ padding: 56px 0; }
    .story-badge{ aspect-ratio: 16/9; }
  }
  @media (max-width: 560px){
    .problem-grid, .diff-grid{ grid-template-columns: 1fr; }
    .price-teaser{ flex-direction:column; align-items:flex-start; }
  }

  @media (prefers-reduced-motion: reduce){
    .log-line{ animation:none; opacity:1; transform:none; }
  }

  [data-page]{ display:none; }
  [data-page].active{ display:block; }

  /* ===== Terminbuchung ===== */
  .buchung-grid{
    display:grid; grid-template-columns: 300px 1fr; gap:34px; align-items:start;
  }
  .buchung-info .b-item{
    display:flex; gap:11px; padding:13px 0; border-top:1px solid var(--border-soft);
  }
  .buchung-info .b-item:first-of-type{ border-top:none; padding-top:0; }
  .buchung-info .b-ico{
    color:var(--accent); font-weight:700; line-height:1.4; flex:none;
  }
  .buchung-info .b-txt strong{ display:block; font-size:15.5px; margin-bottom:1px; }
  .buchung-info .b-txt span{ font-size:14.5px; color:var(--text-muted); }
  .cal-box{
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:var(--radius); overflow:hidden; min-height:560px;
  }
  /* Hinweis, solange Cal.com noch nicht verknuepft ist */
  .cal-setup{
    padding:40px 30px; text-align:center;
  }
  .cal-setup .cs-badge{
    display:inline-block; font-family:'IBM Plex Mono',monospace; font-size:12px;
    letter-spacing:.06em; text-transform:uppercase; color:var(--accent);
    background:var(--accent-soft); border-radius:100px; padding:5px 13px; margin-bottom:14px;
  }
  .cal-setup h3{ font-family:'Oswald',sans-serif; font-weight:600; font-size:21px; margin-bottom:8px; }
  .cal-setup p{ color:var(--text-muted); max-width:420px; margin:0 auto 20px; font-size:15.5px; }
  .cal-setup .cs-ctas{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
  @media (max-width: 860px){
    .buchung-grid{ grid-template-columns:1fr; gap:24px; }
    .cal-box{ min-height:520px; }
  }


/* -------------------------------------------------------------------
   Preisseite: der Bestellblock unten ("Jetzt bestellen").
   Stand frueher mitten im Text der Preisseite, gehoert aber hierher.
   ------------------------------------------------------------------- */
        .order-block{
          margin: 40px 0 8px;
          padding: 40px 28px;
          border: 1px solid var(--border);
          border-radius: var(--radius);
          background:
            radial-gradient(circle at 50% 0%, rgba(232,89,12,0.08), transparent 60%),
            var(--bg-card, #fff);
          scroll-margin-top: 90px;
        }
        /* Ein Bestellweg fuer alle Gewerke (05.09.2026): eine Karte statt zwei.
           Breite bewusst ohne max-width -> genauso breit wie .pricing-wrap
           und table.compare weiter oben auf der Seite. */
        .order-grid{
          display:grid; grid-template-columns: 1fr; gap: 22px;
          margin: 0 auto;
        }
        .order-card{
          background: var(--bg-card, #fff);
          border: 1px solid var(--border);
          border-radius: var(--radius);
          padding: 26px 22px 24px;
          display:flex; flex-direction:column; gap: 10px;
          box-shadow: 0 14px 34px -22px rgba(35,42,37,0.22);
        }
        .order-card h3{
          font-family:'Oswald', sans-serif; font-size: 21px; margin: 2px 0;
        }
        .order-card p{
          color: var(--text-muted); font-size: 14.5px; margin: 0 0 8px; flex: 1;
        }
        .order-icon{
          font-size: 34px; line-height: 1;
        }

        /* ---- Einzelne Bestellkarte (ein Link fuer alle Gewerke) ---- */
        .order-card-single{
          padding: 30px 34px 28px;
          display:grid; grid-template-columns: 1.25fr 0.75fr;
          gap: 34px; align-items:center;
        }
        .order-summary{ display:flex; flex-direction:column; gap:11px; }
        .order-line{
          display:flex; justify-content:space-between; align-items:baseline;
          gap:16px; font-size:15.5px; color: var(--text);
        }
        .order-strike{
          color: var(--text-dim); text-decoration: line-through;
          font-family:'IBM Plex Mono',monospace; font-size:13.5px; margin-left:6px;
        }
        .order-total{
          border-top: 1px solid var(--border); padding-top: 12px; margin-top: 3px;
          font-family:'Oswald', sans-serif; font-size: 22px;
        }
        .order-total .mono{ color: var(--accent-hi); font-size: 26px; }
        .order-after{
          color: var(--text-muted); font-size: 13.5px; line-height:1.55; margin-top: 2px;
        }
        .order-btn{
          width:100%; justify-content:center; text-decoration:none;
          font-size: 16px; padding: 17px 24px;
        }
        @media (max-width: 620px){
          .order-block{ padding: 32px 18px; }
          .order-card-single{ grid-template-columns: 1fr; gap: 22px; padding: 26px 20px 24px; }
        }
