/* =============================================                                        
     VARIABLEN — FBC Brand Colors                                                       
     ============================================= */                                     
  :root {                                                                               
    --bg:          #0c0c11;                                                               
    --card:        #141419;                                                             
    --card-alt:    #1a1a22;
    --text:        #e6e6f0;
    --text-sec:    #9090b0;
    --muted:       #58587a;
    --border:      #252535;
    --accent:      #f97316;
    --accent-dim:  rgba(249,115,22,.14);
    --accent-glow: rgba(249,115,22,.28);
    --input-bg:    #1c1c28;
    --input-bdr:   #2e2e42;
    --shadow:      0 2px 16px rgba(0,0,0,.5);
    --r:           12px;
    --r-sm:        8px;
    --warning:     #ff7070;
  }

  /* =============================================
     RESET & BASE
     ============================================= */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
  }

  /* =============================================
     LAYOUT
     ============================================= */
  .container { max-width: 680px; margin: 0 auto; padding: 0 16px 64px; }

  /* =============================================
     HEADER
     ============================================= */
  .header {
    text-align: center;
    padding: 44px 24px 36px;
    margin: 0 -16px 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(249,115,22,.18),
  transparent 70%);
    pointer-events: none;
  }
  .logo-container { margin-bottom: 18px; position: relative; }
  .logo { width: 130px; height: auto; filter: brightness(0) invert(1); opacity: .85; }
  .header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    letter-spacing: .06em;
    line-height: 1.05;
    margin-bottom: 10px;
    position: relative;
  }
  .lead { color: rgba(230,230,240,.55); font-size: .92rem; max-width: 420px; margin: 0
  auto; }

  /* =============================================
     PROGRESS
     ============================================= */
  .progress-wrap { margin-bottom: 20px; }
  .progress-bar { height: 4px; background: var(--border); border-radius: 99px;
  margin-bottom: 8px; }
  .progress-fill { height: 100%; background: var(--accent); border-radius: 99px;
  transition: width .4s ease; width: 25%; }
  .progress-label { text-align: center; font-size: .8rem; color: var(--muted);
  font-weight: 600; }

  /* =============================================
     CARDS
     ============================================= */
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px 18px;
    margin-bottom: 14px;
    box-shadow: var(--shadow);
  }
  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: .05em;
    text-align: center;
    margin-bottom: 18px;
  }
  h3 { font-size: .95rem; font-weight: 700; margin-bottom: 12px; }

  /* =============================================
     STEPS
     ============================================= */
  .step { display: none; }
  .step.active { display: block; animation: stepIn .3s ease; }
  @keyframes stepIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* =============================================
     INPUTS
     ============================================= */
  .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .input-group { margin-bottom: 14px; }
  .input-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-sec);
    margin-bottom: 6px;
  }
  .req { color: var(--accent); }
  .input-group input {
    width: 100%;
    padding: 11px 13px;
    background: var(--input-bg);
    border: 1px solid var(--input-bdr);
    border-radius: var(--r-sm);
    color: var(--text);
    font-family: inherit;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
  }
  .input-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
  }
  .input-group input::placeholder { color: var(--muted); }

  /* =============================================
     OPTION BUTTONS
     ============================================= */
  .btn-group { display: flex; gap: 10px; }
  .btn-col   { display: flex; flex-direction: column; gap: 8px; }
  .opt-btn {
    flex: 1;
    padding: 11px 14px;
    background: var(--input-bg);
    border: 1px solid var(--input-bdr);
    border-radius: var(--r-sm);
    color: var(--text-sec);
    font-family: inherit;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all .15s;
  }
  .opt-btn.full { text-align: left; }
  .opt-btn:hover { border-color: var(--accent); color: var(--text); }
  .opt-btn.selected {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 2px 10px var(--accent-glow);
  }

  /* =============================================
     NAV BUTTONS
     ============================================= */
  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
  }
  .btn-primary {
    flex: 1;
    padding: 14px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: filter .15s;
  }
  .btn-primary:hover { filter: brightness(1.1); }
  .btn-secondary {
    padding: 12px 18px;
    background: var(--card-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text-sec);
    font-family: inherit;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .15s, color .15s;
  }
  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

  /* =============================================
     MISC FORM ELEMENTS
     ============================================= */
  .hint { font-size: .88rem; color: var(--text-sec); margin-bottom: 14px; }
  .privacy-note { font-size: .76rem; color: var(--muted); text-align: center; margin-top:
  8px; }
  .error {
    color: var(--warning);
    background: rgba(255,112,112,.08);
    border: 1px solid rgba(255,112,112,.22);
    border-radius: var(--r-sm);
    padding: 10px 13px;
    font-size: .88rem;
    margin-top: 8px;
    text-align: center;
  }

  /* =============================================
     RESULTS — HERO
     ============================================= */
  #results { animation: fadeUp .5s ease; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .result-hero { text-align: center; padding: 28px 0 18px; }
  .result-context-line {
    font-size: .9rem;
    color: var(--text-sec);
    line-height: 1.65;
    text-align: center;
    padding: 14px 8px 24px;
  }
  .result-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.9rem, 5vw, 3rem);
    letter-spacing: .05em;
    color: var(--accent);
    line-height: 1.05;
  }

  /* =============================================
     RESULTS — ZAHLEN
     ============================================= */
  .result-numbers { padding: 0; overflow: hidden; }
  .result-row { display: grid; grid-template-columns: 1fr 1px 1fr; }
  .result-item { padding: 20px 14px; text-align: center; }
  .result-divider { background: var(--border); }
  .result-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .result-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--text);
    letter-spacing: .02em;
    line-height: 1;
  }
  .result-unit { display: block; font-size: .75rem; color: var(--text-sec); margin-top:
  4px; }

  .result-goal-box {
    border-top: 1px solid var(--border);
    background: var(--accent-dim);
    padding: 18px 14px;
    text-align: center;
  }
  .goal-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--accent);
    margin-bottom: 4px;
  }
  .goal-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    color: var(--accent);
    line-height: 1;
  }
  .goal-unit { display: block; font-size: .78rem; color: var(--text-sec); margin-top: 4px;
   }

  .tempo-line {
    padding: 11px 14px;
    text-align: center;
    font-size: .83rem;
    color: var(--text-sec);
    border-top: 1px solid var(--border);
  }

  /* =============================================
     RESULTS — MAKRO BARS
     ============================================= */
  .macro-bars { display: flex; flex-direction: column; gap: 13px; margin: 14px 0 10px; }
  .macro-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: .85rem;
    margin-bottom: 5px;
  }
  .macro-grams {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.01em;
  }
  .macro-pct { font-size: .78rem; font-weight: 600; }
  .protein-color { color: #4ade80; }
  .carb-color    { color: #60a5fa; }
  .fat-color     { color: #fbbf24; }
  .macro-bar-track { height: 8px; background: var(--border); border-radius: 99px;
  overflow: hidden; }
  .macro-bar-fill { height: 100%; border-radius: 99px; }
  .macro-bar-fill.protein { background: #4ade80; }
  .macro-bar-fill.carbs   { background: #60a5fa; }
  .macro-bar-fill.fat     { background: #fbbf24; }
  .macro-note { font-size: .81rem; color: var(--muted); line-height: 1.55; }

  /* =============================================
     RESULTS — GAP CARD
     ============================================= */
  .gap-card { background: var(--card-alt); }
  .gap-card h3 { font-size: 1rem; line-height: 1.4; margin-bottom: 10px; }
  .gap-card p { font-size: .9rem; color: var(--text-sec); margin-bottom: 12px; }
  .gap-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .gap-list li {
    font-size: .88rem;
    color: var(--text-sec);
    padding: 9px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
  }

  /* =============================================
     RESULTS — CTA CARD
     ============================================= */
  .cta-card { border-color: rgba(249,115,22,.4); text-align: center; }
  .cta-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 99px;
    margin-bottom: 14px;
  }
  .cta-card h3 { font-size: 1.05rem; line-height: 1.45; margin-bottom: 10px; }
  .cta-card > p { font-size: .88rem; color: var(--text-sec); margin-bottom: 14px; }
  .cta-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
  }
  .cta-list li { font-size: .88rem; color: var(--text-sec); }
  .cta-btn {
    display: block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: filter .15s;
    margin-bottom: 10px;
  }
  .cta-btn:hover { filter: brightness(1.1); }
  .cta-note { font-size: .76rem; color: var(--muted); }

  /* =============================================
     RESULTS — TESTIMONIAL MIT FOTO
     ============================================= */
  .testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px;
    margin-bottom: 14px;
  }
  .testimonial-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-img {
    width: 120px;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 2px solid var(--accent);
  }
  .testimonial-text {
    font-size: .9rem;
    color: var(--text-sec);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .testimonial-author { font-size: .78rem; font-weight: 700; color: var(--muted); }

  /* =============================================
     FAQ ACCORDION
     ============================================= */
  .faq-card { margin-top: 8px; }
  .faq-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .05em;
    margin-bottom: 18px;
    text-align: center;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
  }
  .faq-item:last-child { border-bottom: none; }
  .faq-item summary {
    font-size: .92rem;
    font-weight: 700;
    color: var(--text);
    padding: 12px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 12px;
  }
  .faq-item[open] summary::after { content: '-'; }
  .faq-item p {
    font-size: .86rem;
    color: var(--text-sec);
    line-height: 1.6;
    padding-bottom: 12px;
  }

  /* =============================================
     GUARANTEE BADGE (in CTA Card)
     ============================================= */
  .cta-price-anchor {
    font-size: .82rem;
    color: var(--text-sec);
    text-align: center;
    margin: 6px 0 16px;
    line-height: 1.5;
  }

  .guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(249,115,22,.06);
    border: 1px solid rgba(249,115,22,.25);
    border-radius: var(--r-sm);
    padding: 14px 16px;
    margin-bottom: 18px;
  }
  .guarantee-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
  .guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .guarantee-text strong {
    font-size: .9rem;
    color: var(--text);
  }
  .guarantee-text span {
    font-size: .8rem;
    color: var(--text-sec);
    line-height: 1.55;
  }

  .guarantee-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: .8rem;
    color: #4ade80;
    font-weight: 600;
    margin-top: 12px;
  }
  .guarantee-line span { font-size: 1rem; }

  /* =============================================
     MINI CTA (nach Testimonial)
     ============================================= */
  .mini-cta-card {
    background: var(--card-alt);
    border: 1px solid rgba(249,115,22,.35);
    border-radius: var(--r);
    padding: 20px 18px;
    margin-bottom: 14px;
    text-align: center;
  }
  .mini-cta-card p {
    font-size: .9rem;
    color: var(--text-sec);
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .mini-cta-card .cta-btn { margin-bottom: 0; }

  /* =============================================
     COACH SECTION
     ============================================= */
  .result-bridge {
    text-align: center;
    padding: 28px 16px;
    margin: 8px 0;
  }
  .result-bridge p {
    font-size: .95rem;
    color: var(--text-sec);
    line-height: 1.65;
    margin-bottom: 8px;
  }
  .result-bridge p:last-child { margin-bottom: 0; }
  .result-bridge strong { color: var(--text); }

  .coach-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px 18px;
    margin-bottom: 14px;
  }
  .coach-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .05em;
    text-align: center;
    margin-bottom: 6px;
  }
  .coach-subtitle {
    text-align: center;
    font-size: .82rem;
    color: var(--text-sec);
    margin-bottom: 18px;
  }
  .coach-inner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .coach-img {
    width: 150px;
    height: 180px;
    border-radius: var(--r-sm);
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 2px solid var(--border);
  }
  .coach-text { flex: 1; }
  .coach-text p {
    font-size: .86rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .coach-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .coach-stat {
    font-size: .76rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-glow);
    border-radius: 99px;
    padding: 3px 10px;
  }
  .coach-credentials {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .credential-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
  }
  .credential-item .check {
    color: #4ade80;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .credential-item > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .credential-highlight {
    color: var(--text);
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .credential-detail {
    color: var(--text-sec);
    font-size: .77rem;
    line-height: 1.3;
  }

  /* =============================================
     FOOTER
     ============================================= */
  .footer {
    text-align: center;
    color: var(--muted);
    font-size: .75rem;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  /* =============================================
     KFA TOGGLE + BLOCK
     ============================================= */
  .kfa-toggle-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: rgba(249,115,22,.07);
    border: 1px solid rgba(249,115,22,.25);
    border-radius: var(--r-sm);
    color: var(--text);
    font-family: inherit;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 14px;
    text-align: left;
    transition: background .15s, border-color .15s;
  }
  .kfa-toggle-btn:hover { background: rgba(249,115,22,.13); border-color: rgba(249,115,22,.5); }
  .kfa-toggle-btn.open { border-color: rgba(249,115,22,.4); border-bottom-left-radius: 0; border-bottom-right-radius: 0; background: rgba(249,115,22,.1); }

  .kfa-toggle-label { display: flex; align-items: center; gap: 8px; }
  .kfa-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid var(--accent-glow);
    padding: 2px 8px;
    border-radius: 99px;
    flex-shrink: 0;
  }
  .kfa-arrow { font-size: .72rem; color: var(--muted); flex-shrink: 0; }

  .kfa-block {
    margin-top: 0;
    padding: 14px 14px 6px;
    background: var(--card-alt);
    border: 1px solid rgba(249,115,22,.35);
    border-top: none;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    animation: stepIn .25s ease;
  }
  .kfa-hint {
    font-size: .81rem;
    color: var(--text-sec);
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 8px 10px;
    background: rgba(249,115,22,.06);
    border-left: 2px solid var(--accent);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
  }

  /* =============================================
     KFA MEASURE GUIDE
     ============================================= */
  .kfa-guide { margin-bottom: 14px; }
  .kfa-guide-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    list-style: none;
    padding: 6px 0;
    user-select: none;
  }
  .kfa-guide-toggle::-webkit-details-marker { display: none; }
  .kfa-guide-toggle::after {
    content: '▼';
    font-size: .65rem;
    color: var(--accent);
    margin-left: 2px;
    transition: transform .2s;
  }
  .kfa-guide[open] .kfa-guide-toggle::after { transform: rotate(180deg); }
  .kfa-guide-body {
    margin-top: 10px;
    animation: stepIn .2s ease;
  }
  .kfa-guide-img {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 0 auto 14px;
    border-radius: var(--r-sm);
    opacity: .92;
  }
  .kfa-guide-steps {
    font-size: .8rem;
    color: var(--text-sec);
    line-height: 1.6;
    padding-left: 18px;
  }
  .kfa-guide-steps li { margin-bottom: 5px; }
  .kfa-guide-steps strong { color: var(--text); }

  /* =============================================
     MOMENTUM HERO CARD
     ============================================= */
  .momentum-hero-card {
    background: linear-gradient(135deg, rgba(249,115,22,.1) 0%, rgba(249,115,22,.03) 100%);
    border-color: rgba(249,115,22,.4);
    text-align: center;
    padding: 28px 18px 22px;
    position: relative;
    overflow: hidden;
  }
  .momentum-hero-card::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 340px; height: 220px;
    background: radial-gradient(ellipse, rgba(249,115,22,.22) 0%, transparent 70%);
    pointer-events: none;
  }
  .mh-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    position: relative;
  }
  .mh-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    margin-bottom: 14px;
    position: relative;
  }
  .mh-tilde {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    color: var(--accent);
    opacity: .7;
    margin-top: .35em;
  }
  .mh-kg {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5.5rem, 22vw, 8.5rem);
    color: var(--accent);
    letter-spacing: -.01em;
  }
  .mh-unit {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    color: var(--accent);
    opacity: .85;
    margin-top: .35em;
  }
  .mh-sub {
    font-size: .95rem;
    color: var(--text-sec);
    margin-bottom: 14px;
    position: relative;
  }
  .mh-sub strong { color: var(--text); }
  .mh-disclaimer {
    font-size: .74rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.5;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
  }

  /* =============================================
     LOCKED FEATURES
     ============================================= */
  #lockedFeatures { margin-bottom: 0; }
  .locked-header {
    text-align: center;
    padding: 6px 0 16px;
  }
  .locked-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .locked-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: .05em;
    margin-bottom: 4px;
    text-align: center;
  }
  .locked-header p { font-size: .88rem; color: var(--text-sec); }

  .journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  .journey-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--card-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    text-align: left;
    max-width: 200px;
  }
  .journey-step--active {
    border-color: rgba(249,115,22,.4);
    background: rgba(249,115,22,.07);
  }
  .journey-step-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--muted);
    color: var(--bg);
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .journey-step--active .journey-step-num {
    background: var(--accent);
  }
  .journey-step-text { display: flex; flex-direction: column; gap: 3px; }
  .journey-step-text strong { font-size: .82rem; color: var(--text); }
  .journey-step-text span { font-size: .73rem; color: var(--text-sec); line-height: 1.4; }
  .journey-arrow { font-size: 1.1rem; color: var(--muted); flex-shrink: 0; }
  .locked-chip-step {
    font-size: .63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 1px 6px;
    vertical-align: middle;
    margin-left: 4px;
  }

  .locked-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 10px;
  }
  .locked-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    font-size: .84rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    background: var(--card-alt);
  }
  .locked-chip {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--border);
    padding: 2px 8px;
    border-radius: 99px;
  }
  .locked-card-body { position: relative; padding: 0; }

  /* Week table */
  .lp-week-table { display: flex; flex-direction: column; }
  .lp-week-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-bottom: 1px solid var(--border);
    font-size: .82rem;
    transition: none;
  }
  .lp-week-row:last-child { border-bottom: none; }
  .lp-week-row.lp-row-blurred { filter: blur(4px); user-select: none; pointer-events: none; }
  .lp-week-num { font-weight: 700; min-width: 58px; flex-shrink: 0; }
  .lp-week-tag { flex: 1; }
  .lp-week-kcal { font-weight: 700; min-width: 80px; text-align: right; flex-shrink: 0; }
  .lp-deep .lp-week-tag  { color: #f97316; }
  .lp-mid  .lp-week-tag  { color: #60a5fa; }
  .lp-low  .lp-week-tag  { color: #a78bfa; }
  .lp-easy .lp-week-tag  { color: #4ade80; }

  .locked-gradient-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 72%;
    background: linear-gradient(to bottom, transparent 0%, var(--card) 55%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    pointer-events: none;
  }
  .locked-overlay-inner {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--card-alt);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 6px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-sec);
    pointer-events: auto;
  }

  /* 2-col row */
  .locked-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  .locked-card-half { margin-bottom: 0; }

  /* Protein preview */
  .lp-protein-preview { min-height: 90px; }
  .lp-protein-blur {
    text-align: center;
    padding: 12px 14px 10px;
    filter: blur(6px);
    user-select: none;
  }
  .lp-protein-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    color: var(--text);
    line-height: 1;
  }
  .lp-protein-unit { font-size: .78rem; color: var(--text-sec); margin-top: 2px; }
  .lp-protein-sub { font-size: .72rem; color: var(--muted); margin-top: 3px; }

  /* Meals preview */
  .lp-meals-preview { min-height: 90px; }
  .lp-meal-blur {
    filter: blur(4px);
    user-select: none;
    padding: 10px 14px;
  }
  .lp-meal-item {
    font-size: .78rem;
    color: var(--text-sec);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
  }
  .lp-meal-item:last-child { border-bottom: none; }

  /* Blur overlay (protein + meals) */
  .locked-blur-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12,12,17,.55);
  }
  .locked-blur-overlay::after {
    content: '🔒';
    font-size: 1.6rem;
  }

  /* CTA area */
  .locked-cta-area {
    background: var(--card-alt);
    border: 1px solid rgba(249,115,22,.3);
    border-radius: var(--r);
    padding: 18px;
    text-align: center;
    margin-bottom: 14px;
  }
  .locked-cta-area p {
    font-size: .88rem;
    color: var(--text-sec);
    margin-bottom: 14px;
    line-height: 1.55;
  }
  .locked-cta-area p strong { color: var(--text); }
  .locked-cta-area .cta-btn { margin-bottom: 10px; }
  .locked-cta-sub {
    font-size: .75rem !important;
    color: var(--muted) !important;
    margin-bottom: 0 !important;
  }

  /* =============================================
     KFA ERGEBNIS-KARTE
     ============================================= */
  .kfa-result-card { padding: 0; overflow: hidden; }
  .kfa-method-note {
    padding: 8px 14px;
    text-align: center;
    font-size: .73rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    font-style: italic;
  }

  /* =============================================
     LOADING SCREEN
     ============================================= */
  #loadingScreen {
    position: fixed;
    inset: 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    z-index: 200;
  }
  #loadingScreen:not([hidden]) {
    display: flex;
    animation: fadeUp .35s ease;
  }
  #loadingScreen.fade-out {
    animation: fadeOut .4s ease forwards;
  }
  .loading-inner {
    text-align: center;
    padding: 32px 24px;
    max-width: 340px;
    width: 100%;
  }
  .loading-logo {
    width: 68px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .45;
    margin-bottom: 26px;
    animation: loadingLogoPulse 2s ease-in-out infinite;
  }
  .loading-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 8vw, 3.2rem);
    letter-spacing: .06em;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text);
    text-transform: uppercase;
  }
  .loading-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    text-align: left;
  }
  .loading-step {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: .84rem;
    color: var(--muted);
    padding: 10px 14px;
    border-radius: var(--r-sm);
    background: var(--card);
    border: 1px solid var(--border);
    transition: color .35s ease, border-color .35s ease;
  }
  .lstep-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--muted);
    flex-shrink: 0;
    position: relative;
    transition: background .35s ease, border-color .35s ease;
  }
  .loading-step.done {
    color: var(--text);
    border-color: rgba(74,222,128,.18);
  }
  .loading-step.done .lstep-icon {
    background: #4ade80;
    border-color: #4ade80;
  }
  .loading-step.done .lstep-icon::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    font-weight: 900;
    color: #0c0c11;
    line-height: 1;
  }
  .loading-bar-track {
    height: 3px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .loading-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 99px;
    width: 0%;
    box-shadow: 0 0 10px var(--accent-glow);
  }
  .loading-bar-fill.animating {
    width: 100%;
    transition: width 3s cubic-bezier(.25, 0, .1, 1);
  }
  .loading-note {
    font-size: .76rem;
    color: var(--muted);
    letter-spacing: .02em;
  }
  @keyframes loadingLogoPulse {
    0%, 100% { opacity: .35; }
    50%       { opacity: .75; }
  }
  @keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
  }

  /* =============================================
     RESPONSIVE
     ============================================= */
  @media (max-width: 420px) {
    .row-2 { grid-template-columns: 1fr; }
    .result-row { grid-template-columns: 1fr; }
    .result-divider { height: 1px; width: 100%; }
    .testimonial-inner { flex-direction: column; align-items: center; text-align: center; }
    .coach-inner { flex-direction: column; align-items: center; text-align: center; }
    .coach-img { width: 170px; height: 200px; }
    .coach-stats { justify-content: center; }
  }